An upvote or downvote on a post or comment
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"direction",
"createdAt"
],
"properties": {
"subject": {
"type": "string",
"format": "at-uri",
"description": "The post or comment being voted on"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"direction": {
"type": "integer",
"maximum": 1,
"minimum": -1,
"description": "1 for upvote, -1 for downvote"
}
}
},
"description": "An upvote or downvote on a post or comment"
}