# at.noted.radio.program

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

✓ This is the authoritative definition for this NSID.

## Description

A radio program

## Links

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

## Definitions

### `at.noted.radio.program`

**Type**: `record`

Record representing a single program

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `integer` | Yes |  |
| `name` | `string` | Yes |  |
| `tags` | `array` | No |  |
| `imageUri` | `string` (uri) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |
| `thumbnailUri` | `string` (uri) | No |  |

## Raw Schema

```json
{
  "id": "at.noted.radio.program",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "id",
          "name",
          "createdAt"
        ],
        "properties": {
          "id": {
            "type": "integer"
          },
          "name": {
            "type": "string",
            "maxLength": 500
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 500
            }
          },
          "imageUri": {
            "type": "string",
            "format": "uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 5000
          },
          "thumbnailUri": {
            "type": "string",
            "format": "uri"
          }
        }
      },
      "description": "Record representing a single program"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A radio program"
}
```
