action anchore_delete_image { label: "Delete an image analysis" provider: anchore method: DELETE path: "/images/{imageDigest}" encoding: json input: { type: "object" properties: { force: { type: "boolean" } imageDigest: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "object" description: "Image deletion response containing status and details" required: ["digest", "status"] properties: { detail: { type: "string" } digest: { type: "string" } status: { type: "string" description: "Current status of the image deletion" enum: ["not_found", "deleting", "delete_failed"] } } } }