A game score record for ATPlay games
Record Key
tid
Timestamp-based ID
Properties
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"
}