A generic event record for any community gathering
tid
Timestamp-based ID
Properties
community
ref
com.atproto.repo.strongRef
Optional
Reference to the community this event belongs to
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
description
string
Optional
Event description
maxLength: 1000 bytesendTime
string
datetime
Optional
When the event ends
location
string
Optional
Where the event takes place
maxLength: 500 bytesstartTime
string
datetime
Required
When the event begins
status
string
Optional
Event status
com.sidefield.event#scheduled, com.sidefield.event#cancelled, com.sidefield.event#postponed, com.sidefield.event#completedtitle
string
Required
Event title
maxLength: 100 bytesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"startTime"
],
"properties": {
"title": {
"type": "string",
"maxLength": 100,
"description": "Event title"
},
"status": {
"type": "string",
"description": "Event status",
"knownValues": [
"com.sidefield.event#scheduled",
"com.sidefield.event#cancelled",
"com.sidefield.event#postponed",
"com.sidefield.event#completed"
]
},
"endTime": {
"type": "string",
"format": "datetime",
"description": "When the event ends"
},
"location": {
"type": "string",
"maxLength": 500,
"description": "Where the event takes place"
},
"community": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the community this event belongs to"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"startTime": {
"type": "string",
"format": "datetime",
"description": "When the event begins"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 1000,
"description": "Event description"
}
}
},
"description": "A generic event record for any community gathering"
}