space.dailygame.score
Schema Diff
+3 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.dailygame.score",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"game",
11
11
"puzzleId",
12
12
"playedAt",
13
13
"completed",
14
14
"rawShare",
15
15
"createdAt"
16
16
],
17
17
"properties": {
18
18
"game": {
19
19
"type": "string",
20
20
"maxLength": 64,
21
21
"description": "Game id from the app catalog (e.g. 'wordle', 'globle').",
22
22
"knownValues": [
23
23
"wordle",
24
24
"connections",
25
25
"strands",
26
26
"parseword",
27
27
"clues-by-sam",
28
28
"metazooa",
29
29
"globle",
30
30
"maptap",
31
31
"satle",
32
32
"queens",
33
33
"tango",
34
34
"zip",
35
35
"mini-sudoku",
36
36
"patches",
37
37
"set-fury",
38
38
"timeguessr",
39
-
"kickoff-league"
39
+
"kickoff-league",
40
+
"puzzmo-crossword",
41
+
"puzzmo-ribbit"
40
42
]
41
43
},
42
44
"score": {
43
45
"type": "integer",
44
46
"description": "Game-specific numeric score."
45
47
},
46
48
"attempts": {
47
49
"type": "integer",
48
50
"minimum": 0,
49
51
"description": "Number of attempts used; meaning is game-specific."
50
52
},
51
53
"metadata": {
52
54
"type": "unknown",
53
55
"description": "Game-specific extras (hard mode, hints used, group order, etc.)."
54
56
},
55
57
"playedAt": {
56
58
"type": "string",
57
59
"format": "datetime",
58
60
"description": "When the user played the puzzle."
59
61
},
60
62
"puzzleId": {
61
63
"type": "string",
62
64
"maxLength": 64,
63
65
"description": "Per-game puzzle identifier, e.g. '1027' or '2026-04-17'."
64
66
},
65
67
"rawShare": {
66
68
"type": "string",
67
69
"maxLength": 20000,
68
70
"description": "The cleaned share text (URLs, hashtags, promos stripped).",
69
71
"maxGraphemes": 2000
70
72
},
71
73
"completed": {
72
74
"type": "boolean",
73
75
"description": "Whether the user completed the puzzle successfully."
74
76
},
75
77
"createdAt": {
76
78
"type": "string",
77
79
"format": "datetime",
78
80
"description": "When this record was created."
79
81
},
80
82
"durationMs": {
81
83
"type": "integer",
82
84
"minimum": 0,
83
85
"description": "Time to complete the puzzle in milliseconds."
84
86
},
85
87
"maxAttempts": {
86
88
"type": "integer",
87
89
"minimum": 0,
88
90
"description": "Maximum attempts allowed by the game (e.g. 6 for Wordle)."
89
91
}
90
92
}
91
93
},
92
94
"description": "A score for a daily web game played by the user."
93
95
}
94
96
},
95
97
"$type": "com.atproto.lexicon.schema",
96
98
"lexicon": 1
97
99
}