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