# at.noted.radio.show

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

✓ This is the authoritative definition for this NSID.

## Description

A radio show

## Links

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

## Definitions

### `at.noted.radio.show`

**Type**: `record`

Record representing a single show

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `integer` | Yes |  |
| `name` | `string` | Yes |  |
| `tagline` | `string` | No |  |
| `hostUris` | `array` | No |  |
| `imageUri` | `string` (uri) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `startTime` | `string` (datetime) | Yes |  |
| `programUri` | `string` (at-uri) | No |  |

## Raw Schema

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