| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Country | Country | ExchangeModule | Nasdaq |
| (2) Exchange | Exchange | ExchangeModule | Nasdaq |
| (3) Inspection | Inspection | ExchangeModule | Nasdaq |
| (4) LegalAction | LegalAction | RegulatorModule | Nasdaq |
| (5) Listing | Listing | ListingModule | Nasdaq |
| (6) MarketMaker | MarketMaker | RegulatorModule | Nasdaq |
| (7) MarketMakerQuotePermission | MarketMakerQuotePermission | QuoteLevelModule | Nasdaq |
| (8) Regulator | Regulator | RegulatorModule | Nasdaq |
| (9) Security | Security | RegulatorModule | Nasdaq |
| LegalAction | RegulatorModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) ActionDate | DATE | LegalAction | ||
| (2) ActionType | STRING | LegalAction | ||
| (3) Description | STRING | LegalAction | ||
| (4) Exchange | INT | LegalAction | Exchange | ExchangeModule |
| (5) Regulator | INT | LegalAction | Regulator | RegulatorModule |
Example:
final LegalAction legalaction = (LegalAction) invokeModule(REGULATOR_MODULE + "/legalaction/" + id, LegalAction.class);| MarketMaker | RegulatorModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) Country | INT | MarketMaker | Country | ExchangeModule |
| (2) IsNasdaqMember | BOOL | MarketMaker | ||
| (3) Name | STRING | MarketMaker | ||
| (4) Regulator | INT | MarketMaker | Regulator | RegulatorModule |
Example:
final MarketMaker marketmaker = (MarketMaker) invokeModule(REGULATOR_MODULE + "/marketmaker/" + id, MarketMaker.class);| Regulator | RegulatorModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) Country | INT | Regulator | Country | ExchangeModule |
| (2) Name | STRING | Regulator | ||
| (3) Type | STRING | Regulator | ||
| (4) Website | STRING | Regulator |
Example:
final Regulator regulator = (Regulator) invokeModule(REGULATOR_MODULE + "/regulator/" + id, Regulator.class);| Security | RegulatorModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) Currency | STRING | Security | ||
| (2) IsActive | BOOL | Security | ||
| (3) Listing | INT | Security | Listing | ListingModule |
| (4) SecurityType | STRING | Security |
Example:
final Security security = (Security) invokeModule(REGULATOR_MODULE + "/security/" + id, Security.class);| Contact | Donate | Imprint |