action orthanc_server_get_patients_id_module { label: "Get patient module" description: "Get the patient module of the DICOM patient whose Orthanc identifier is provided in the URL" provider: orthanc_server method: GET path: "/patients/{id}/module" encoding: json input: { type: "object" properties: { id: { type: "string" } "ignore-length": { type: "array" items: { type: "string" } } short: { type: "boolean" } simplify: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { description: "Information about the DICOM patient" type: "object" } }