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