action anchore_list_imagetags { label: "List all visible image digests and tags" description: "List all image tags visible to the user" provider: anchore method: GET path: "/summaries/imagetags" encoding: json input: { type: "object" properties: { image_status: { type: "array" items: { type: "string" enum: ["all", "active", "deleting"] } } "x-anchore-account": { type: "string" } } additionalProperties: false } output: { type: "array" description: "a list of AnchoreImageTagSummary objects" items: { type: "object" description: "A unique image in the engine." properties: { analysis_status: { type: "string" } analyzed_at: { type: "integer" } created_at: { type: "integer" } fulltag: { type: "string" } imageDigest: { type: "string" } imageId: { type: "string" } image_status: { type: "string" } parentDigest: { type: "string" } tag_detected_at: { type: "integer" } } } } }