{
"id": "social.popfeed.feed.list",
"defs": {
"main": {
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"description": "The name of the list."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50
},
"description": "Optional array of tags for categorizing or describing the list."
},
"ordered": {
"type": "boolean",
"description": "Indicates whether the list is ordered or unordered."
},
"listType": {
"type": "string",
"maxLength": 50,
"description": "The type of list, e.g., 'watchlist', 'favorites', 'to-read', etc."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The timestamp when the list was created."
},
"itemOrder": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"description": "An array of item uris in the order they appear in the list. Stored separately from the items themselves to allow for efficient reordering without needing to update each item record."
},
"description": {
"type": "string",
"maxLength": 500,
"description": "Optional description of the list."
}
}
}
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}