Annotation of a sub-string within rich text.
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": [
"#mention",
"#link",
"#tag",
"#bold",
"#italic",
"#heading",
"#listItem",
"#image",
"#video"
],
"type": "union"
}
}
},
"description": "Annotation of a sub-string within rich text."
}
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 a section heading.
Properties
No description available.
minimum: 1maximum: 6
View raw schema
{
"type": "object",
"required": [
"level"
],
"properties": {
"level": {
"type": "integer",
"maximum": 6,
"minimum": 1
}
},
"description": "Facet feature for a section heading."
}
Facet feature for an inline image.
Properties
No description available.
No description available.
maxSize: 10.0 MB
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"blob"
],
"properties": {
"alt": {
"type": "string"
},
"blob": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 10000000
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
}
},
"description": "Facet feature for an inline image."
}
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 marking text as a list item.
Properties
No description available.
minimum: 0
No description available.
View raw schema
{
"type": "object",
"properties": {
"depth": {
"type": "integer",
"default": 0,
"minimum": 0
},
"ordered": {
"type": "boolean"
}
},
"description": "Facet feature marking text as a list item."
}
Facet feature for mention of another account.
Properties
A decentralized identifier (DID).
View raw schema
{
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
}
},
"description": "Facet feature for mention of another account."
}
Facet feature for a hashtag.
Properties
No description available.
maxLength: 640 bytesmaxGraphemes: 64 graphemes
View raw schema
{
"type": "object",
"required": [
"tag"
],
"properties": {
"tag": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
}
},
"description": "Facet feature for a hashtag."
}
Facet feature for an inline video.
Properties
No description available.
No description available.
maxSize: 200.0 MB
View raw schema
{
"type": "object",
"properties": {
"alt": {
"type": "string"
},
"uri": {
"type": "string",
"format": "uri"
},
"blob": {
"type": "blob",
"accept": [
"video/*"
],
"maxSize": 200000000
}
},
"description": "Facet feature for an inline video."
}