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