No description available.
tid
Timestamp-based ID
Properties
description
string
Required
Description of the event
end_utc
string
datetime
Required
End time of the entire event (use the 'timeslots' field for granular scheduling)
location
ref
lex:org.devcon.event.vone#location
Required
No description available.
metadata
ref
lex:org.devcon.event.vone#metadata
Optional
No description available.
organizer
ref
lex:org.devcon.event.vone#organizer
Required
No description available.
start_utc
string
datetime
Required
Start time of the entire event (use the 'timeslots' field for granular scheduling)
timeslots
array
of
ref
lex:org.devcon.event.vone#timeslot
Optional
Optional event timeslots - this may be useful for events that span multiple days, need to specify timeslots for each day, or otherwise need more granular scheduling.
title
string
Required
Title of the event
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"start_utc",
"end_utc",
"title",
"description",
"organizer",
"location"
],
"properties": {
"title": {
"type": "string",
"description": "Title of the event"
},
"end_utc": {
"type": "string",
"format": "datetime",
"description": "End time of the entire event (use the 'timeslots' field for granular scheduling)"
},
"location": {
"ref": "lex:org.devcon.event.vone#location",
"type": "ref"
},
"metadata": {
"ref": "lex:org.devcon.event.vone#metadata",
"type": "ref"
},
"organizer": {
"ref": "lex:org.devcon.event.vone#organizer",
"type": "ref"
},
"start_utc": {
"type": "string",
"format": "datetime",
"description": "Start time of the entire event (use the 'timeslots' field for granular scheduling)"
},
"timeslots": {
"type": "array",
"items": {
"ref": "lex:org.devcon.event.vone#timeslot",
"type": "ref"
},
"description": "Optional event timeslots - this may be useful for events that span multiple days, need to specify timeslots for each day, or otherwise need more granular scheduling."
},
"description": {
"type": "string",
"description": "Description of the event"
}
}
}
}