A score for a daily web game played by the user.
Record Key
tid
Timestamp-based ID
Properties
attempts
integer
Optional
Number of attempts used; meaning is game-specific.
minimum: 0completed
boolean
Required
Whether the user completed the puzzle successfully.
createdAt
string
datetime
Required
When this record was created.
durationMs
integer
Optional
Time to complete the puzzle in milliseconds.
minimum: 0game
string
Required
Game id from the app catalog (e.g. 'wordle', 'globle').
maxLength: 64 bytesKnown values:
wordle, connections, strands, parseword, clues-by-sam, metazooa, globle, maptap, satle, queens, tango, zip, mini-sudoku, patches, set-fury, timeguessr, kickoff-league, puzzmo-crossword, puzzmo-ribbit, puzzmo-memoku, craftword, enclose-horse, center-fitmaxAttempts
integer
Optional
Maximum attempts allowed by the game (e.g. 6 for Wordle).
minimum: 0metadata
unknown
Optional
Game-specific extras (hard mode, hints used, group order, etc.).
playedAt
string
datetime
Required
When the user played the puzzle.
puzzleId
string
Required
Per-game puzzle identifier, e.g. '1027' or '2026-04-17'.
maxLength: 64 bytesrawShare
string
Required
The cleaned share text (URLs, hashtags, promos stripped).
maxLength: 20000 bytesmaxGraphemes: 2000 graphemesscore
integer
Optional
Game-specific numeric score.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"game",
"puzzleId",
"playedAt",
"completed",
"rawShare",
"createdAt"
],
"properties": {
"game": {
"type": "string",
"maxLength": 64,
"description": "Game id from the app catalog (e.g. 'wordle', 'globle').",
"knownValues": [
"wordle",
"connections",
"strands",
"parseword",
"clues-by-sam",
"metazooa",
"globle",
"maptap",
"satle",
"queens",
"tango",
"zip",
"mini-sudoku",
"patches",
"set-fury",
"timeguessr",
"kickoff-league",
"puzzmo-crossword",
"puzzmo-ribbit",
"puzzmo-memoku",
"craftword",
"enclose-horse",
"center-fit"
]
},
"score": {
"type": "integer",
"description": "Game-specific numeric score."
},
"attempts": {
"type": "integer",
"minimum": 0,
"description": "Number of attempts used; meaning is game-specific."
},
"metadata": {
"type": "unknown",
"description": "Game-specific extras (hard mode, hints used, group order, etc.)."
},
"playedAt": {
"type": "string",
"format": "datetime",
"description": "When the user played the puzzle."
},
"puzzleId": {
"type": "string",
"maxLength": 64,
"description": "Per-game puzzle identifier, e.g. '1027' or '2026-04-17'."
},
"rawShare": {
"type": "string",
"maxLength": 20000,
"description": "The cleaned share text (URLs, hashtags, promos stripped).",
"maxGraphemes": 2000
},
"completed": {
"type": "boolean",
"description": "Whether the user completed the puzzle successfully."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this record was created."
},
"durationMs": {
"type": "integer",
"minimum": 0,
"description": "Time to complete the puzzle in milliseconds."
},
"maxAttempts": {
"type": "integer",
"minimum": 0,
"description": "Maximum attempts allowed by the game (e.g. 6 for Wordle)."
}
}
},
"description": "A score for a daily web game played by the user."
}