api-docs/models/ShipNavRouteWaypoint.json

30 lines
482 B
JSON
Raw 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",
"minLength": 1
},
"type": {
"$ref": "./WaypointType.json"
},
"systemSymbol": {
"type": "string",
"minLength": 1
},
"x": {
"type": "integer"
},
"y": {
"type": "integer"
}
},
"required": [
"symbol",
"type",
"systemSymbol",
"x",
"y"
]
}