A calendar event.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when the event was created.
description
string
Optional
The description of the event.
endsAt
string
datetime
Optional
Client-declared timestamp when the event ends.
locations
array
of
union
Optional
The locations where the event takes place.
mode
ref
community.lexicon.calendar.event#mode
Optional
The attendance mode of the event.
name
string
Required
The name of the event.
startsAt
string
datetime
Optional
Client-declared timestamp when the event starts.
status
ref
community.lexicon.calendar.event#status
Optional
The status of the event.
uris
array
of
ref
community.lexicon.calendar.event#uri
Optional
URIs associated with the event.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"name"
],
"properties": {
"mode": {
"ref": "community.lexicon.calendar.event#mode",
"type": "ref",
"description": "The attendance mode of the event."
},
"name": {
"type": "string",
"description": "The name of the event."
},
"uris": {
"type": "array",
"items": {
"ref": "community.lexicon.calendar.event#uri",
"type": "ref"
},
"description": "URIs associated with the event."
},
"endsAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when the event ends."
},
"status": {
"ref": "community.lexicon.calendar.event#status",
"type": "ref",
"description": "The status of the event."
},
"startsAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when the event starts."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when the event was created."
},
"locations": {
"type": "array",
"items": {
"refs": [
"community.lexicon.calendar.event#uri",
"community.lexicon.location.address",
"community.lexicon.location.fsq",
"community.lexicon.location.geo",
"community.lexicon.location.hthree"
],
"type": "union"
},
"description": "The locations where the event takes place."
},
"description": {
"type": "string",
"description": "The description of the event."
}
}
},
"description": "A calendar event."
}