Reclaim.ai · Schema
CalendarView
AISchedulingCalendarProductivityTasksHabitsTime ManagementMeetingsFocus Time
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| id | integer | |
| externalId | string | |
| connected | boolean | |
| colorHex | string | |
| credentialId | integer | |
| reason | object | |
| writableFor | array | |
| provider | string | |
| googleMeetAllowed | boolean | |
| microsoftTeamsAllowed | boolean | |
| defaultReminders | array | |
| reminderDefaults | array | |
| useType | object | |
| otherConnectedCalendarsExist | boolean | |
| accessDomainRead | boolean |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.app.reclaim.ai/schemas/CalendarView",
"title": "CalendarView",
"required": [
"colorHex",
"connected",
"credentialId",
"externalId",
"googleMeetAllowed",
"id",
"microsoftTeamsAllowed",
"name",
"otherConnectedCalendarsExist",
"provider",
"useType",
"writableFor"
],
"type": "object",
"properties": {
"name": {
"type": "string"
},
"id": {
"type": "integer",
"format": "int64"
},
"externalId": {
"type": "string"
},
"connected": {
"type": "boolean"
},
"colorHex": {
"type": "string"
},
"credentialId": {
"type": "integer",
"format": "int64"
},
"reason": {
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/IneligibilityReason"
}
]
},
"writableFor": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ReclaimEventType"
}
},
"provider": {
"type": "string"
},
"googleMeetAllowed": {
"type": "boolean"
},
"microsoftTeamsAllowed": {
"type": "boolean"
},
"defaultReminders": {
"type": "array",
"nullable": true,
"deprecated": true,
"items": {
"type": "integer",
"format": "int32"
}
},
"reminderDefaults": {
"type": "array",
"nullable": true,
"items": {
"$ref": "#/components/schemas/Reminder"
}
},
"useType": {
"$ref": "#/components/schemas/CalendarUseType"
},
"otherConnectedCalendarsExist": {
"type": "boolean"
},
"accessDomainRead": {
"type": "boolean",
"nullable": true
}
}
}