action anchore_delete_event { label: "Delete Event" description: "Delete an event by its event ID" provider: anchore method: DELETE path: "/events/{eventId}" encoding: json input: { type: "object" properties: { eventId: { type: "string" } "x-anchore-account": { type: "string" } } required: ["eventId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }