action orthanc_server_get_patients_id_metadata_name { label: "Get metadata" description: "Get the value of a metadata that is associated with the given patient" provider: orthanc_server method: GET path: "/patients/{id}/metadata/{name}" 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 } }