com.thelexfiles.tuna97.temp.event

protopunx.bsky.social

Documentation

Event data type

main record

Event data type

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

briefly describe what the event is about

endTime string datetime Optional

specify the end date and time for the event

startTime string datetime Required

set a start date and time for the event

title string Required

event title

url string uri Optional

e.g google meet link, zoom link, etc

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "startTime",
      "createdAt"
    ],
    "properties": {
      "url": {
        "type": "string",
        "format": "uri",
        "description": "e.g google meet link, zoom link, etc"
      },
      "title": {
        "type": "string",
        "description": "event title"
      },
      "endTime": {
        "type": "string",
        "format": "datetime",
        "description": "specify the end date and time for the event"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "startTime": {
        "type": "string",
        "format": "datetime",
        "description": "set a start date and time for the event"
      },
      "description": {
        "type": "string",
        "description": "briefly describe what the event is about"
      }
    }
  },
  "description": "Event data type"
}

Lexicon Garden

@