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