{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CalendarBusy", "title": "CalendarBusy", "properties": { "description": { "type": "string" }, "end_at": { "format": "date-time", "type": "string" }, "id": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "start_at": { "format": "date-time", "type": "string" }, "timezone": { "type": "string" } }, "required": [ "start_at", "end_at" ], "type": "object" }