Record representing a single show
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
hostUris
array
of
string
at-uri
Optional
No description available.
id
integer
Required
No description available.
imageUri
string
uri
Optional
A valid URI.
name
string
Required
No description available.
maxLength: 500 bytesprogramUri
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
startTime
string
datetime
Required
An RFC 3339 formatted timestamp.
tagline
string
Optional
No description available.
maxLength: 500 bytesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"id",
"name",
"startTime",
"createdAt"
],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string",
"maxLength": 500
},
"tagline": {
"type": "string",
"maxLength": 500
},
"hostUris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
}
},
"imageUri": {
"type": "string",
"format": "uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"startTime": {
"type": "string",
"format": "datetime"
},
"programUri": {
"type": "string",
"format": "at-uri"
}
}
},
"description": "Record representing a single show"
}