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