A rhythm game net ranking service built on ATproto.
1{
2 "lexicon": 1,
3 "id": "dev.tsunagite.difficulty",
4 "description": "Definitions related to difficulty slots in games hosting leaderboards via Tsunagite.",
5 "defs": {
6 "main": {
7 "type": "record",
8 "description": "A difficulty slot in a game hosting leaderboards via Tsunagite.",
9 "key": "any",
10 "record": {
11 "type": "object",
12 "properties": {
13 "name": {
14 "type": "ref",
15 "description": "The human-readable name of the difficulty slot for use in UI.",
16 "ref": "dev.tsunagite.translatable"
17 },
18 "color": {
19 "type": "string",
20 "description": "The hex code color of the difficulty slot."
21 }
22 },
23 "required": ["name"]
24 }
25 }
26 }
27}