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