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