Annotation of a sub-string within rich text. Modeled on app.bsky.richtext.facet with Respawn-specific formatting features.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"index",
"features"
],
"properties": {
"index": {
"ref": "#byteSlice",
"type": "ref"
},
"features": {
"type": "array",
"items": {
"refs": [
"#link",
"#bold",
"#italic",
"#spoiler",
"#blockquote",
"#listItem"
],
"type": "union"
}
}
},
"description": "Annotation of a sub-string within rich text. Modeled on app.bsky.richtext.facet with Respawn-specific formatting features."
}
Facet feature for a blockquote span.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": {},
"description": "Facet feature for a blockquote span."
}
Facet feature for bold text.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": {},
"description": "Facet feature for bold text."
}
Specifies the sub-string range a facet feature applies to. Start index is inclusive, end index is exclusive. Indices are zero-indexed, counting bytes of the UTF-8 encoded text.
Properties
No description available.
minimum: 0
No description available.
minimum: 0
View raw schema
{
"type": "object",
"required": [
"byteStart",
"byteEnd"
],
"properties": {
"byteEnd": {
"type": "integer",
"minimum": 0
},
"byteStart": {
"type": "integer",
"minimum": 0
}
},
"description": "Specifies the sub-string range a facet feature applies to. Start index is inclusive, end index is exclusive. Indices are zero-indexed, counting bytes of the UTF-8 encoded text."
}
Facet feature for italic text.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": {},
"description": "Facet feature for italic text."
}
Facet feature for a URL.
View raw schema
{
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "uri"
}
},
"description": "Facet feature for a URL."
}
Facet feature for a list item span.
Properties
Whether the item belongs to an ordered (numbered) list.
View raw schema
{
"type": "object",
"properties": {
"ordered": {
"type": "boolean",
"description": "Whether the item belongs to an ordered (numbered) list."
}
},
"description": "Facet feature for a list item span."
}
Facet feature marking a span as a spoiler. In display text the span is scrambled; the original text lives in the accompanying textWithSpoilers field.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": {},
"description": "Facet feature marking a span as a spoiler. In display text the span is scrambled; the original text lives in the accompanying textWithSpoilers field."
}