{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventCollectionResponse", "title": "EventCollectionResponse", "type": "object", "description": "Collection of events", "properties": { "@odata.context": { "type": "string" }, "@odata.nextLink": { "type": "string", "format": "uri" }, "value": { "type": "array", "items": { "$ref": "#/components/schemas/Event" } } } }