A recurring open mic show series.
Record Key
tid
Timestamp-based ID
Properties
artist
string
at-uri
Required
The AT-URI of the haus.opn.mic.artist record.
coverArt
blob
Optional
No description available.
maxSize: 1.0 MBcreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 3000 bytesschedule
string
Required
No description available.
Known values:
daily, weekly, biweekly, monthly, irregulartitle
string
Required
No description available.
maxLength: 100 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"artist",
"schedule",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 100
},
"artist": {
"type": "string",
"format": "at-uri",
"description": "The AT-URI of the haus.opn.mic.artist record."
},
"coverArt": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 1000000
},
"schedule": {
"type": "string",
"knownValues": [
"daily",
"weekly",
"biweekly",
"monthly",
"irregular"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000
}
}
},
"description": "A recurring open mic show series."
}