api-docs/models/ShipNavRouteWaypoint.json

32 lines
653 B
JSON
Raw Permalink Normal View History

2022-10-28 06:09:27 +02:00
{
"description": "The destination or departure of a ships nav route.",
"type": "object",
"properties": {
"symbol": {
"type": "string",
2023-06-09 22:50:36 +02:00
"minLength": 1,
"description": "The symbol of the waypoint."
2022-10-28 06:09:27 +02:00
},
"type": {
"$ref": "./WaypointType.json"
},
"systemSymbol": {
"$ref": "./SystemSymbol.json"
2022-10-28 06:09:27 +02:00
},
"x": {
2023-06-09 22:50:36 +02:00
"type": "integer",
"description": "Position in the universe in the x axis."
2022-10-28 06:09:27 +02:00
},
"y": {
2023-06-09 22:50:36 +02:00
"type": "integer",
"description": "Position in the universe in the y axis."
2022-10-28 06:09:27 +02:00
}
},
"required": [
"symbol",
"type",
"systemSymbol",
"x",
"y"
]
}