action orthanc_server_get_patients_id_attachments_name_size { label: "Get size of attachment" description: "Get the size of one attachment associated with the given patient" provider: orthanc_server method: GET path: "/patients/{id}/attachments/{name}/size" encoding: json input: { type: "object" properties: { "If-None-Match": { type: "string" } id: { type: "string" } name: { type: "string" } } required: ["id", "name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }