space.dailygame.score
Schema Diff
+6 -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
+
"connections-soccer",
25
26
"strands",
26
27
"parseword",
27
28
"clues-by-sam",
28
29
"metazooa",
29
30
"globle",
30
31
"maptap",
31
32
"satle",
32
33
"queens",
33
34
"tango",
34
35
"zip",
35
36
"mini-sudoku",
36
37
"patches",
37
38
"set-fury",
38
39
"timeguessr",
39
40
"kickoff-league",
40
41
"puzzmo-crossword",
41
42
"puzzmo-ribbit",
42
43
"puzzmo-memoku",
43
44
"craftword",
44
45
"enclose-horse",
45
46
"center-fit",
46
-
"rogueslide"
47
+
"rogueslide",
48
+
"weatherdle",
49
+
"bracket-city",
50
+
"putt-day",
51
+
"scrandle"
47
52
]
48
53
},
49
54
"score": {
50
55
"type": "integer",
51
56
"description": "Game-specific numeric score."
52
57
},
53
58
"attempts": {
54
59
"type": "integer",
55
60
"minimum": 0,
56
61
"description": "Number of attempts used; meaning is game-specific."
57
62
},
58
63
"metadata": {
59
64
"type": "unknown",
60
65
"description": "Game-specific extras (hard mode, hints used, group order, etc.)."
61
66
},
62
67
"playedAt": {
63
68
"type": "string",
64
69
"format": "datetime",
65
70
"description": "When the user played the puzzle."
66
71
},
67
72
"puzzleId": {
68
73
"type": "string",
69
74
"maxLength": 64,
70
75
"description": "Per-game puzzle identifier, e.g. '1027' or '2026-04-17'."
71
76
},
72
77
"rawShare": {
73
78
"type": "string",
74
79
"maxLength": 20000,
75
80
"description": "The cleaned share text (URLs, hashtags, promos stripped).",
76
81
"maxGraphemes": 2000
77
82
},
78
83
"completed": {
79
84
"type": "boolean",
80
85
"description": "Whether the user completed the puzzle successfully."
81
86
},
82
87
"createdAt": {
83
88
"type": "string",
84
89
"format": "datetime",
85
90
"description": "When this record was created."
86
91
},
87
92
"durationMs": {
88
93
"type": "integer",
89
94
"minimum": 0,
90
95
"description": "Time to complete the puzzle in milliseconds."
91
96
},
92
97
"maxAttempts": {
93
98
"type": "integer",
94
99
"minimum": 0,
95
100
"description": "Maximum attempts allowed by the game (e.g. 6 for Wordle)."
96
101
}
97
102
}
98
103
},
99
104
"description": "A score for a daily web game played by the user."
100
105
}
101
106
},
102
107
"$type": "com.atproto.lexicon.schema",
103
108
"lexicon": 1
104
109
}