From 550bec2e43a046a0a14d36e47f490faf6fb539ab Mon Sep 17 00:00:00 2001 From: SpaceAdmiral Date: Tue, 18 Apr 2023 08:21:56 -0700 Subject: [PATCH] update: add departureTime to ship nav route --- models/ShipNavRoute.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/models/ShipNavRoute.json b/models/ShipNavRoute.json index 2daf619..e35f5c5 100644 --- a/models/ShipNavRoute.json +++ b/models/ShipNavRoute.json @@ -8,6 +8,11 @@ "departure": { "$ref": "./ShipNavRouteWaypoint.json" }, + "departureTime": { + "type": "string", + "format": "date-time", + "description": "The date time of the ship's departure." + }, "arrival": { "type": "string", "format": "date-time", @@ -17,6 +22,7 @@ "required": [ "destination", "departure", + "departureTime", "arrival" ] } \ No newline at end of file