action anchore_query_images_by_package { label: "List of images containing given package" description: "Filterable query interface to search for images containing specified package" provider: anchore method: GET path: "/query/images/by_package" encoding: json input: { type: "object" properties: { limit: { type: "integer" } name: { type: "string" } package_type: { type: "string" } page: { type: "string" } version: { type: "string" } "x-anchore-account": { type: "string" } } required: ["name"] additionalProperties: false } output: { description: "Pagination wrapped list of images that match some filter" type: "object" } }