A comment on a deck, card, or note.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subjectRef",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 5000,
"description": "The comment text."
},
"replyTo": {
"type": "string",
"format": "at-uri",
"description": "The parent comment if this is a reply."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"subjectRef": {
"type": "string",
"format": "at-uri",
"description": "The root subject being commented on."
}
}
},
"description": "A comment on a deck, card, or note."
}