update: add departureTime to ship nav route

This commit is contained in:
SpaceAdmiral 2023-04-18 08:21:56 -07:00
parent 57845959c6
commit 550bec2e43

View File

@ -8,6 +8,11 @@
"departure": { "departure": {
"$ref": "./ShipNavRouteWaypoint.json" "$ref": "./ShipNavRouteWaypoint.json"
}, },
"departureTime": {
"type": "string",
"format": "date-time",
"description": "The date time of the ship's departure."
},
"arrival": { "arrival": {
"type": "string", "type": "string",
"format": "date-time", "format": "date-time",
@ -17,6 +22,7 @@
"required": [ "required": [
"destination", "destination",
"departure", "departure",
"departureTime",
"arrival" "arrival"
] ]
} }