SAP Commerce Cloud · Schema
IntegrationProduct
B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Product code |
| name | string | Product name |
| description | string | Product description |
| catalogVersion | string | Catalog version reference |
| approvalStatus | string | Product approval status |
| ean | string | European Article Number |
| unit | string | Unit of measure |
| supercategories | array | Parent category references |
| integrationKey | string | Unique integration key |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IntegrationProduct",
"title": "IntegrationProduct",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Product code"
},
"name": {
"type": "string",
"description": "Product name"
},
"description": {
"type": "string",
"description": "Product description"
},
"catalogVersion": {
"type": "string",
"description": "Catalog version reference"
},
"approvalStatus": {
"type": "string",
"enum": [
"approved",
"unapproved",
"check"
],
"description": "Product approval status"
},
"ean": {
"type": "string",
"description": "European Article Number"
},
"unit": {
"type": "string",
"description": "Unit of measure"
},
"supercategories": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string"
}
}
},
"description": "Parent category references"
},
"integrationKey": {
"type": "string",
"description": "Unique integration key"
}
}
}