action anchore_list_image_content { label: "List image content types" provider: anchore method: GET path: "/images/{imageDigest}/content" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }