api-docs/models/SystemWaypoint.json
SpaceAdmiral 7d108a7d9d
Merge pull request #61 from arihant2math/main
waypoint and system symbol mocks
2023-12-05 08:35:46 -08:00

39 lines
1.0 KiB
JSON

{
"type": "object",
"properties": {
"symbol": {
"$ref": "./WaypointSymbol.json",
"description": "The symbol of the waypoint."
},
"type": {
"$ref": "./WaypointType.json"
},
"x": {
"type": "integer",
"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": "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",
"orbitals"
]
}