Record representing a list of accounts (actors). Scope includes both moderation-oriented lists and curration-oriented lists.
Record Key
tid
Timestamp-based ID
Properties
avatar
blob
Optional
No description provided.
maxSize: 1.0 MBcreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description provided.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesdescriptionFacets
array
of
ref
app.bsky.richtext.facet
Optional
No description provided.
labels
union
Optional
No description provided.
Known types:
name
string
Required
Display name for list; can not be empty.
maxLength: 64 bytesminLength: 1 bytespurpose
ref
app.bsky.graph.defs#listPurpose
Required
Defines the purpose of the list (aka, moderation-oriented or curration-oriented)
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"purpose",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"description": "Display name for list; can not be empty."
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000
},
"labels": {
"refs": [
"com.atproto.label.defs#selfLabels"
],
"type": "union"
},
"purpose": {
"ref": "app.bsky.graph.defs#listPurpose",
"type": "ref",
"description": "Defines the purpose of the list (aka, moderation-oriented or curration-oriented)"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"descriptionFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
}
}
}
},
"description": "Record representing a list of accounts (actors). Scope includes both moderation-oriented lists and curration-oriented lists."
}