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