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