No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
description
string
Optional
Description of the event
end
string
datetime
Required
End time of the event
location
string
Optional
Location of the event
start
string
datetime
Required
Start time of the event
title
string
Required
Title of the event
url
string
Optional
URL of the event
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"start",
"end"
],
"properties": {
"end": {
"type": "string",
"format": "datetime",
"description": "End time of the event"
},
"url": {
"type": "string",
"description": "URL of the event"
},
"start": {
"type": "string",
"format": "datetime",
"description": "Start time of the event"
},
"title": {
"type": "string",
"description": "Title of the event"
},
"location": {
"type": "string",
"description": "Location of the event"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"description": "Description of the event"
}
}
}
}