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