ch.indiemusi.alpha.release

lexicon.store View official

Documentation

A release (album, EP, single) containing recordings of songs or musical works

main record

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 items
artworkImage 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 bytes
recordings array of ref ch.indiemusi.alpha.recording Required

List of recordings (ch.indiemusi.alpha.recording) included in this release

minLength: 1 items
releaseDate string datetime Optional

An RFC 3339 formatted timestamp.

title string Required

No description available.

maxLength: 255 bytes
View 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"
}
artist object

Information about an artist contributing to the release

Properties

did string did Optional

A decentralized identifier (DID).

name string Required

No description available.

maxLength: 255 bytes
View raw schema
{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "artist": {
      "ref": "ch.indiemusi.alpha.actor.artist",
      "type": "ref"
    }
  },
  "description": "Information about an artist contributing to the release"
}

Lexicon Garden

@