A record indicating approval of a thread or reply
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when we yeah
subject
ref
com.atproto.repo.strongRef
Required
The thread or reply being yeah'd
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The thread or reply being yeah'd"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when we yeah"
}
}
},
"description": "A record indicating approval of a thread or reply"
}