{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventListResult", "title": "EventListResult", "type": "object", "properties": { "data": { "type": "array", "description": "Array of event type objects with names and volumes.", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "The name of the event type." }, "totals": { "type": "integer", "description": "The total number of times this event was fired in the last 30 days." } } } } } }