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