Properties
| Name | Type | Description |
|---|---|---|
| description | string | |
| end_at | string | |
| id | string | |
| raw | object | |
| start_at | string | |
| timezone | string |
JSON Schema
{
"$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"
}