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