# space.intandem.booking

> Published by [chaosgremlin.spaces-alpha.bsky.network](https://lexicon.garden/identity/did:plc:45qrbgc6u6xmnqtxsap6hb2g)

## Links

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

## Definitions

### `space.intandem.booking`

**Type**: `record`

A confirmed 1:1 booking made through the host's booking page.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No |  |
| `endsAt` | `string` (datetime) | Yes |  |
| `status` | `string` | Yes |  |
| `startsAt` | `string` (datetime) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `guestName` | `string` | Yes |  |
| `guestEmail` | `string` | No |  |
| `guestTimezone` | `string` | No |  |

## Raw Schema

```json
{
  "id": "space.intandem.booking",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "guestName",
          "startsAt",
          "endsAt",
          "status",
          "createdAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxLength": 3000
          },
          "endsAt": {
            "type": "string",
            "format": "datetime"
          },
          "status": {
            "enum": [
              "confirmed",
              "cancelled"
            ],
            "type": "string"
          },
          "startsAt": {
            "type": "string",
            "format": "datetime"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "guestName": {
            "type": "string",
            "maxLength": 300
          },
          "guestEmail": {
            "type": "string",
            "maxLength": 500
          },
          "guestTimezone": {
            "type": "string"
          }
        }
      },
      "description": "A confirmed 1:1 booking made through the host's booking page."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
