action orthanc_server_get_queries_id { label: "List operations on a query" description: "List the available operations for the query/retrieve operation whose identifier is provided in the URL" provider: orthanc_server method: GET path: "/queries/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { description: "JSON array containing the list of operations" type: "object" } }