A declaration of an artist.
Record Key
tid
Timestamp-based ID
Properties
bio
string
Optional
The biography of the artist.
maxLength: 1000 bytesborn
string
datetime
Optional
The birth date of the artist.
bornIn
string
Optional
The birth place of the artist.
maxLength: 256 bytescreatedAt
string
datetime
Required
The date when the artist was created.
died
string
datetime
Optional
The death date of the artist.
name
string
Required
The name of the artist.
maxLength: 512 bytesminLength: 1 bytespicture
blob
Optional
The picture of the artist.
maxSize: 2.0 MBpictureUrl
string
uri
Optional
The URL of the picture of the artist.
tags
array
of
string
Optional
The tags of the artist.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"bio": {
"type": "string",
"maxLength": 1000,
"description": "The biography of the artist."
},
"born": {
"type": "string",
"format": "datetime",
"description": "The birth date of the artist."
},
"died": {
"type": "string",
"format": "datetime",
"description": "The death date of the artist."
},
"name": {
"type": "string",
"maxLength": 512,
"minLength": 1,
"description": "The name of the artist."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 256,
"minLength": 1
},
"description": "The tags of the artist."
},
"bornIn": {
"type": "string",
"maxLength": 256,
"description": "The birth place of the artist."
},
"picture": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 2000000,
"description": "The picture of the artist."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The date when the artist was created."
},
"pictureUrl": {
"type": "string",
"format": "uri",
"description": "The URL of the picture of the artist."
}
}
},
"description": "A declaration of an artist."
}