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