# haus.opn.mic.show.episode

> Published by [opn.haus](https://lexicon.garden/identity/did:plc:bhy6jyqdo23nlsxdpsaebl3x)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:bhy6jyqdo23nlsxdpsaebl3x/haus.opn.mic.show.episode)
- [Documentation](https://lexicon.garden/lexicon/did:plc:bhy6jyqdo23nlsxdpsaebl3x/haus.opn.mic.show.episode/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:bhy6jyqdo23nlsxdpsaebl3x/haus.opn.mic.show.episode/examples)

## Definitions

### `haus.opn.mic.show.episode`

**Type**: `record`

A specific episode or VOD of a show.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | Yes |  |
| `status` | `string` | No | Current episode lifecycle status. |
| `vodUrl` | `string` (uri) | No |  |
| `showUri` | `string` (at-uri) | Yes | Reference to the haus.opn.mic.show record. |
| `coverArt` | `blob` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `airingDate` | `string` (datetime) | No | Scheduled or actual date/time when this episode airs. |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "haus.opn.mic.show.episode",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "showUri",
          "title",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 100
          },
          "status": {
            "type": "string",
            "description": "Current episode lifecycle status.",
            "knownValues": [
              "upcoming",
              "live",
              "ended"
            ]
          },
          "vodUrl": {
            "type": "string",
            "format": "uri"
          },
          "showUri": {
            "type": "string",
            "format": "at-uri",
            "description": "Reference to the haus.opn.mic.show record."
          },
          "coverArt": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "maxSize": 1000000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "airingDate": {
            "type": "string",
            "format": "datetime",
            "description": "Scheduled or actual date/time when this episode airs."
          },
          "description": {
            "type": "string",
            "maxLength": 5000
          }
        }
      },
      "description": "A specific episode or VOD of a show."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
