Metadata for an open mic artist.
Record Key
tid
Timestamp-based ID
Properties
artistPic
blob
Optional
No description available.
maxSize: 1.0 MBbio
string
Optional
No description available.
maxLength: 1000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
externalLinks
array
of
string
uri
Optional
No description available.
genre
array
of
string
Optional
No description available.
name
string
Required
No description available.
maxLength: 100 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"bio": {
"type": "string",
"maxLength": 1000
},
"name": {
"type": "string",
"maxLength": 100
},
"genre": {
"type": "array",
"items": {
"type": "string"
}
},
"artistPic": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 1000000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"externalLinks": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
}
}
},
"description": "Metadata for an open mic artist."
}