A release (album, EP, single) containing recordings of songs or musical works
Record Key
tid
Timestamp-based ID
Properties
artists
array
of
ref
#artist
Required
No description available.
minLength: 1 itemsartworkImage
blob
Optional
No description available.
gtin
string
Optional
GTIN (Global Trade Item Number) with which the release is registered, e.g. EAN or UPC
maxLength: 14 bytesrecordings
array
of
ref
ch.indiemusi.alpha.recording
Required
List of recordings (ch.indiemusi.alpha.recording) included in this release
minLength: 1 itemsreleaseDate
string
datetime
Optional
An RFC 3339 formatted timestamp.
title
string
Required
No description available.
maxLength: 255 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"artists",
"recordings"
],
"properties": {
"gtin": {
"type": "string",
"maxLength": 14,
"description": "GTIN (Global Trade Item Number) with which the release is registered, e.g. EAN or UPC"
},
"title": {
"type": "string",
"maxLength": 255
},
"artists": {
"type": "array",
"items": {
"ref": "#artist",
"type": "ref"
},
"minLength": 1
},
"recordings": {
"type": "array",
"items": {
"ref": "ch.indiemusi.alpha.recording",
"type": "ref"
},
"minLength": 1,
"description": "List of recordings (ch.indiemusi.alpha.recording) included in this release"
},
"releaseDate": {
"type": "string",
"format": "datetime"
},
"artworkImage": {
"type": "blob"
}
}
},
"description": "A release (album, EP, single) containing recordings of songs or musical works"
}