space.intandem.booking

chaosgremlin.spaces-alpha.bsky.network View official

Documentation

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

main record

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

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

endsAt string datetime Required

An RFC 3339 formatted timestamp.

guestEmail string Optional

No description available.

maxLength: 500 bytes
guestName string Required

No description available.

maxLength: 300 bytes
guestTimezone string Optional

No description available.

note string Optional

No description available.

maxLength: 3000 bytes
startsAt string datetime Required

An RFC 3339 formatted timestamp.

status string Required

No description available.

Allowed: confirmed, cancelled
View raw schema
{
  "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."
}

Lexicon Garden

@