A game in the actor's collection, keyed by its IGDB id. Stores the current rating, like/play state, and the cover image. Logs are separate social.respawn.feed.log records; creating a log updates this record's current state.
Record Key
any
Any valid record key
Properties
cover
ref
social.respawn.defs#cover
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
game
ref
social.respawn.defs#gameRef
Optional
No description available.
liked
boolean
Optional
No description available.
played
ref
social.respawn.defs#playState
Optional
No description available.
playing
boolean
Optional
No description available.
rating
integer
Optional
Actor's rating, 1-10.
minimum: 1maximum: 10View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"game": {
"ref": "social.respawn.defs#gameRef",
"type": "ref"
},
"cover": {
"ref": "social.respawn.defs#cover",
"type": "ref"
},
"liked": {
"type": "boolean"
},
"played": {
"ref": "social.respawn.defs#playState",
"type": "ref"
},
"rating": {
"type": "integer",
"maximum": 10,
"minimum": 1,
"description": "Actor's rating, 1-10."
},
"playing": {
"type": "boolean"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A game in the actor's collection, keyed by its IGDB id. Stores the current rating, like/play state, and the cover image. Logs are separate social.respawn.feed.log records; creating a log updates this record's current state."
}