A comment on a post or another comment
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"post",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 10000,
"maxGraphemes": 5000
},
"post": {
"type": "string",
"format": "at-uri",
"description": "The root post being commented on"
},
"parent": {
"type": "string",
"format": "at-uri",
"description": "Parent comment (for nested replies)"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A comment on a post or another comment"
}