Skip to content

Commit 6e33a6d

Browse files
authoredFeb 11, 2025
Add UUID in ranks for town & nation docs (#25)
* Added UUID to ranks * Added UUID to ranks
1 parent 1c72d74 commit 6e33a6d

File tree

2 files changed

+22
-9
lines changed

2 files changed

+22
-9
lines changed
 

‎docs/nations.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,16 @@ Example **POST** response
161161
}
162162
],
163163
"sanctioned": [], // A JSON array representing all the town's this nation has sanctioned, empty if the nation has sanctioned no towns
164-
"ranks": { // Arrays of everyone in every rank in the nation, ranks with no players are empty
164+
"ranks": {
165165
"Chancellor": [
166-
"Fruitloopins",
167-
"tuzzzie"
166+
{
167+
"name": "tuzzzie",
168+
"uuid": "8391474f-4b57-412a-a835-96bd2c253219"
169+
}
168170
],
169171
"Colonist": [],
170172
"Diplomat": []
171173
}
172174
}
173175
]
174-
```
176+
```

‎docs/towns.md

+16-5
Original file line numberDiff line numberDiff line change
@@ -274,13 +274,24 @@ Example **POST** response
274274
"02cad4e4-00fc-4f8e-a3fb-9d9981f25ae1",
275275
"ff737a85-24c6-4abf-a656-c2c01a4ebe70"
276276
],
277-
"ranks": { // Arrays of everyone in every rank in the town, ranks with no players are empty
277+
"ranks": {
278278
"Councillor": [
279-
"Fruitloopins",
280-
"tuzzzie"
279+
{
280+
"name": "tuzzzie",
281+
"uuid": "8391474f-4b57-412a-a835-96bd2c253219"
282+
}
281283
],
282284
"Builder": [],
283-
"Recruiter": [],
285+
"Recruiter": [
286+
{
287+
"name": "Golden_Horizon",
288+
"uuid": "1fd49c80-8ab7-4adf-a3b9-879932bddca8"
289+
},
290+
{
291+
"name": "SkidgeV",
292+
"uuid": "9dfbd591-d86d-44a2-9eb4-22deaa88656e"
293+
}
294+
],
284295
"Police": [],
285296
"Tax-exempt": [],
286297
"Treasurer": [],
@@ -289,4 +300,4 @@ Example **POST** response
289300
}
290301
}
291302
]
292-
```
303+
```

0 commit comments

Comments
 (0)
Please sign in to comment.