2022-09-18 17:49:41 +02:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"description": "The routing information for the ship's most recent transit or current location.",
|
|
|
|
"properties": {
|
2022-10-22 18:05:01 +02:00
|
|
|
"destination": {
|
2022-10-28 06:09:27 +02:00
|
|
|
"$ref": "./ShipNavRouteWaypoint.json"
|
2022-09-18 17:49:41 +02:00
|
|
|
},
|
2022-10-22 18:05:01 +02:00
|
|
|
"departure": {
|
2023-09-13 18:33:32 +02:00
|
|
|
"deprecated": true,
|
|
|
|
"description": "Deprecated. Use origin instead.",
|
|
|
|
"$ref": "./ShipNavRouteWaypoint.json"
|
|
|
|
},
|
|
|
|
"origin": {
|
2022-10-28 06:09:27 +02:00
|
|
|
"$ref": "./ShipNavRouteWaypoint.json"
|
2022-09-18 17:49:41 +02:00
|
|
|
},
|
2023-04-18 17:21:56 +02:00
|
|
|
"departureTime": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date-time",
|
|
|
|
"description": "The date time of the ship's departure."
|
|
|
|
},
|
2022-09-18 17:49:41 +02:00
|
|
|
"arrival": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date-time",
|
|
|
|
"description": "The date time of the ship's arrival. If the ship is in-transit, this is the expected time of arrival."
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
2022-10-22 18:05:01 +02:00
|
|
|
"destination",
|
|
|
|
"departure",
|
2023-09-13 18:33:32 +02:00
|
|
|
"origin",
|
2023-04-18 17:21:56 +02:00
|
|
|
"departureTime",
|
2022-09-18 17:49:41 +02:00
|
|
|
"arrival"
|
|
|
|
]
|
|
|
|
}
|