| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Company | Company | CompanyModule | Uber |
| (2) IndexMembership | IndexMembership | StockListingModule | Uber |
| (3) Promotion | Promotion | StockListingModule | Uber |
| (4) StockListing | StockListing | StockListingModule | Uber |
| (5) TripPromotion | TripPromotion | VehicleModule | Uber |
| IndexMembership | StockListingModule | Uber |
| Property | Type | Entity | Reference | Module |
| (1) EndDate | DATE | IndexMembership | ||
| (2) IndexName | STRING | IndexMembership | ||
| (3) StartDate | DATE | IndexMembership | ||
| (4) StockListing | LONG | IndexMembership | StockListing | StockListingModule |
Example:
final IndexMembership indexmembership = (IndexMembership) invokeModule(STOCK_LISTING_MODULE + "/indexmembership/" + id, IndexMembership.class);| Promotion | StockListingModule | Uber |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | Promotion | ||
| (2) Currency | STRING | Promotion | ||
| (3) Description | STRING | Promotion | ||
| (4) DiscountType | STRING | Promotion | ||
| (5) DiscountValue | DOUBLE | Promotion | ||
| (6) EndDate | DATE | Promotion | ||
| (7) MaxRedemptions | INT | Promotion | ||
| (8) StartDate | DATE | Promotion |
Example:
final Promotion promotion = (Promotion) invokeModule(STOCK_LISTING_MODULE + "/promotion/" + id, Promotion.class);| StockListing | StockListingModule | Uber |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | StockListing | Company | CompanyModule |
| (2) DelistingDate | DATE | StockListing | ||
| (3) Exchange | STRING | StockListing | ||
| (4) ListingDate | DATE | StockListing | ||
| (5) Notes | STRING | StockListing | ||
| (6) Ticker | STRING | StockListing |
Example:
final StockListing stocklisting = (StockListing) invokeModule(STOCK_LISTING_MODULE + "/stocklisting/" + id, StockListing.class);| Contact | Donate | Imprint |