Record indicating that the account author liked a specific article. Deleting this record removes the like.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the article record being liked."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the like was created."
}
}
},
"description": "Record indicating that the account author liked a specific article. Deleting this record removes the like."
}