A recording of a song or musical work: the performance captured in a specific format
tid
Timestamp-based ID
Properties
artists
array
of
ref
#artist
Required
No description available.
minLength: 1 itemsaudioFile
blob
Optional
No description available.
duration
integer
Optional
Duration of the recording in seconds
isrc
string
Optional
ISRC (International Standard Recording Code) with which the recording is registered
maxLength: 12 bytesmasterOwner
ref
#masterOwnerInfo
Optional
No description available.
song
ref
ch.indiemusi.alpha.song
Optional
No description available.
title
string
Required
No description available.
maxLength: 255 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"artists"
],
"properties": {
"isrc": {
"type": "string",
"maxLength": 12,
"description": "ISRC (International Standard Recording Code) with which the recording is registered"
},
"song": {
"ref": "ch.indiemusi.alpha.song",
"type": "ref"
},
"title": {
"type": "string",
"maxLength": 255
},
"artists": {
"type": "array",
"items": {
"ref": "#artist",
"type": "ref"
},
"minLength": 1
},
"duration": {
"type": "integer",
"description": "Duration of the recording in seconds"
},
"audioFile": {
"type": "blob"
},
"masterOwner": {
"ref": "#masterOwnerInfo",
"type": "ref"
}
}
},
"description": "A recording of a song or musical work: the performance captured in a specific format"
}