action anchore_delete_image_by_image_id { label: "Delete image by docker imageId" provider: anchore method: DELETE path: "/images/by_id/{imageId}" encoding: json input: { type: "object" properties: { force: { type: "boolean" } imageId: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageId"] 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"] } } } }