| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Company | Company | CompanyModule | Nasdaq |
| (2) Exchange | Exchange | ExchangeModule | Nasdaq |
| (3) Index | Index | ListingModule | Nasdaq |
| (4) IndexConstituent | IndexConstituent | ListingModule | Nasdaq |
| (5) Listing | Listing | ListingModule | Nasdaq |
| (6) MarketTier | MarketTier | MarketTierModule | Nasdaq |
| (7) Security | Security | RegulatorModule | Nasdaq |
| (8) TradingSession | TradingSession | ListingModule | Nasdaq |
| Index | ListingModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | Index | ||
| (2) Description | STRING | Index | ||
| (3) Exchange | INT | Index | Exchange | ExchangeModule |
| (4) IsCapitalizationWeighted | BOOL | Index | ||
| (5) Name | STRING | Index |
Example:
final Index index = (Index) invokeModule(LISTING_MODULE + "/index/" + id, Index.class);| IndexConstituent | ListingModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) EffectiveFrom | DATE | IndexConstituent | ||
| (2) EffectiveTo | DATE | IndexConstituent | ||
| (3) Index | INT | IndexConstituent | Index | ListingModule |
| (4) Listing | INT | IndexConstituent | Listing | ListingModule |
| (5) WeightPercent | DOUBLE | IndexConstituent |
Example:
final IndexConstituent indexconstituent = (IndexConstituent) invokeModule(LISTING_MODULE + "/indexconstituent/" + id, IndexConstituent.class);| Listing | ListingModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) Company | INT | Listing | Company | CompanyModule |
| (2) Currency | STRING | Listing | ||
| (3) Exchange | INT | Listing | Exchange | ExchangeModule |
| (4) IsPrimary | BOOL | Listing | ||
| (5) ListingDate | DATE | Listing | ||
| (6) MarketTier | INT | Listing | MarketTier | MarketTierModule |
| (7) Status | STRING | Listing | ||
| (8) TickerSymbol | STRING | Listing |
Example:
final Listing listing = (Listing) invokeModule(LISTING_MODULE + "/listing/" + id, Listing.class);| TradingSession | ListingModule | Nasdaq |
| Property | Type | Entity | Reference | Module |
| (1) EndTimeLocal | STRING | TradingSession | ||
| (2) Exchange | INT | TradingSession | Exchange | ExchangeModule |
| (3) IsExtendedHours | BOOL | TradingSession | ||
| (4) Name | STRING | TradingSession | ||
| (5) SessionType | STRING | TradingSession | ||
| (6) StartTimeLocal | STRING | TradingSession | ||
| (7) TimeZone | STRING | TradingSession |
Example:
final TradingSession tradingsession = (TradingSession) invokeModule(LISTING_MODULE + "/tradingsession/" + id, TradingSession.class);| Contact | Donate | Imprint |