space.intandem.calendarSource

chaosgreml.in

Documentation

A connected calendar whose busy time subtracts from availability.

main record

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, caldav
name string Required

No description available.

maxLength: 200 bytes
secret string Optional

CalDAV password / app password. Alpha caveat: stored unencrypted in a members-only space.

maxLength: 1000 bytes
url string uri Required

A valid URI.

username string Optional

No description available.

maxLength: 300 bytes
View 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."
}

Lexicon Garden

@