# at.noted.radio.play

> Published by [noted.at](https://lexicon.garden/identity/did:plc:2aa6fahtis66ymq7rd2yxdwu)

✓ This is the authoritative definition for this NSID.

## Description

A play of a track on a radio show

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.radio.play)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.radio.play/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2aa6fahtis66ymq7rd2yxdwu/at.noted.radio.play/examples)

## Definitions

### `at.noted.radio.play`

**Type**: `record`

Record representing a single played item

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `integer` | Yes |  |
| `show` | `string` (at-uri) | No |  |
| `song` | `string` | No |  |
| `album` | `string` | No |  |
| `artist` | `string` | No |  |
| `airdate` | `string` (datetime) | Yes |  |
| `comment` | `string` | No |  |
| `imageUri` | `string` (uri) | No |  |
| `playType` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `thumbnailUri` | `string` (uri) | No |  |

## Raw Schema

```json
{
  "id": "at.noted.radio.play",
  "defs": {
    "main": {
      "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"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A play of a track on a radio show"
}
```
