action orthanc_server_get_instances_id_attachments_name_compressed_size { label: "Get size of attachment on disk" description: "Get the size of one attachment associated with the given instance, as stored on the disk. This is different from `.../size` iff `EnableStorage` is `true`." provider: orthanc_server method: GET path: "/instances/{id}/attachments/{name}/compressed-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 } }