# live.voxport.podcast.subscribe

> Published by [voxport.live](https://lexicon.garden/identity/did:plc:hhtgwctzcuhlkqrxu526sco5)

✓ This is the authoritative definition for this NSID.

## Description

Subscription to a podcast series for episode notifications

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:hhtgwctzcuhlkqrxu526sco5/live.voxport.podcast.subscribe)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hhtgwctzcuhlkqrxu526sco5/live.voxport.podcast.subscribe/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hhtgwctzcuhlkqrxu526sco5/live.voxport.podcast.subscribe/examples)

## Definitions

### `live.voxport.podcast.subscribe`

**Type**: `record`

Subscription to a podcast series for episode notifications

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `live.voxport.podcast.series#seriesRef` | Yes | The series being subscribed to (uri + optional cid) |
| `createdAt` | `string` (datetime) | Yes |  |
| `notifyNewEpisodes` | `boolean` | No | Whether to notify when new episodes are published |

## Raw Schema

```json
{
  "id": "live.voxport.podcast.subscribe",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "ref": "live.voxport.podcast.series#seriesRef",
            "type": "ref",
            "description": "The series being subscribed to (uri + optional cid)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "notifyNewEpisodes": {
            "type": "boolean",
            "default": true,
            "description": "Whether to notify when new episodes are published"
          }
        }
      },
      "description": "Subscription to a podcast series for episode notifications"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Subscription to a podcast series for episode notifications"
}
```
