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