| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Acquisition | Acquisition | CityModule | Nasdaq |
| (2) City | City | CityModule | Nasdaq |
| (3) Company | Company | CompanyModule | Nasdaq |
| (4) Country | Country | ExchangeModule | Nasdaq |
| (5) Exchange | Exchange | ExchangeModule | Nasdaq |
| (6) ExchangeVenue | ExchangeVenue | CityModule | Nasdaq |
| (7) TradingVolumeStat | TradingVolumeStat | CityModule | Nasdaq |
| Acquisition | CityModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) AcquirerCompany | INT | Acquisition | Company | CompanyModule |
| (2) AmountUsd | DOUBLE | Acquisition | ||
| (3) AnnouncementDate | DATE | Acquisition | ||
| (4) CloseDate | DATE | Acquisition | ||
| (5) Description | STRING | Acquisition | ||
| (6) TargetCompany | INT | Acquisition | Company | CompanyModule |
Example:
final Acquisition acquisition = (Acquisition) invokeModule(CITY_MODULE + "/acquisition/" + id, Acquisition.class);| City | CityModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) Country | INT | City | Country | ExchangeModule |
| (2) Name | STRING | City |
Example:
final City city = (City) invokeModule(CITY_MODULE + "/city/" + id, City.class);| ExchangeVenue | CityModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) City | INT | ExchangeVenue | City | CityModule |
| (2) Exchange | INT | ExchangeVenue | Exchange | ExchangeModule |
| (3) IsPrimary | BOOL | ExchangeVenue |
Example:
final ExchangeVenue exchangevenue = (ExchangeVenue) invokeModule(CITY_MODULE + "/exchangevenue/" + id, ExchangeVenue.class);| TradingVolumeStat | CityModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) AverageDailyTrades | LONG | TradingVolumeStat | ||
| (2) Exchange | INT | TradingVolumeStat | Exchange | ExchangeModule |
| (3) MarketSharePercent | DOUBLE | TradingVolumeStat | ||
| (4) Year | INT | TradingVolumeStat |
Example:
final TradingVolumeStat tradingvolumestat = (TradingVolumeStat) invokeModule(CITY_MODULE + "/tradingvolumestat/" + id, TradingVolumeStat.class);| Contact | Donate | Imprint |