| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AlertEvent | AlertEvent | PortModule | MarineTraffic |
| (2) AlertRule | AlertRule | PortModule | MarineTraffic |
| (3) Country | Country | UserAccountModule | MarineTraffic |
| (4) GeographicalArea | GeographicalArea | GeographicalAreaModule | MarineTraffic |
| (5) Notification | Notification | FleetModule | MarineTraffic |
| (6) Port | Port | PortModule | MarineTraffic |
| (7) PortCall | PortCall | SubscriptionPlanModule | MarineTraffic |
| (8) PositionReport | PositionReport | VesselModule | MarineTraffic |
| (9) Route | Route | PortModule | MarineTraffic |
| (10) RouteWaypoint | RouteWaypoint | SubscriptionPlanModule | MarineTraffic |
| (11) UserAccount | UserAccount | UserAccountModule | MarineTraffic |
| (12) Vessel | Vessel | VesselModule | MarineTraffic |
| AlertEvent | PortModule | MarineTraffic |
| Property | Type | Entity | Reference | Module |
| (1) AlertRule | LONG | AlertEvent | AlertRule | PortModule |
| (2) EventDescription | STRING | AlertEvent | ||
| (3) GeographicalArea | LONG | AlertEvent | GeographicalArea | GeographicalAreaModule |
| (4) Port | LONG | AlertEvent | Port | PortModule |
| (5) PositionReport | LONG | AlertEvent | PositionReport | VesselModule |
| (6) TriggeredUtc | DATE | AlertEvent | ||
| (7) Vessel | LONG | AlertEvent | Vessel | VesselModule |
Example:
final AlertEvent alertevent = (AlertEvent) invokeModule(PORT_MODULE + "/alertevent/" + id, AlertEvent.class);| AlertRule | PortModule | MarineTraffic |
| Property | Type | Entity | Reference | Module |
| (1) AlertType | STRING | AlertRule | ||
| (2) CreatedUtc | DATE | AlertRule | ||
| (3) Description | STRING | AlertRule | ||
| (4) GeographicalArea | LONG | AlertRule | GeographicalArea | GeographicalAreaModule |
| (5) IsActive | BOOL | AlertRule | ||
| (6) Name | STRING | AlertRule | ||
| (7) Port | LONG | AlertRule | Port | PortModule |
| (8) ThresholdSpeed | STRING | AlertRule | ||
| (9) UserAccount | LONG | AlertRule | UserAccount | UserAccountModule |
| (10) Vessel | LONG | AlertRule | Vessel | VesselModule |
Example:
final AlertRule alertrule = (AlertRule) invokeModule(PORT_MODULE + "/alertrule/" + id, AlertRule.class);| Port | PortModule | MarineTraffic |
| Property | Type | Entity | Reference | Module |
| (1) Country | LONG | Port | Country | UserAccountModule |
| (2) Latitude | STRING | Port | ||
| (3) Longitude | STRING | Port | ||
| (4) Name | STRING | Port | ||
| (5) PortType | STRING | Port | ||
| (6) TimeZone | STRING | Port | ||
| (7) Unlocode | STRING | Port |
Example:
final Port port = (Port) invokeModule(PORT_MODULE + "/port/" + id, Port.class);| Route | PortModule | MarineTraffic |
| Property | Type | Entity | Reference | Module |
| (1) ActualArrivalUtc | DATE | Route | ||
| (2) ActualDepartureUtc | DATE | Route | ||
| (3) DistanceNm | STRING | Route | ||
| (4) EndPort | LONG | Route | Port | PortModule |
| (5) Name | STRING | Route | ||
| (6) PlannedArrivalUtc | DATE | Route | ||
| (7) PlannedDepartureUtc | DATE | Route | ||
| (8) StartPort | LONG | Route | Port | PortModule |
| (9) Status | STRING | Route | ||
| (10) Vessel | LONG | Route | Vessel | VesselModule |
Example:
final Route route = (Route) invokeModule(PORT_MODULE + "/route/" + id, Route.class);| Contact | Donate | Imprint |