| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AdBlockDetectionEvent | AdBlockDetectionEvent | AircraftModule | FlightRadar |
| (2) AdImpression | AdImpression | AdvertisementModule | FlightRadar |
| (3) Alert | Alert | FlightModule | FlightRadar |
| (4) FilterPreset | FilterPreset | WeatherLayerModule | FlightRadar |
| (5) MapViewFilterPreset | MapViewFilterPreset | WeatherLayerModule | FlightRadar |
| (6) MapViewSession | MapViewSession | UserAccountModule | FlightRadar |
| (7) MapViewWeatherLayer | MapViewWeatherLayer | UserAccountModule | FlightRadar |
| (8) Receiver | Receiver | ReceiverModule | FlightRadar |
| (9) SubscriptionPlan | SubscriptionPlan | AdvertisementModule | FlightRadar |
| (10) UserAccount | UserAccount | UserAccountModule | FlightRadar |
| (11) UserSetting | UserSetting | UserAccountModule | FlightRadar |
| (12) UserSubscription | UserSubscription | UserAccountModule | FlightRadar |
| (13) WeatherLayer | WeatherLayer | WeatherLayerModule | FlightRadar |
| MapViewSession | UserAccountModule | FlightRadar |
| Property | Type | Entity | Reference | Module |
| (1) CenterLatitude | DOUBLE | MapViewSession | ||
| (2) CenterLongitude | DOUBLE | MapViewSession | ||
| (3) ClientDevice | STRING | MapViewSession | ||
| (4) ClientIp | STRING | MapViewSession | ||
| (5) EndedAtUtc | DATE | MapViewSession | ||
| (6) StartedAtUtc | DATE | MapViewSession | ||
| (7) UserAccount | INT | MapViewSession | UserAccount | UserAccountModule |
| (8) ZoomLevel | INT | MapViewSession |
Example:
final MapViewSession mapviewsession = (MapViewSession) invokeModule(USER_ACCOUNT_MODULE + "/mapviewsession/" + id, MapViewSession.class);| MapViewWeatherLayer | UserAccountModule | FlightRadar |
| Property | Type | Entity | Reference | Module |
| (1) MapViewSession | INT | MapViewWeatherLayer | MapViewSession | UserAccountModule |
| (2) Visible | BOOL | MapViewWeatherLayer | ||
| (3) WeatherLayer | INT | MapViewWeatherLayer | WeatherLayer | WeatherLayerModule |
Example:
final MapViewWeatherLayer mapviewweatherlayer = (MapViewWeatherLayer) invokeModule(USER_ACCOUNT_MODULE + "/mapviewweatherlayer/" + id, MapViewWeatherLayer.class);| UserAccount | UserAccountModule | FlightRadar |
| Property | Type | Entity | Reference | Module |
| (1) Country | STRING | UserAccount | ||
| (2) CreatedAtUtc | DATE | UserAccount | ||
| (3) DisplayName | STRING | UserAccount | ||
| (4) Email | STRING | UserAccount | ||
| (5) IsAdmin | BOOL | UserAccount | ||
| (6) LastLoginAtUtc | DATE | UserAccount | ||
| (7) PasswordHash | STRING | UserAccount | ||
| (8) SubscriptionPlan | INT | UserAccount |
Example:
final UserAccount useraccount = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + id, UserAccount.class);| UserSetting | UserAccountModule | FlightRadar |
| Property | Type | Entity | Reference | Module |
| (1) UserAccount | INT | UserSetting | UserAccount | UserAccountModule |
| (2) UserKey | STRING | UserSetting | ||
| (3) UserValue | STRING | UserSetting |
Example:
final UserSetting usersetting = (UserSetting) invokeModule(USER_ACCOUNT_MODULE + "/usersetting/" + id, UserSetting.class);| UserSubscription | UserAccountModule | FlightRadar |
| Property | Type | Entity | Reference | Module |
| (1) AutoRenew | BOOL | UserSubscription | ||
| (2) EndDateUtc | DATE | UserSubscription | ||
| (3) StartDateUtc | DATE | UserSubscription | ||
| (4) Status | STRING | UserSubscription | ||
| (5) SubscriptionPlan | INT | UserSubscription | SubscriptionPlan | AdvertisementModule |
| (6) UserAccount | INT | UserSubscription | UserAccount | UserAccountModule |
Example:
final UserSubscription usersubscription = (UserSubscription) invokeModule(USER_ACCOUNT_MODULE + "/usersubscription/" + id, UserSubscription.class);| Contact | Donate | Imprint |