# pink.vase.pod.show

> Published by [vase.pink](https://lexicon.garden/identity/did:plc:4q6zynbo2nbapzxwsrswankx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4q6zynbo2nbapzxwsrswankx/pink.vase.pod.show)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4q6zynbo2nbapzxwsrswankx/pink.vase.pod.show/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4q6zynbo2nbapzxwsrswankx/pink.vase.pod.show/examples)

## Definitions

### `pink.vase.pod.show`

**Type**: `record`

A podcast show. A single user can have multiple shows.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | The display name of the show. |
| `coverArt` | `blob` | No | Cover art image. Stored as a blob in the user's PDS. |
| `explicit` | `boolean` | No | Whether the show contains explicit content. |
| `language` | `string` (language) | No | Primary language of the show, BCP-47 format e.g. 'en', 'es'. |
| `createdAt` | `string` (datetime) | Yes |  |
| `categories` | `array` | No | Podcast categories e.g. 'Technology', 'Comedy'. |
| `websiteUrl` | `string` (uri) | No |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "pink.vase.pod.show",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 200,
            "description": "The display name of the show."
          },
          "coverArt": {
            "type": "blob",
            "accept": [
              "image/jpeg",
              "image/png",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Cover art image. Stored as a blob in the user's PDS."
          },
          "explicit": {
            "type": "boolean",
            "description": "Whether the show contains explicit content."
          },
          "language": {
            "type": "string",
            "format": "language",
            "description": "Primary language of the show, BCP-47 format e.g. 'en', 'es'."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "categories": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 100
            },
            "maxLength": 3,
            "description": "Podcast categories e.g. 'Technology', 'Comedy'."
          },
          "websiteUrl": {
            "type": "string",
            "format": "uri"
          },
          "description": {
            "type": "string",
            "maxLength": 2000
          }
        }
      },
      "description": "A podcast show. A single user can have multiple shows."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
