action anchore_query_images_by_vulnerability { label: "List images vulnerable to the specific vulnerability ID." description: "Returns a listing of images and their respective packages vulnerable to the given vulnerability ID" provider: anchore method: GET path: "/query/images/by_vulnerability" encoding: json input: { type: "object" properties: { affected_package: { type: "string" } limit: { type: "integer" } namespace: { type: "string" } page: { type: "integer" } severity: { type: "string" enum: ["Unknown", "Negligible", "Low", "Medium", "High", "Critical"] } vendor_only: { type: "boolean" } vulnerability_id: { type: "string" } "x-anchore-account": { type: "string" } } required: ["vulnerability_id"] additionalProperties: false } output: { description: "Pagination wrapped list of images with vulnerabilties that match some filter" type: "object" } }