action anchore_get_image_content_by_type { label: "Get the content of an image by type" provider: anchore method: GET path: "/images/{imageDigest}/content/{ctype}" encoding: json input: { type: "object" properties: { ctype: { type: "string" } imageDigest: { type: "string" } "x-anchore-account": { type: "string" } } required: ["ctype", "imageDigest"] additionalProperties: false } output: { type: "object" description: "Package content listings from images" properties: { content: { type: "array" items: { type: "object" properties: { cpes: { type: "array" description: "A list of Common Platform Enumerations that may uniquely identify the package" items: { type: "string" } } license: { type: "string" description: "Deprecated in favor of the 'licenses' field\"" } licenses: { type: "array" items: { type: "string" } } location: { type: "string" } origin: { type: "string" } package: { type: "string" } size: { type: "string" } type: { type: "string" } version: { type: "string" } } } } content_type: { type: "string" } imageDigest: { type: "string" } } } }