api-docs/models/ShipNavRouteWaypoint.json
2022-12-07 22:41:45 -08:00

30 lines
482 B
JSON

{
"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"
]
}