{ "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" ] }