action anchore_get_image_content_by_type_malware { label: "Get the content of an image by type malware" provider: anchore method: GET path: "/images/{imageDigest}/content/malware" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "object" description: "Malware listing response" properties: { content: { type: "array" description: "List of malware scan results, one per scanner configured to run" items: { type: "object" description: "A single scan from a scanner" properties: { enabled: { type: "boolean" description: "Indicates if the scanner is enabled" } findings: { type: "array" items: { type: "object" properties: { path: { type: "string" description: "A path for a file in the image's rootfs" } signature: { type: "string" description: "The malware signature found at the path" } } } } metadata: { type: "object" description: "Open schema for scanner-specific metadata related to the scan result" } scanner: { type: "string" description: "The name of the scanner that produced the finding" } } } } content_type: { type: "string" } imageDigest: { type: "string" } } } }