me.linkna.lastfm

lexicon.store View official

Documentation

A Last.fm scrobble play record written by Linkname.

main record

A Last.fm scrobble play record written by Linkname.

Record Key tid Timestamp-based ID

Properties

artistMbId string Optional

MusicBrainz ID for the artist.

artistNames array of string Required

Artist name(s).

coverArtUrl string Optional

URL to the album cover art.

createdAt string datetime Required

When this record was created.

originUrl string uri Optional

URL to the track on Last.fm.

playedTime string datetime Optional

When the track was played on Last.fm.

releaseMbId string Optional

MusicBrainz ID for the release/album.

releaseName string Optional

Album/release name.

trackMbId string Optional

MusicBrainz ID for the track.

trackName string Required

Track/song name.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "trackName",
      "artistNames",
      "createdAt"
    ],
    "properties": {
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When this record was created."
      },
      "originUrl": {
        "type": "string",
        "format": "uri",
        "description": "URL to the track on Last.fm."
      },
      "trackMbId": {
        "type": "string",
        "description": "MusicBrainz ID for the track."
      },
      "trackName": {
        "type": "string",
        "description": "Track/song name."
      },
      "artistMbId": {
        "type": "string",
        "description": "MusicBrainz ID for the artist."
      },
      "playedTime": {
        "type": "string",
        "format": "datetime",
        "description": "When the track was played on Last.fm."
      },
      "artistNames": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Artist name(s)."
      },
      "coverArtUrl": {
        "type": "string",
        "description": "URL to the album cover art."
      },
      "releaseMbId": {
        "type": "string",
        "description": "MusicBrainz ID for the release/album."
      },
      "releaseName": {
        "type": "string",
        "description": "Album/release name."
      }
    }
  },
  "description": "A Last.fm scrobble play record written by Linkname."
}

Lexicon Garden

@