api-docs/models/ShipNav.json

25 lines
569 B
JSON
Raw Normal View History

2022-09-18 17:49:41 +02:00
{
"type": "object",
"description": "The navigation information of the ship.",
"properties": {
2022-10-22 18:05:01 +02:00
"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."
},
2022-09-18 17:49:41 +02:00
"route": {
"$ref": "./ShipNavRoute.json"
},
"status": {
"$ref": "./ShipNavStatus.json"
},
"speed": {
"$ref": "./ShipNavSpeed.json"
}
},
"required": [
2022-10-22 18:05:01 +02:00
"waypointSymbol",
2022-09-18 17:49:41 +02:00
"route",
"status",
"speed"
]
}