| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) BrowseEvent | BrowseEvent | ProductModule | AmazonCom |
| (2) Customer | Customer | CustomerModule | AmazonCom |
| (3) FulfillmentCenter | FulfillmentCenter | FulfillmentCenterModule | AmazonCom |
| (4) InventoryItem | InventoryItem | OfferModule | AmazonCom |
| (5) Offer | Offer | OfferModule | AmazonCom |
| (6) OrderItem | OrderItem | ReturnRequestModule | AmazonCom |
| (7) PriceHistory | PriceHistory | OfferModule | AmazonCom |
| (8) Product | Product | ProductModule | AmazonCom |
| (9) Seller | Seller | ProductModule | AmazonCom |
| (10) ShoppingCart | ShoppingCart | OfferModule | AmazonCom |
| (11) ShoppingCartItem | ShoppingCartItem | OfferModule | AmazonCom |
| InventoryItem | OfferModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) FulfillmentCenter | LONG | InventoryItem | FulfillmentCenter | FulfillmentCenterModule |
| (2) Offer | LONG | InventoryItem | Offer | OfferModule |
| (3) QuantityOnHand | LONG | InventoryItem | ||
| (4) QuantityReserved | LONG | InventoryItem | ||
| (5) UpdatedAt | DATE | InventoryItem |
Example:
final InventoryItem inventoryitem = (InventoryItem) invokeModule(OFFER_MODULE + "/inventoryitem/" + id, InventoryItem.class);| Offer | OfferModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) Condition | STRING | Offer | ||
| (2) CreatedAt | DATE | Offer | ||
| (3) Currency | STRING | Offer | ||
| (4) IsActive | BOOL | Offer | ||
| (5) IsPrimeEligible | BOOL | Offer | ||
| (6) Price | DOUBLE | Offer | ||
| (7) Product | LONG | Offer | Product | ProductModule |
| (8) Seller | LONG | Offer | Seller | ProductModule |
| (9) SkuSeller | STRING | Offer | ||
| (10) UpdatedAt | DATE | Offer |
Example:
final Offer offer = (Offer) invokeModule(OFFER_MODULE + "/offer/" + id, Offer.class);| PriceHistory | OfferModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) Currency | STRING | PriceHistory | ||
| (2) Offer | LONG | PriceHistory | Offer | OfferModule |
| (3) Price | DOUBLE | PriceHistory | ||
| (4) ValidFrom | DATE | PriceHistory | ||
| (5) ValidTo | DATE | PriceHistory |
Example:
final PriceHistory pricehistory = (PriceHistory) invokeModule(OFFER_MODULE + "/pricehistory/" + id, PriceHistory.class);| ShoppingCart | OfferModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | ShoppingCart | ||
| (2) Customer | LONG | ShoppingCart | Customer | CustomerModule |
| (3) UpdatedAt | DATE | ShoppingCart |
Example:
final ShoppingCart shoppingcart = (ShoppingCart) invokeModule(OFFER_MODULE + "/shoppingcart/" + id, ShoppingCart.class);| ShoppingCartItem | OfferModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | ShoppingCartItem | ||
| (2) Offer | LONG | ShoppingCartItem | Offer | OfferModule |
| (3) Quantity | LONG | ShoppingCartItem | ||
| (4) ShoppingCart | LONG | ShoppingCartItem | ShoppingCart | OfferModule |
Example:
final ShoppingCartItem shoppingcartitem = (ShoppingCartItem) invokeModule(OFFER_MODULE + "/shoppingcartitem/" + id, ShoppingCartItem.class);| Contact | Donate | Imprint |