mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
update: add orbits property to Waypoint and SystemWaypoint
This commit is contained in:
parent
6ac8e2ea8f
commit
ba72f7853c
@ -16,11 +16,11 @@
|
||||
},
|
||||
"x": {
|
||||
"type": "integer",
|
||||
"description": "Position in the universe in the x axis."
|
||||
"description": "Relative position of the system in the sector in the x axis."
|
||||
},
|
||||
"y": {
|
||||
"type": "integer",
|
||||
"description": "Position in the universe in the y axis."
|
||||
"description": "Relative position of the system in the sector in the y axis."
|
||||
},
|
||||
"waypoints": {
|
||||
"type": "array",
|
||||
|
@ -10,17 +10,30 @@
|
||||
},
|
||||
"x": {
|
||||
"type": "integer",
|
||||
"description": "Position in the universe in the x axis."
|
||||
"description": "Relative position of the waypoint on the system's x axis. This is not an absolute position in the universe."
|
||||
},
|
||||
"y": {
|
||||
"type": "integer",
|
||||
"description": "Position in the universe in the y axis."
|
||||
"description": "Relative position of the waypoint on the system's y axis. This is not an absolute position in the universe."
|
||||
},
|
||||
"orbitals": {
|
||||
"type": "array",
|
||||
"description": "Waypoints that orbit this waypoint.",
|
||||
"items": {
|
||||
"$ref": "./WaypointOrbital.json"
|
||||
}
|
||||
},
|
||||
"orbits": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"description": "The symbol of the parent waypoint, if this waypoint is in orbit around another waypoint. Otherwise this value is undefined."
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"symbol",
|
||||
"type",
|
||||
"x",
|
||||
"y"
|
||||
"y",
|
||||
"orbitals"
|
||||
]
|
||||
}
|
@ -17,11 +17,11 @@
|
||||
},
|
||||
"x": {
|
||||
"type": "integer",
|
||||
"description": "Position in the universe in the x axis."
|
||||
"description": "Relative position of the waypoint on the system's x axis. This is not an absolute position in the universe."
|
||||
},
|
||||
"y": {
|
||||
"type": "integer",
|
||||
"description": "Position in the universe in the Y axis."
|
||||
"description": "Relative position of the waypoint on the system's y axis. This is not an absolute position in the universe."
|
||||
},
|
||||
"orbitals": {
|
||||
"type": "array",
|
||||
@ -30,6 +30,11 @@
|
||||
"$ref": "./WaypointOrbital.json"
|
||||
}
|
||||
},
|
||||
"orbits": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"description": "The symbol of the parent waypoint, if this waypoint is in orbit around another waypoint. Otherwise this value is undefined."
|
||||
},
|
||||
"faction": {
|
||||
"$ref": "./WaypointFaction.json"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user