games.gamesgamesgamesgames.actor.game

lexicon.store View official

Documentation

A record indicating the actor owns a game on a specific platform. May include attestation signatures proving ownership was verified by an external service.

main record

A record indicating the actor owns a game on a specific platform. May include attestation signatures proving ownership was verified by an external service.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

game ref #gameRef Required

Reference to the game record.

platform string Required

The platform where ownership was verified.

Known values: steam, gog, epic, playstation, xbox, nintendo, itchio, humble
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "game",
      "platform",
      "createdAt"
    ],
    "properties": {
      "game": {
        "ref": "#gameRef",
        "type": "ref",
        "description": "Reference to the game record."
      },
      "platform": {
        "type": "string",
        "description": "The platform where ownership was verified.",
        "knownValues": [
          "steam",
          "gog",
          "epic",
          "playstation",
          "xbox",
          "nintendo",
          "itchio",
          "humble"
        ]
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "signatures": {
        "type": "array",
        "items": {
          "refs": [
            "games.gamesgamesgamesgames.defs#signature",
            "com.atproto.repo.strongRef"
          ],
          "type": "union"
        },
        "description": "Attestation signatures proving ownership was verified. Can be inline signatures or strongRefs to remote proof records."
      }
    }
  },
  "description": "A record indicating the actor owns a game on a specific platform. May include attestation signatures proving ownership was verified by an external service."
}
gameRef object

Reference to a game, either by AT URI or external platform ID.

Properties

externalId string Optional

External platform's ID for the game.

platform string Optional

External platform for ID lookup.

uri string at-uri Optional

AT URI of the game record.

View raw schema
{
  "type": "object",
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT URI of the game record."
    },
    "platform": {
      "type": "string",
      "description": "External platform for ID lookup."
    },
    "externalId": {
      "type": "string",
      "description": "External platform's ID for the game."
    }
  },
  "description": "Reference to a game, either by AT URI or external platform ID."
}

Lexicon Garden

@