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