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": {
|
2023-06-11 03:02:06 +02:00
|
|
|
"$ref": "./SystemSymbol.json",
|
2022-12-05 18:54:01 +01:00
|
|
|
"description": "The system symbol of the ship's current location."
|
|
|
|
},
|
2022-10-22 18:05:01 +02:00
|
|
|
"waypointSymbol": {
|
2023-06-11 03:02:06 +02:00
|
|
|
"$ref": "./WaypointSymbol.json",
|
2022-10-22 18:05:01 +02:00
|
|
|
"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"
|
|
|
|
},
|
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
|
|
|
]
|
|
|
|
}
|