Record representing a user's like of a game.
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 game record being liked."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Record representing a user's like of a game."
}