No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
parent
ref
com.atproto.repo.strongRef
Optional
No description available.
subject
ref
com.atproto.repo.strongRef
Required
No description available.
text
string
Required
No description available.
maxLength: 50000 bytesmaxGraphemes: 5000 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 50000,
"maxGraphemes": 5000
},
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}