Record declaring a like of a game release.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When the like was created.
subject
ref
com.atproto.repo.strongRef
Required
The game release being liked. It implies, but doesn't assert, a linking of any subsequent version of the game.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The game release being liked. It implies, but doesn't assert, a linking of any subsequent version of the game."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the like was created."
}
}
},
"description": "Record declaring a like of a game release."
}