A connected calendar whose busy time subtracts from availability.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
kind
string
Required
No description available.
Allowed:
ics, caldavname
string
Required
No description available.
maxLength: 200 bytessecret
string
Optional
CalDAV password / app password. Alpha caveat: stored unencrypted in a members-only space.
maxLength: 1000 bytesurl
string
uri
Required
A valid URI.
username
string
Optional
No description available.
maxLength: 300 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"kind",
"url",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"kind": {
"enum": [
"ics",
"caldav"
],
"type": "string"
},
"name": {
"type": "string",
"maxLength": 200
},
"secret": {
"type": "string",
"maxLength": 1000,
"description": "CalDAV password / app password. Alpha caveat: stored unencrypted in a members-only space."
},
"username": {
"type": "string",
"maxLength": 300
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A connected calendar whose busy time subtracts from availability."
}