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