api-docs/models/ShipNavRoute.json
2022-12-07 22:41:33 -08:00

24 lines
583 B
JSON

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