A paginated list of events.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventPage", "title": "EventPage", "type": "object", "description": "A paginated list of events.", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Event" }, "description": "The list of events.", "example": [] }, "links": { "$ref": "#/components/schemas/PaginationLinks" } } }