A user-curated list of events, venues, and/or comedians. The favorites list is the one with purpose "favorites".
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp of when the list was created
description
string
Optional
Optional list description
maxLength: 2048 bytesname
string
Required
Display name
maxLength: 256 bytespurpose
string
Optional
Advisory list purpose; "favorites" marks the singular favorites list
Known values:
curated, favoritesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 256,
"description": "Display name"
},
"purpose": {
"type": "string",
"description": "Advisory list purpose; \"favorites\" marks the singular favorites list",
"knownValues": [
"curated",
"favorites"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of when the list was created"
},
"description": {
"type": "string",
"maxLength": 2048,
"description": "Optional list description"
}
}
},
"description": "A user-curated list of events, venues, and/or comedians. The favorites list is the one with purpose \"favorites\"."
}