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 bytesitems
array
of
ref
com.atproto.repo.strongRef
Required
Ordered list of episodes. Must reference pink.vase.pod.episode records.
maxLength: 500 itemsname
string
Required
Display name of the playlist.
maxLength: 200 bytesvisibility
string
Optional
Whether the playlist is visible to others. Your AppView enforces private.
Known values:
public, privateView 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."
}