A comment on a 2bit.pics post record.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
com.atproto.repo.strongRef
Required
Strong ref to the post being commented on. Allowed target collections are enforced in the AppView.
text
string
Required
No description available.
maxLength: 1200 bytesminLength: 1 bytesmaxGraphemes: 300 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 1200,
"minLength": 1,
"maxGraphemes": 300
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong ref to the post being commented on. Allowed target collections are enforced in the AppView."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A comment on a 2bit.pics post record."
}