pink.vase.pod.playlist

lexicon.store View official

Documentation

A user-curated ordered list of podcast episodes.

main record

A user-curated ordered list of podcast episodes.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 1000 bytes
items array of ref com.atproto.repo.strongRef Required

Ordered list of episodes. Must reference pink.vase.pod.episode records.

maxLength: 500 items
name string Required

Display name of the playlist.

maxLength: 200 bytes
visibility string Optional

Whether the playlist is visible to others. Your AppView enforces private.

Known values: public, private
View raw schema
{
  "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."
}

Lexicon Garden

@