A comment on a log or list. Stored in the commenter's repo; the subject's author can hide it via their social.respawn.feed.gate record.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
facets
array
of
ref
social.respawn.richtext.facet
Optional
No description available.
parent
ref
com.atproto.repo.strongRef
Optional
Optional parent comment, for threaded replies.
subject
ref
com.atproto.repo.strongRef
Required
The root log or list being commented on.
text
string
Required
No description available.
maxLength: 30000 bytesmaxGraphemes: 3000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"subject",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 30000,
"maxGraphemes": 3000
},
"facets": {
"type": "array",
"items": {
"ref": "social.respawn.richtext.facet",
"type": "ref"
}
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Optional parent comment, for threaded replies."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The root log or list being commented on."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A comment on a log or list. Stored in the commenter's repo; the subject's author can hide it via their social.respawn.feed.gate record."
}