games.gamesgamesgamesgames.actor.stats

gamesgamesgamesgames.games

Documentation

Statistics for a game from a specific platform. May include attestation signatures proving the data was verified by an external service.

main record

Statistics for a game from a specific platform. May include attestation signatures proving the data was verified by an external service.

Record Key tid Timestamp-based ID

Properties

achievements object Optional

Achievement progress from this source.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

lastPlayed string datetime Optional

When the game was last played according to this source.

playtime integer Optional

Total playtime recorded in minutes.

minimum: 0
source string Required

The platform that provided this statistics data.

Known values: steam, gog, epic, playstation, xbox, nintendo, itchio, humble
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "game",
      "source",
      "createdAt"
    ],
    "properties": {
      "game": {
        "ref": "games.gamesgamesgamesgames.actor.game#gameRef",
        "type": "ref",
        "description": "Reference to the game record."
      },
      "source": {
        "type": "string",
        "description": "The platform that provided this statistics data.",
        "knownValues": [
          "steam",
          "gog",
          "epic",
          "playstation",
          "xbox",
          "nintendo",
          "itchio",
          "humble"
        ]
      },
      "playtime": {
        "type": "integer",
        "minimum": 0,
        "description": "Total playtime recorded in minutes."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "lastPlayed": {
        "type": "string",
        "format": "datetime",
        "description": "When the game was last played according to this source."
      },
      "signatures": {
        "type": "array",
        "items": {
          "refs": [
            "games.gamesgamesgamesgames.defs#signature",
            "com.atproto.repo.strongRef"
          ],
          "type": "union"
        },
        "description": "Attestation signatures proving stats were verified. Can be inline signatures or strongRefs to remote proof records."
      },
      "achievements": {
        "type": "object",
        "properties": {
          "total": {
            "type": "integer",
            "minimum": 0
          },
          "unlocked": {
            "type": "integer",
            "minimum": 0
          }
        },
        "description": "Achievement progress from this source."
      }
    }
  },
  "description": "Statistics for a game from a specific platform. May include attestation signatures proving the data was verified by an external service."
}

Lexicon Garden

@