blue.atplay.temp.game.score

atplay.blue

Documentation

A game score record for ATPlay games

main record

A game score record for ATPlay games

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the score was achieved

gameId string Required

Identifier of the game (e.g., 'clicker')

maxLength: 64 bytesminLength: 1 bytes
metadata object Optional

Optional game-specific metadata

score integer Required

The player's score

minimum: 0
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "gameId",
      "score",
      "createdAt"
    ],
    "properties": {
      "score": {
        "type": "integer",
        "minimum": 0,
        "description": "The player's score"
      },
      "gameId": {
        "type": "string",
        "maxLength": 64,
        "minLength": 1,
        "description": "Identifier of the game (e.g., 'clicker')"
      },
      "metadata": {
        "type": "object",
        "properties": {
          "level": {
            "type": "integer",
            "description": "Level reached"
          },
          "duration": {
            "type": "integer",
            "description": "Game duration in milliseconds"
          }
        },
        "description": "Optional game-specific metadata"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the score was achieved"
      }
    }
  },
  "description": "A game score record for ATPlay games"
}

Lexicon Garden

@