# pink.vase.pod.playlist

> 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.playlist)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4q6zynbo2nbapzxwsrswankx/pink.vase.pod.playlist/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4q6zynbo2nbapzxwsrswankx/pink.vase.pod.playlist/examples)

## Definitions

### `pink.vase.pod.playlist`

**Type**: `record`

A user-curated ordered list of podcast episodes.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Display name of the playlist. |
| `items` | `array` | Yes | Ordered list of episodes. Must reference pink.vase.pod.episode records. |
| `createdAt` | `string` (datetime) | Yes |  |
| `visibility` | `string` | No | Whether the playlist is visible to others. Your AppView enforces private. |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "pink.vase.pod.playlist",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "items",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 200,
            "description": "Display name of the playlist."
          },
          "items": {
            "type": "array",
            "items": {
              "ref": "com.atproto.repo.strongRef",
              "type": "ref"
            },
            "maxLength": 500,
            "description": "Ordered list of episodes. Must reference pink.vase.pod.episode records."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "visibility": {
            "type": "string",
            "description": "Whether the playlist is visible to others. Your AppView enforces private.",
            "knownValues": [
              "public",
              "private"
            ]
          },
          "description": {
            "type": "string",
            "maxLength": 1000
          }
        }
      },
      "description": "A user-curated ordered list of podcast episodes."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
