A named, ordered, shareable list of publications (like a Bluesky user list, but for site.standard.publication subscriptions). Lists are one level deep; a publication may appear in multiple lists.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When the list was created.
description
string
Optional
Optional description shown on the list's public page.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesname
string
Required
Display name of the list.
maxLength: 640 bytesmaxGraphemes: 64 graphemespublications
array
of
string
at-uri
Required
Ordered AT URIs of the site.standard.publication records in this list.
maxLength: 500 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"publications",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"description": "Display name of the list.",
"maxGraphemes": 64
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the list was created."
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Optional description shown on the list's public page.",
"maxGraphemes": 300
},
"publications": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 500,
"description": "Ordered AT URIs of the site.standard.publication records in this list."
}
}
},
"description": "A named, ordered, shareable list of publications (like a Bluesky user list, but for site.standard.publication subscriptions). Lists are one level deep; a publication may appear in multiple lists."
}