# space.intandem.calendarSource

> Published by [chaosgreml.in](https://lexicon.garden/identity/did:plc:h3wpawnrlptr4534chevddo6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:h3wpawnrlptr4534chevddo6/space.intandem.calendarSource)
- [Documentation](https://lexicon.garden/lexicon/did:plc:h3wpawnrlptr4534chevddo6/space.intandem.calendarSource/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:h3wpawnrlptr4534chevddo6/space.intandem.calendarSource/examples)

## Definitions

### `space.intandem.calendarSource`

**Type**: `record`

A connected calendar whose busy time subtracts from availability.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes |  |
| `kind` | `string` | Yes |  |
| `name` | `string` | Yes |  |
| `secret` | `string` | No | CalDAV password / app password. Alpha caveat: stored unencrypted in a members-only space. |
| `username` | `string` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "space.intandem.calendarSource",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
