Top-level comment on a card, deck, or collection.
Record Key
tid
Timestamp-based ID
Properties
content
ref
com.deckbelcher.richtext#document
Required
Rich text content.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
union
Required
What this comment is on.
Known types:
target
union
Optional
Optional refinement within subject (card/section/tag in a deck).
Known types:
updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"content",
"createdAt"
],
"properties": {
"target": {
"refs": [
"#cardTarget",
"#deckTarget",
"#sectionTarget",
"#tagTarget"
],
"type": "union",
"description": "Optional refinement within subject (card/section/tag in a deck)."
},
"content": {
"ref": "com.deckbelcher.richtext#document",
"type": "ref",
"description": "Rich text content."
},
"subject": {
"refs": [
"#cardSubject",
"#recordSubject"
],
"type": "union",
"description": "What this comment is on."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Top-level comment on a card, deck, or collection."
}