action anchore_list_event_types { label: "List Event Types" description: "Returns list of event types in the category hierarchy" provider: anchore method: GET path: "/event_types" encoding: json output: { type: "array" description: "Array of EventCategory objects" items: { type: "object" description: "A collection of event subcategories" properties: { category: { type: "string" } description: { type: "string" } subcategories: { type: "array" items: { type: "object" description: "A collection of events related to each other" properties: { description: { type: "string" } events: { type: "array" items: { type: "object" description: "A description of an event type" properties: { message: { type: "string" description: "The message associated with the event type" } name: { type: "string" description: "The event type. The last component of the fully-qualified event_type (category.subcategory.event)" } resource_type: { type: "string" description: "The type of resource this event is generated from" } type: { type: "string" description: "The fully qualified event type as would be seen in the event payload" } } } } name: { type: "string" } } } } } } } }