Commit ce58a78 1 parent c9f55af commit ce58a78 Copy full SHA for ce58a78
File tree 4 files changed +94
-99
lines changed
4 files changed +94
-99
lines changed Original file line number Diff line number Diff line change 12
12
],
13
13
"responses" : {
14
14
"200" : {
15
- "description" : " Success " ,
15
+ "description" : " OK " ,
16
16
"content" : {
17
17
"application/json" : {
18
18
"schema" : {
37
37
"maximum" : 2147483647 ,
38
38
"minimum" : 0 ,
39
39
"type" : " integer" ,
40
- "format" : " int32" ,
41
- "nullable" : true
40
+ "format" : " int32"
42
41
}
43
42
},
44
43
{
58
57
"maximum" : 2147483647 ,
59
58
"minimum" : 0 ,
60
59
"type" : " integer" ,
61
- "format" : " int32" ,
62
- "nullable" : true
60
+ "format" : " int32"
63
61
}
64
62
},
65
63
{
69
67
"maximum" : 2147483647 ,
70
68
"minimum" : 0 ,
71
69
"type" : " integer" ,
72
- "format" : " int32" ,
73
- "nullable" : true
70
+ "format" : " int32"
74
71
}
75
72
},
76
73
{
94
91
],
95
92
"responses" : {
96
93
"200" : {
97
- "description" : " Success " ,
94
+ "description" : " OK " ,
98
95
"content" : {
99
96
"application/json" : {
100
97
"schema" : {
118
115
"type" : " array" ,
119
116
"items" : {
120
117
"$ref" : " #/components/schemas/CatchScore"
121
- },
122
- "nullable" : true
118
+ }
123
119
}
124
120
}
125
121
}
126
122
},
127
123
"responses" : {
128
124
"200" : {
129
- "description" : " Success " ,
125
+ "description" : " OK " ,
130
126
"content" : {
131
127
"application/json" : {
132
128
"schema" : {
170
166
},
171
167
"additionalProperties" : false
172
168
},
173
- "CatchDifficulty " : {
169
+ "CatchCalculation " : {
174
170
"type" : " object" ,
175
171
"properties" : {
176
- "total" : {
172
+ "difficulty" : {
173
+ "$ref" : " #/components/schemas/CatchDifficulty"
174
+ },
175
+ "performance" : {
176
+ "$ref" : " #/components/schemas/CatchPerformance"
177
+ },
178
+ "accuracy" : {
179
+ "type" : " number" ,
180
+ "format" : " double"
181
+ },
182
+ "combo" : {
177
183
"type" : " number" ,
178
184
"format" : " double"
179
185
}
180
186
},
181
187
"additionalProperties" : false
182
188
},
183
- "CatchPerformance " : {
189
+ "CatchDifficulty " : {
184
190
"type" : " object" ,
185
191
"properties" : {
186
192
"total" : {
190
196
},
191
197
"additionalProperties" : false
192
198
},
193
- "CatchCalculation " : {
199
+ "CatchPerformance " : {
194
200
"type" : " object" ,
195
201
"properties" : {
196
- "difficulty" : {
197
- "$ref" : " #/components/schemas/CatchDifficulty"
198
- },
199
- "performance" : {
200
- "$ref" : " #/components/schemas/CatchPerformance"
201
- },
202
- "accuracy" : {
203
- "type" : " number" ,
204
- "format" : " double"
205
- },
206
- "combo" : {
202
+ "total" : {
207
203
"type" : " number" ,
208
204
"format" : " double"
209
205
}
217
213
"type" : " object" ,
218
214
"properties" : {
219
215
"beatmapId" : {
216
+ "minLength" : 1 ,
220
217
"type" : " string"
221
218
},
222
219
"mods" : {
Original file line number Diff line number Diff line change 12
12
],
13
13
"responses" : {
14
14
"200" : {
15
- "description" : " Success " ,
15
+ "description" : " OK " ,
16
16
"content" : {
17
17
"application/json" : {
18
18
"schema" : {
101
101
],
102
102
"responses" : {
103
103
"200" : {
104
- "description" : " Success " ,
104
+ "description" : " OK " ,
105
105
"content" : {
106
106
"application/json" : {
107
107
"schema" : {
125
125
"type" : " array" ,
126
126
"items" : {
127
127
"$ref" : " #/components/schemas/ManiaScore"
128
- },
129
- "nullable" : true
128
+ }
130
129
}
131
130
}
132
131
}
133
132
},
134
133
"responses" : {
135
134
"200" : {
136
- "description" : " Success " ,
135
+ "description" : " OK " ,
137
136
"content" : {
138
137
"application/json" : {
139
138
"schema" : {
177
176
},
178
177
"additionalProperties" : false
179
178
},
180
- "ManiaDifficulty " : {
179
+ "ManiaCalculation " : {
181
180
"type" : " object" ,
182
181
"properties" : {
183
- "total" : {
182
+ "difficulty" : {
183
+ "$ref" : " #/components/schemas/ManiaDifficulty"
184
+ },
185
+ "performance" : {
186
+ "$ref" : " #/components/schemas/ManiaPerformance"
187
+ },
188
+ "accuracy" : {
184
189
"type" : " number" ,
185
190
"format" : " double"
186
191
}
187
192
},
188
193
"additionalProperties" : false
189
194
},
190
- "ManiaPerformance " : {
195
+ "ManiaDifficulty " : {
191
196
"type" : " object" ,
192
197
"properties" : {
193
198
"total" : {
194
199
"type" : " number" ,
195
200
"format" : " double"
196
- },
197
- "difficulty" : {
198
- "type" : " number" ,
199
- "format" : " double"
200
201
}
201
202
},
202
203
"additionalProperties" : false
203
204
},
204
- "ManiaCalculation " : {
205
+ "ManiaPerformance " : {
205
206
"type" : " object" ,
206
207
"properties" : {
207
- "difficulty" : {
208
- "$ref" : " #/components/schemas/ManiaDifficulty"
209
- },
210
- "performance" : {
211
- "$ref" : " #/components/schemas/ManiaPerformance"
208
+ "total" : {
209
+ "type" : " number" ,
210
+ "format" : " double"
212
211
},
213
- "accuracy " : {
212
+ "difficulty " : {
214
213
"type" : " number" ,
215
214
"format" : " double"
216
215
}
224
223
"type" : " object" ,
225
224
"properties" : {
226
225
"beatmapId" : {
226
+ "minLength" : 1 ,
227
227
"type" : " string"
228
228
},
229
229
"mods" : {
Original file line number Diff line number Diff line change 12
12
],
13
13
"responses" : {
14
14
"200" : {
15
- "description" : " Success " ,
15
+ "description" : " OK " ,
16
16
"content" : {
17
17
"application/json" : {
18
18
"schema" : {
37
37
"maximum" : 2147483647 ,
38
38
"minimum" : 0 ,
39
39
"type" : " integer" ,
40
- "format" : " int32" ,
41
- "nullable" : true
40
+ "format" : " int32"
42
41
}
43
42
},
44
43
{
92
91
],
93
92
"responses" : {
94
93
"200" : {
95
- "description" : " Success " ,
94
+ "description" : " OK " ,
96
95
"content" : {
97
96
"application/json" : {
98
97
"schema" : {
116
115
"type" : " array" ,
117
116
"items" : {
118
117
"$ref" : " #/components/schemas/OsuScore"
119
- },
120
- "nullable" : true
118
+ }
121
119
}
122
120
}
123
121
}
124
122
},
125
123
"responses" : {
126
124
"200" : {
127
- "description" : " Success " ,
125
+ "description" : " OK " ,
128
126
"content" : {
129
127
"application/json" : {
130
128
"schema" : {
168
166
},
169
167
"additionalProperties" : false
170
168
},
171
- "OsuDifficulty " : {
169
+ "OsuCalculation " : {
172
170
"type" : " object" ,
173
171
"properties" : {
174
- "total" : {
175
- "type" : " number" ,
176
- "format" : " double"
172
+ "difficulty" : {
173
+ "$ref" : " #/components/schemas/OsuDifficulty"
177
174
},
178
- "aim" : {
179
- "type" : " number" ,
180
- "format" : " double"
175
+ "performance" : {
176
+ "$ref" : " #/components/schemas/OsuPerformance"
181
177
},
182
- "speed " : {
178
+ "accuracy " : {
183
179
"type" : " number" ,
184
180
"format" : " double"
185
181
},
186
- "flashlight " : {
182
+ "combo " : {
187
183
"type" : " number" ,
188
184
"format" : " double"
189
185
}
190
186
},
191
187
"additionalProperties" : false
192
188
},
193
- "OsuPerformance " : {
189
+ "OsuDifficulty " : {
194
190
"type" : " object" ,
195
191
"properties" : {
196
192
"total" : {
205
201
"type" : " number" ,
206
202
"format" : " double"
207
203
},
208
- "accuracy" : {
209
- "type" : " number" ,
210
- "format" : " double"
211
- },
212
204
"flashlight" : {
213
205
"type" : " number" ,
214
206
"format" : " double"
215
207
}
216
208
},
217
209
"additionalProperties" : false
218
210
},
219
- "OsuCalculation " : {
211
+ "OsuPerformance " : {
220
212
"type" : " object" ,
221
213
"properties" : {
222
- "difficulty" : {
223
- "$ref" : " #/components/schemas/OsuDifficulty"
214
+ "total" : {
215
+ "type" : " number" ,
216
+ "format" : " double"
224
217
},
225
- "performance" : {
226
- "$ref" : " #/components/schemas/OsuPerformance"
218
+ "aim" : {
219
+ "type" : " number" ,
220
+ "format" : " double"
221
+ },
222
+ "speed" : {
223
+ "type" : " number" ,
224
+ "format" : " double"
227
225
},
228
226
"accuracy" : {
229
227
"type" : " number" ,
230
228
"format" : " double"
231
229
},
232
- "combo " : {
230
+ "flashlight " : {
233
231
"type" : " number" ,
234
232
"format" : " double"
235
233
}
243
241
"type" : " object" ,
244
242
"properties" : {
245
243
"beatmapId" : {
244
+ "minLength" : 1 ,
246
245
"type" : " string"
247
246
},
248
247
"mods" : {
You can’t perform that action at this time.
0 commit comments