social.respawn.game

respawn.social

Documentation

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.

main record

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

createdAt string datetime Required

An RFC 3339 formatted timestamp.

liked boolean Optional

No description available.

playing boolean Optional

No description available.

rating integer Optional

Actor's rating, 1-10.

minimum: 1maximum: 10
View 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."
}

Lexicon Garden

@