{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExpectedArrival", "title": "ExpectedArrival", "type": "object", "properties": { "MMSI": { "type": "string" }, "VESSEL_NAME": { "type": "string" }, "SHIP_ID": { "type": "integer" }, "PORT_ID": { "type": "integer" }, "PORT_NAME": { "type": "string" }, "EXPECTED_ARRIVAL": { "type": "string", "format": "date-time" }, "CURRENT_LAT": { "type": "number" }, "CURRENT_LON": { "type": "number" }, "DISTANCE_REMAINING": { "type": "number", "description": "Distance to port in nautical miles" } } }