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