| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Company | Company | CompanyModule | |
| (2) Product | Product | ProductModule | |
| (3) ProductCategory | ProductCategory | ProductModule | |
| (4) ProductReview | ProductReview | ProductModule | |
| (5) SearchDirectoryEntry | SearchDirectoryEntry | ProductModule | |
| (6) UserAccount | UserAccount | UserAccountModule |
| Product | ProductModule |
| Property | Type | Entity | Reference | Module |
| (1) AverageRating | DOUBLE | Product | ||
| (2) Company | LONG | Product | Company | CompanyModule |
| (3) Description | STRING | Product | ||
| (4) Name | STRING | Product | ||
| (5) ProductCategory | LONG | Product | ProductCategory | ProductModule |
| (6) ReviewsCount | INT | Product | ||
| (7) Url | STRING | Product |
Example:
final Product product = (Product) invokeModule(PRODUCT_MODULE + "/product/" + id, Product.class);| ProductCategory | ProductModule |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | ProductCategory | ||
| (2) Name | STRING | ProductCategory | ||
| (3) ParentCategory | LONG | ProductCategory |
Example:
final ProductCategory productcategory = (ProductCategory) invokeModule(PRODUCT_MODULE + "/productcategory/" + id, ProductCategory.class);| ProductReview | ProductModule |
| Property | Type | Entity | Reference | Module |
| (1) Body | STRING | ProductReview | ||
| (2) CreatedAt | DATE | ProductReview | ||
| (3) IsVerifiedBuyer | BOOL | ProductReview | ||
| (4) Product | LONG | ProductReview | Product | ProductModule |
| (5) Rating | INT | ProductReview | ||
| (6) ReviewerUser | LONG | ProductReview | UserAccount | UserAccountModule |
| (7) Title | STRING | ProductReview |
Example:
final ProductReview productreview = (ProductReview) invokeModule(PRODUCT_MODULE + "/productreview/" + id, ProductReview.class);| SearchDirectoryEntry | ProductModule |
| Property | Type | Entity | Reference | Module |
| (1) Country | STRING | SearchDirectoryEntry | ||
| (2) DirectoryType | STRING | SearchDirectoryEntry | ||
| (3) Language | STRING | SearchDirectoryEntry | ||
| (4) ResourceType | STRING | SearchDirectoryEntry | ||
| (5) Title | STRING | SearchDirectoryEntry | ||
| (6) Url | STRING | SearchDirectoryEntry |
Example:
final SearchDirectoryEntry searchdirectoryentry = (SearchDirectoryEntry) invokeModule(PRODUCT_MODULE + "/searchdirectoryentry/" + id, SearchDirectoryEntry.class);| Contact | Donate | Imprint |