Properties
| Name | Type | Description |
|---|---|---|
| MMSI | string | |
| VESSEL_NAME | string | |
| SHIP_ID | integer | |
| PORT_ID | integer | |
| PORT_NAME | string | |
| EXPECTED_ARRIVAL | string | |
| CURRENT_LAT | number | |
| CURRENT_LON | number | |
| DISTANCE_REMAINING | number | Distance to port in nautical miles |
JSON Schema
{
"$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"
}
}
}