A reply to an annotation (motivation: replying)
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
format
string
Optional
MIME type of the text content
Default:
text/plainparent
ref
#replyRef
Required
Reference to the parent annotation or reply
root
ref
#replyRef
Required
Reference to the root annotation of the thread
text
string
Required
Reply text content
maxLength: 10000 bytesmaxGraphemes: 3000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"parent",
"root",
"text",
"createdAt"
],
"properties": {
"root": {
"ref": "#replyRef",
"type": "ref",
"description": "Reference to the root annotation of the thread"
},
"text": {
"type": "string",
"maxLength": 10000,
"description": "Reply text content",
"maxGraphemes": 3000
},
"format": {
"type": "string",
"default": "text/plain",
"description": "MIME type of the text content"
},
"parent": {
"ref": "#replyRef",
"type": "ref",
"description": "Reference to the parent annotation or reply"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reply to an annotation (motivation: replying)"
}