action anchore_query_vulnerabilities { label: "Listing information about given vulnerability" description: "List (w/filters) vulnerability records known by the system, with affected packages information if present" provider: anchore method: GET path: "/query/vulnerabilities" encoding: json input: { type: "object" properties: { affected_package: { type: "string" } affected_package_version: { type: "string" } id: { type: "array" items: { type: "string" } } limit: { type: "integer" } namespace: { type: "array" items: { type: "string" } } page: { type: "string" } } required: ["id"] additionalProperties: false } output: { description: "A paginated listing of vulnerability records sorted by ID in descending order" type: "object" } }