action orthanc_server_get_patients_id_studies { label: "Get child studies" description: "Get detailed information about the child studies of the DICOM patient whose Orthanc identifier is provided in the URL" provider: orthanc_server method: GET path: "/patients/{id}/studies" 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 studies" type: "object" } }