-
Notifications
You must be signed in to change notification settings - Fork 33
/
songs.schema.json
229 lines (229 loc) · 6.47 KB
/
songs.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Game Data",
"description": "Describes the shape of data that any individual json file under `src/songs` will conform to",
"additionalProperties": false,
"required": ["songs", "meta", "defaults", "i18n"],
"properties": {
"$schema": {
"type": "string"
},
"meta": {
"type": "object",
"description": "Describes unique configuration options for this game",
"required": ["lastUpdated", "styles", "difficulties", "flags"],
"additionalProperties": false,
"properties": {
"menuParent": {
"type": "string",
"description": "If supplied, the parent folder name in the game select menu"
},
"lastUpdated": {
"type": "integer",
"description": "Unix timestamp of last update to this data file"
},
"styles": {
"$ref": "#/definitions/uniqueStringArr",
"description": "List of all play styles available"
},
"difficulties": {
"type": "array",
"description": "List of all difficulty classes available",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"description": "A unique string key to identify this difficulty class"
},
"color": {
"type": "string",
"description": "A css color to use to visually define this difficulty class"
}
},
"required": ["key", "color"],
"additionalProperties": false
},
"additionalItems": false
},
"flags": {
"$ref": "#/definitions/uniqueStringArr",
"description": "List of all special flags one might filter songs by"
},
"folders": {
"$ref": "#/definitions/uniqueStringArr",
"description": "List of all possible folders, in order"
},
"usesDrawGroups": {
"type": "boolean"
},
"granularTierResolution": {
"type": "integer",
"description": "Number of steps from one level to the next when using the `sanbaiTier` granular levels"
}
}
},
"defaults": {
"type": "object",
"description": "Defines the default configuration for this game",
"required": [
"style",
"difficulties",
"lowerLvlBound",
"upperLvlBound",
"flags"
],
"additionalProperties": false,
"properties": {
"style": { "type": "string" },
"difficulties": { "$ref": "#/definitions/uniqueStringArr" },
"flags": { "$ref": "#/definitions/uniqueStringArr" },
"folders": { "$ref": "#/definitions/uniqueStringArr" },
"lowerLvlBound": { "type": "number" },
"upperLvlBound": { "type": "number" }
}
},
"i18n": {
"type": "object",
"description": "Set of localized values for display of any styles, difficulties, or flags",
"required": ["en"],
"additionalProperties": {
"$ref": "#/definitions/i18nDictRoot"
}
},
"songs": {
"type": "array",
"items": {
"type": "object",
"title": "Song",
"properties": {
"flags": { "$ref": "#/definitions/uniqueStringArr" },
"name": {
"type": "string"
},
"artist": {
"type": "string"
},
"genre": {
"type": "string"
},
"artist_translation": {
"type": "string"
},
"bpm": {
"type": "string"
},
"name_translation": {
"type": "string"
},
"search_hint": {
"type": "string"
},
"date_added": {
"type": "string"
},
"charts": {
"type": "array",
"items": { "$ref": "#/definitions/chart" },
"additionalItems": false
},
"jacket": {
"type": "string"
},
"folder": {
"type": "string"
},
"saHash": {
"type": "string"
},
"saIndex": {
"type": "string"
},
"remyLink": {
"type": "string"
}
},
"required": ["name", "artist", "bpm", "jacket", "charts"],
"additionalProperties": false
},
"additionalItems": false
}
},
"definitions": {
"chart": {
"type": "object",
"title": "Chart",
"additionalProperties": false,
"properties": {
"flags": { "$ref": "#/definitions/uniqueStringArr" },
"style": { "type": "string", "description": "e.g. single/double" },
"diffClass": {
"type": "string",
"description": "e.g. expert/challenge"
},
"lvl": {
"type": "number",
"description": "in-game numeric rating"
},
"sanbaiTier": {
"type": "number",
"description": "a more granular rating sourced from 3icecream, calculated based on community performance"
},
"drawGroup": {
"type": "number",
"description": "tournament-specific grouping of charts (e.g. tier)"
},
"step": {
"type": "number"
},
"shock": {
"type": "number"
},
"freeze": {
"type": "number"
},
"jacket": {
"type": "string"
},
"author": {
"type": "string"
},
"bpm": {
"type": "string",
"description": "per-chart BPM range, if one applies"
}
},
"required": ["lvl", "diffClass", "style"]
},
"uniqueStringArr": {
"type": "array",
"description": "An array of strings without any duplicate values",
"items": {
"type": "string"
},
"uniqueItems": true
},
"i18nDictRoot": {
"type": "object",
"title": "I18nDict",
"description": "Dictionary of localized strings",
"required": ["name", "$abbr"],
"additionalProperties": {
"oneOf": [
{ "type": "string" },
{ "$ref": "#/definitions/i18nDictBranch" }
]
}
},
"i18nDictBranch": {
"type": "object",
"additionalProperties": {
"oneOf": [
{ "type": "string" },
{ "$ref": "#/definitions/i18nDictBranch" }
]
}
}
}
}