action anchore_get_image_content_by_type_javapackage { label: "Get the content of an image by type java" provider: anchore method: GET path: "/images/{imageDigest}/content/java" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "object" description: "Java 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" } } "implementation-version": { type: "string" } location: { type: "string" } "maven-version": { type: "string" } origin: { type: "string" } package: { type: "string" } "specification-version": { type: "string" } type: { type: "string" } } } } content_type: { type: "string" } imageDigest: { type: "string" } } } }