An inline long-form description as plain text or markdown, with optional rich-text annotations.
Properties
facets
array
of refapp.bsky.richtext.facet
Optional
Rich text annotations for the description (mentions, URLs, hashtags, etc).
value
string
Required
The description text (plain text or markdown).
maxLength: 250000 bytesmaxGraphemes: 25000 graphemesView raw schema
{
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"maxLength": 250000,
"description": "The description text (plain text or markdown).",
"maxGraphemes": 25000
},
"facets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
},
"description": "Rich text annotations for the description (mentions, URLs, hashtags, etc)."
}
},
"description": "An inline long-form description as plain text or markdown, with optional rich-text annotations."
}