action orthanc_server_get_instances_id_frames_frame_raw { label: "Access raw frame" description: "Access the raw content of one individual frame of the DICOM instance of interest, bypassing image decoding. This is notably useful to access the source files in compressed transfer syntaxes." provider: orthanc_server method: GET path: "/instances/{id}/frames/{frame}/raw" encoding: json input: { type: "object" properties: { frame: { type: "number" } id: { type: "string" } } required: ["frame", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }