action orthanc_server_get_patients_id_instances { label: "Get child instances" description: "Get detailed information about the child instances of the DICOM patient whose Orthanc identifier is provided in the URL" provider: orthanc_server method: GET path: "/patients/{id}/instances" encoding: json input: { type: "object" properties: { full: { type: "boolean" } id: { type: "string" } requestedTags: { type: "string" } short: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { description: "JSON array containing information about the child DICOM instances" type: "object" } }