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