api-docs/models/ShipNav.json
2022-12-07 22:41:33 -08:00

25 lines
569 B
JSON

{
"type": "object",
"description": "The navigation information of the ship.",
"properties": {
"waypointSymbol": {
"type": "string",
"description": "The waypoint symbol of the ship's current location, or if the ship is in-transit, the waypoint symbol of the ship's destination."
},
"route": {
"$ref": "./ShipNavRoute.json"
},
"status": {
"$ref": "./ShipNavStatus.json"
},
"speed": {
"$ref": "./ShipNavSpeed.json"
}
},
"required": [
"waypointSymbol",
"route",
"status",
"speed"
]
}