action anchore_get_image_content_by_type_files { label: "Get the content of an image by type files" provider: anchore method: GET path: "/images/{imageDigest}/content/files" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "object" description: "File content listings from images" properties: { content: { type: "array" items: { type: "object" properties: { filename: { type: "string" } gid: { type: "integer" } linkdest: { type: "string" } mode: { type: "string" } sha256: { type: "string" } size: { type: "integer" } type: { type: "string" } uid: { type: "integer" } } } } content_type: { type: "string" } imageDigest: { type: "string" } } } }