# at.noted.radio.host

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

✓ This is the authoritative definition for this NSID.

## Description

A host of a radio show

## Links

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

## Definitions

### `at.noted.radio.host`

**Type**: `record`

Record representing a single host

**Key**: `any`

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

## Raw Schema

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