Record representing a comment on an article. Deleting this record removes the comment.
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
The text content of the comment.
maxLength: 30000 bytesmaxGraphemes: 3000 graphemescreatedAt
string
datetime
Required
Timestamp when the comment was created.
parent
string
at-uri
Optional
AT URI of the parent comment record. Used for single-level threading.
subject
string
at-uri
Required
AT URI of the article record being commented on.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"content",
"createdAt"
],
"properties": {
"parent": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the parent comment record. Used for single-level threading."
},
"content": {
"type": "string",
"maxLength": 30000,
"description": "The text content of the comment.",
"maxGraphemes": 3000
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the article record being commented on."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the comment was created."
}
}
},
"description": "Record representing a comment on an article. Deleting this record removes the comment."
}