A bud: one contribution to a story tree. Freshly written buds grow for 24h (not yet followable); after that they open as 'blooms' that other writers can extend; past 48h without children they lock into 'branches'. These lifecycle stages are views of the same record, not different record types. The AppView enforces a 500-word ceiling on `text` (counted via Unicode word segmentation); writes that exceed it are rejected as WordLimitExceeded.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
formatting
array
of
ref
#formatSpan
Optional
No description available.
parent
ref
com.atproto.repo.strongRef
Optional
No description available.
text
string
Required
No description available.
maxLength: 20000 bytesmaxGraphemes: 10000 graphemestitle
string
Required
No description available.
maxLength: 1200 bytesmaxGraphemes: 120 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 20000,
"maxGraphemes": 10000
},
"title": {
"type": "string",
"maxLength": 1200,
"maxGraphemes": 120
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"formatting": {
"type": "array",
"items": {
"ref": "#formatSpan",
"type": "ref"
}
}
}
},
"description": "A bud: one contribution to a story tree. Freshly written buds grow for 24h (not yet followable); after that they open as 'blooms' that other writers can extend; past 48h without children they lock into 'branches'. These lifecycle stages are views of the same record, not different record types. The AppView enforces a 500-word ceiling on `text` (counted via Unicode word segmentation); writes that exceed it are rejected as WordLimitExceeded."
}