action orthanc_server_get_patients_id_attachments_name_md5 { label: "Get MD5 of attachment" description: "Get the MD5 hash of one attachment associated with the given patient" provider: orthanc_server method: GET path: "/patients/{id}/attachments/{name}/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 } }