No description available.
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"index",
"features"
],
"properties": {
"index": {
"ref": "#byteSlice",
"type": "ref",
"required": true
},
"features": {
"type": "array",
"items": {
"refs": [
"#bold",
"#italic",
"#underline",
"#strikethrough",
"#code",
"#highlight",
"#link",
"#mention",
"#webMention"
],
"type": "union"
},
"required": true
}
}
}
No description available.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": []
}
No description available.
Properties
End index (exclusive), zero-indexed byte offset in UTF-8 encoded text.
minimum: 0
Start index (inclusive), zero-indexed byte offset in UTF-8 encoded text.
minimum: 0
View raw schema
{
"type": "object",
"required": [
"byteStart",
"byteEnd"
],
"properties": {
"byteEnd": {
"type": "integer",
"minimum": 0,
"required": true,
"description": "End index (exclusive), zero-indexed byte offset in UTF-8 encoded text."
},
"byteStart": {
"type": "integer",
"minimum": 0,
"required": true,
"description": "Start index (inclusive), zero-indexed byte offset in UTF-8 encoded text."
}
}
}
No description available.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": []
}
No description available.
Properties
Optional highlight color (hex or CSS color)
View raw schema
{
"type": "object",
"properties": {
"color": {
"type": "string",
"description": "Optional highlight color (hex or CSS color)"
}
}
}
No description available.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": []
}
No description available.
View raw schema
{
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "uri",
"required": true
}
}
}
No description available.
Properties
A decentralized identifier (DID).
Optional cached handle for display
View raw schema
{
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"required": true
},
"handle": {
"type": "string",
"format": "handle",
"description": "Optional cached handle for display"
}
}
}
No description available.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": []
}
No description available.
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": []
}
No description available.
Properties
Name of the website
maxGraphemes: 50 graphemes
Page title for display
maxGraphemes: 100 graphemes
View raw schema
{
"type": "object",
"required": [
"uri",
"title"
],
"properties": {
"uri": {
"type": "string",
"format": "uri",
"required": true,
"description": "The URL being mentioned"
},
"title": {
"type": "string",
"required": true,
"description": "Page title for display",
"maxGraphemes": 100
},
"siteName": {
"type": "string",
"description": "Name of the website",
"maxGraphemes": 50
}
}
}