at.noted.radio.play

noted.at

Documentation

Record representing a single played item

main record

Record representing a single played item

Record Key any Any valid record key

Properties

airdate string datetime Required

An RFC 3339 formatted timestamp.

album string Optional

No description available.

maxLength: 500 bytes
artist string Optional

No description available.

maxLength: 500 bytes
comment string Optional

No description available.

maxLength: 5000 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

id integer Required

No description available.

imageUri string uri Optional

A valid URI.

playType string Required

No description available.

maxLength: 20 bytes
Known values: airbreak, trackplay
show string at-uri Optional

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

song string Optional

No description available.

maxLength: 500 bytes
thumbnailUri string uri Optional

A valid URI.

View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "airdate",
      "id",
      "playType",
      "createdAt"
    ],
    "properties": {
      "id": {
        "type": "integer"
      },
      "show": {
        "type": "string",
        "format": "at-uri"
      },
      "song": {
        "type": "string",
        "maxLength": 500
      },
      "album": {
        "type": "string",
        "maxLength": 500
      },
      "artist": {
        "type": "string",
        "maxLength": 500
      },
      "airdate": {
        "type": "string",
        "format": "datetime"
      },
      "comment": {
        "type": "string",
        "maxLength": 5000
      },
      "imageUri": {
        "type": "string",
        "format": "uri"
      },
      "playType": {
        "type": "string",
        "maxLength": 20,
        "knownValues": [
          "airbreak",
          "trackplay"
        ]
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "thumbnailUri": {
        "type": "string",
        "format": "uri"
      }
    }
  },
  "description": "Record representing a single played item"
}

Lexicon Garden

@