Skip to content

Commit 792996d

Browse files
authored
Merge pull request #11035 from nanaya/score-docs
Add documentation for new score json
2 parents 1d9b60f + 3033898 commit 792996d

File tree

4 files changed

+56
-40
lines changed

4 files changed

+56
-40
lines changed

app/Http/Controllers/Multiplayer/Rooms/Playlist/ScoresController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function index($roomId, $playlistId)
104104
*
105105
* ### Response Format
106106
*
107-
* Returns [MultiplayerScore](#multiplayerscore) object.
107+
* Returns [Score](#score) object.
108108
*
109109
* @urlParam room integer required Id of the room.
110110
* @urlParam playlist integer required Id of the playlist item.
@@ -136,7 +136,7 @@ public function show($roomId, $playlistId, $id)
136136
*
137137
* ### Response Format
138138
*
139-
* Returns [MultiplayerScore](#multiplayerscore) object.
139+
* Returns [Score](#score) object.
140140
*
141141
* @urlParam room integer required Id of the room.
142142
* @urlParam playlist integer required Id of the playlist item.

resources/views/docs/_structures/multiplayer_score.md

-21
This file was deleted.

resources/views/docs/_structures/multiplayer_scores.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
An object which contains scores and related data for fetching next page of the result.
44

5-
Field | Type | Description
6-
--------------- | --------------------------------------- | -------------------------------------------------------------
7-
cursor_string | [CursorString](#cursorstring) | To be used to fetch the next page.
8-
params | object | Parameters used for score listing.
9-
scores | [MultiplayerScore](#multiplayerscore)[] | |
10-
total | integer? | Index only. Total scores of the specified playlist item.
11-
user_score | [MultiplayerScore](#multiplayerscore)? | Index only. Score of the accessing user if exists.
5+
Field | Type | Description
6+
------------- | ----------------------------- | -----------
7+
cursor_string | [CursorString](#cursorstring) | To be used to fetch the next page.
8+
params | object | Parameters used for score listing.
9+
scores | [Score](#score)[] | |
10+
total | integer? | Index only. Total scores of the specified playlist item.
11+
user_score | [Score](#score)? | Index only. Score of the accessing user if exists.

resources/views/docs/_structures/score.md

+47-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
## Score
22

3+
The following is the format returned when API v2 version header is 20220705 or higher. Exceptions apply (f.ex. doesn't apply for legacy match score).
4+
5+
Field | Type | Description
6+
------------------ | ------------------------ | -----------
7+
accuracy | float | |
8+
beatmap_id | integer | |
9+
best_id | integer? | |
10+
build_id | integer? | |
11+
ended_at | [Timestamp](#timestamp) | |
12+
has_replay | boolean | |
13+
id | integer | |
14+
is_perfect_combo | boolean | |
15+
legacy_perfect | boolean | |
16+
legacy_score_id | integer? | |
17+
legacy_total_score | integer | |
18+
max_combo | integer | |
19+
maximum_statistics | ScoreStatistics? | |
20+
mods | Mod[] | |
21+
passed | boolean | |
22+
playlist_item_id | integer | Only for multiplayer score
23+
pp | float? | |
24+
preserve | boolean | Whether or not the score may eventually be deleted. Only for `solo_score` type
25+
rank | string | |
26+
ranked | boolean | Whether or not the score can have pp. Only for `solo_score` type
27+
room_id | integer | Only for multiplayer score
28+
ruleset_id | integer | |
29+
started_at | [Timestamp](#timestamp)? | |
30+
statistics | ScoreStatistics | |
31+
total_score | integer | |
32+
type | string | |
33+
user_id | integer | |
34+
35+
### Initial version
36+
337
The following is the format returned when API v2 version header is 20220704 or lower.
438

539
Field | Type | Description
@@ -26,14 +60,17 @@ mode | | |
2660
mode_int | | |
2761
replay | | |
2862

29-
Optional attributes:
63+
### Optional attributes
3064

31-
Field | Type | Description
32-
------------ | ---- | -----------
33-
beatmap | | |
34-
beatmapset | | |
35-
rank_country | | |
36-
rank_global | | |
37-
weight | | |
38-
user | | |
39-
match | | |
65+
Field | Type | Description
66+
----------------------- | ---------------------------------------------------- | -----------
67+
beatmap | | |
68+
beatmapset | | |
69+
current_user_attributes | integer? | |
70+
match | | Only for legacy match score
71+
position | integer? | Only for multiplayer score
72+
rank_country | | |
73+
rank_global | | |
74+
scores_around | [MultiplayerScoresAround](#multiplayerscoresaround)? | Scores around the specified score. Only for multiplayer score
75+
user | | |
76+
weight | | |

0 commit comments

Comments
 (0)