| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) AiCommerceIntegration | AiCommerceIntegration | ProductModule | Shopify |
| (2) AiPlatform | AiPlatform | SalesChannelModule | Shopify |
| (3) Company | Company | CompanyModule | Shopify |
| (4) MediaProduction | MediaProduction | ProductModule | Shopify |
| (5) Product | Product | ProductModule | Shopify |
| (6) ProductFeature | ProductFeature | ProductModule | Shopify |
| (7) ProductRebrand | ProductRebrand | ProductModule | Shopify |
| (8) ProductSalesChannelIntegration | ProductSalesChannelIntegration | SalesChannelModule | Shopify |
| AiCommerceIntegration | ProductModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) AiPlatform | LONG | AiCommerceIntegration | AiPlatform | SalesChannelModule |
| (2) IntegrationType | STRING | AiCommerceIntegration | ||
| (3) LaunchDate | DATE | AiCommerceIntegration | ||
| (4) Notes | STRING | AiCommerceIntegration | ||
| (5) Product | LONG | AiCommerceIntegration | Product | ProductModule |
Example:
final AiCommerceIntegration aicommerceintegration = (AiCommerceIntegration) invokeModule(PRODUCT_MODULE + "/aicommerceintegration/" + id, AiCommerceIntegration.class);| MediaProduction | ProductModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) MediaType | STRING | MediaProduction | ||
| (2) Product | LONG | MediaProduction | Product | ProductModule |
| (3) ReleaseDate | DATE | MediaProduction | ||
| (4) Title | STRING | MediaProduction |
Example:
final MediaProduction mediaproduction = (MediaProduction) invokeModule(PRODUCT_MODULE + "/mediaproduction/" + id, MediaProduction.class);| Product | ProductModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | Product | Company | CompanyModule |
| (2) Description | STRING | Product | ||
| (3) EndOfLifeDate | DATE | Product | ||
| (4) InitialLaunchDate | DATE | Product | ||
| (5) IsCorePlatform | BOOL | Product | ||
| (6) Name | STRING | Product | ||
| (7) ProductType | STRING | Product |
Example:
final Product product = (Product) invokeModule(PRODUCT_MODULE + "/product/" + id, Product.class);| ProductFeature | ProductModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) DeprecationDate | DATE | ProductFeature | ||
| (2) Description | STRING | ProductFeature | ||
| (3) LaunchDate | DATE | ProductFeature | ||
| (4) Name | STRING | ProductFeature | ||
| (5) Product | LONG | ProductFeature | Product | ProductModule |
Example:
final ProductFeature productfeature = (ProductFeature) invokeModule(PRODUCT_MODULE + "/productfeature/" + id, ProductFeature.class);| ProductRebrand | ProductModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) NewName | STRING | ProductRebrand | ||
| (2) Notes | STRING | ProductRebrand | ||
| (3) OldName | STRING | ProductRebrand | ||
| (4) Product | LONG | ProductRebrand | Product | ProductModule |
| (5) RebrandDate | DATE | ProductRebrand |
Example:
final ProductRebrand productrebrand = (ProductRebrand) invokeModule(PRODUCT_MODULE + "/productrebrand/" + id, ProductRebrand.class);| Contact | Donate | Imprint |