A comment on an Arabica record (brew, bean, roaster, grinder, brewer, or another comment)
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when the comment was created
parent
ref
com.atproto.repo.strongRef
Optional
Optional parent comment reference for replies
subject
ref
com.atproto.repo.strongRef
Required
The AT-URI and CID of the record being commented on
text
string
Required
The comment text content
maxLength: 1000 bytesmaxGraphemes: 300 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 1000,
"description": "The comment text content",
"maxGraphemes": 300
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Optional parent comment reference for replies"
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The AT-URI and CID of the record being commented on"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the comment was created"
}
}
},
"description": "A comment on an Arabica record (brew, bean, roaster, grinder, brewer, or another comment)"
}