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