action orthanc_server_get_series_id { label: "Get information about some series" description: "Get detailed information about the DICOM series whose Orthanc identifier is provided in the URL" provider: orthanc_server method: GET path: "/series/{id}" encoding: json input: { type: "object" properties: { full: { type: "boolean" } id: { type: "string" } requestedTags: { type: "string" } short: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { description: "Information about the DICOM series" type: "object" } }