api-docs/models/ShipNav.json

28 lines
531 B
JSON
Raw Permalink Normal View History

2022-09-18 17:49:41 +02:00
{
"type": "object",
"description": "The navigation information of the ship.",
"properties": {
2022-12-05 18:54:01 +01:00
"systemSymbol": {
"$ref": "./SystemSymbol.json"
2022-12-05 18:54:01 +01:00
},
2022-10-22 18:05:01 +02:00
"waypointSymbol": {
"$ref": "./WaypointSymbol.json"
2022-10-22 18:05:01 +02:00
},
2022-09-18 17:49:41 +02:00
"route": {
"$ref": "./ShipNavRoute.json"
},
"status": {
"$ref": "./ShipNavStatus.json"
},
2022-12-19 06:39:25 +01:00
"flightMode": {
"$ref": "./ShipNavFlightMode.json"
2022-09-18 17:49:41 +02:00
}
},
"required": [
2022-12-05 18:54:01 +01:00
"systemSymbol",
2022-10-22 18:05:01 +02:00
"waypointSymbol",
2022-09-18 17:49:41 +02:00
"route",
"status",
2022-12-19 06:39:25 +01:00
"flightMode"
2022-09-18 17:49:41 +02:00
]
}