api-docs/models/ShipNavRoute.json

29 lines
736 B
JSON
Raw Normal View History

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
},
"origin": {
2022-10-28 06:09:27 +02:00
"$ref": "./ShipNavRouteWaypoint.json"
2022-09-18 17:49:41 +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",
"origin",
"departureTime",
2022-09-18 17:49:41 +02:00
"arrival"
]
}