action orthanc_server_get_series_id_metadata { label: "List metadata" description: "Get the list of metadata that are associated with the given series" provider: orthanc_server method: GET path: "/series/{id}/metadata" encoding: json input: { type: "object" properties: { expand: { type: "string" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { description: "JSON array containing the names of the available metadata, or JSON associative array mapping metadata to their values (if `expand` argument is provided)" type: "object" } }