| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Customer | Customer | CustomerModule | AmazonCom |
| (2) Product | Product | ProductModule | AmazonCom |
| (3) ProductImage | ProductImage | WishlistModule | AmazonCom |
| (4) Wishlist | Wishlist | WishlistModule | AmazonCom |
| (5) WishlistItem | WishlistItem | WishlistModule | AmazonCom |
| ProductImage | WishlistModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) AltText | STRING | ProductImage | ||
| (2) CreatedAt | DATE | ProductImage | ||
| (3) IsMain | BOOL | ProductImage | ||
| (4) Product | LONG | ProductImage | Product | ProductModule |
| (5) SortOrder | LONG | ProductImage | ||
| (6) Url | STRING | ProductImage |
Example:
final ProductImage productimage = (ProductImage) invokeModule(WISHLIST_MODULE + "/productimage/" + id, ProductImage.class);| Wishlist | WishlistModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Wishlist | ||
| (2) Customer | LONG | Wishlist | Customer | CustomerModule |
| (3) IsPublic | BOOL | Wishlist | ||
| (4) Name | STRING | Wishlist | ||
| (5) UpdatedAt | DATE | Wishlist |
Example:
final Wishlist wishlist = (Wishlist) invokeModule(WISHLIST_MODULE + "/wishlist/" + id, Wishlist.class);| WishlistItem | WishlistModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | WishlistItem | ||
| (2) Product | LONG | WishlistItem | Product | ProductModule |
| (3) Wishlist | LONG | WishlistItem | Wishlist | WishlistModule |
Example:
final WishlistItem wishlistitem = (WishlistItem) invokeModule(WISHLIST_MODULE + "/wishlistitem/" + id, WishlistItem.class);| Contact | Donate | Imprint |