action orthanc_server_get_instances_id_module { label: "Get instance module" description: "Get the instance module of the DICOM instance whose Orthanc identifier is provided in the URL" provider: orthanc_server method: GET path: "/instances/{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 instance" type: "object" } }