{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Events",
"title": "Events",
"type": "object",
"x-box-resource-id": "events",
"x-box-tag": "events",
"description": "A list of event objects",
"properties": {
"chunk_size": {
"description": "The number of events returned in this response.",
"example": 2,
"type": "integer",
"format": "int64"
},
"next_stream_position": {
"description": "The stream position of the start of the next page (chunk)\nof events.",
"example": "1152922976252290886",
"type": "string"
},
"entries": {
"type": "array",
"description": "A list of events",
"items": {
"$ref": "#/components/schemas/Event"
}
}
}
}