A performer credit: the author asserts a comedian is on an event's lineup
Record Key
tid
Timestamp-based ID
Properties
billingOrder
integer
Optional
Position on the bill (lower = higher billing)
comedian
string
at-uri
Required
AT-URI of the town.laugh.db.comedian being credited
createdAt
string
datetime
Required
Timestamp of when the credit was created
event
string
at-uri
Required
AT-URI of the show — a community.lexicon.calendar.event record (central repo or author-owned; legacy town.laugh.db.event / town.laugh.user.event uris remain valid)
role
string
Optional
Role on the bill, e.g. headliner, host, feature
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"event",
"comedian",
"createdAt"
],
"properties": {
"role": {
"type": "string",
"description": "Role on the bill, e.g. headliner, host, feature"
},
"event": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the show — a community.lexicon.calendar.event record (central repo or author-owned; legacy town.laugh.db.event / town.laugh.user.event uris remain valid)"
},
"comedian": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the town.laugh.db.comedian being credited"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of when the credit was created"
},
"billingOrder": {
"type": "integer",
"description": "Position on the bill (lower = higher billing)"
}
}
},
"description": "A performer credit: the author asserts a comedian is on an event's lineup"
}