api-docs/models/ShipNavRoute.json
Daniele Corallo 533b5b76f4
Update ShipNavRoute.json
rmv "departure" in required fields
2024-05-29 08:26:30 +02:00

29 lines
720 B
JSON

{
"type": "object",
"description": "The routing information for the ship's most recent transit or current location.",
"properties": {
"destination": {
"$ref": "./ShipNavRouteWaypoint.json"
},
"origin": {
"$ref": "./ShipNavRouteWaypoint.json"
},
"departureTime": {
"type": "string",
"format": "date-time",
"description": "The date time of the ship's departure."
},
"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": [
"destination",
"origin",
"departureTime",
"arrival"
]
}