api-docs/models/ShipNavRoute.json
SpaceAdmiral 7c187219fb update: add origin to ship nav route;
deprecation: ship nav departure renaming to origin;
2023-09-13 09:33:32 -07:00

34 lines
888 B
JSON

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