SAP Sales and Distribution (SD) · Schema
ProductCreate
Product creation payload
DistributionERPODataS/4HANASalesSAP
Properties
| Name | Type | Description |
|---|---|---|
| Product | string | |
| ProductType | string | |
| ProductGroup | string | |
| BaseUnit | string | |
| GrossWeight | string | |
| NetWeight | string | |
| WeightUnit | string | |
| Division | string | |
| to_Description | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProductCreate",
"title": "ProductCreate",
"type": "object",
"description": "Product creation payload",
"required": [
"Product",
"ProductType"
],
"properties": {
"Product": {
"type": "string",
"maxLength": 40
},
"ProductType": {
"type": "string",
"maxLength": 4
},
"ProductGroup": {
"type": "string",
"maxLength": 9
},
"BaseUnit": {
"type": "string",
"maxLength": 3
},
"GrossWeight": {
"type": "string"
},
"NetWeight": {
"type": "string"
},
"WeightUnit": {
"type": "string",
"maxLength": 3
},
"Division": {
"type": "string",
"maxLength": 2
},
"to_Description": {
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProductDescriptionCreate"
}
}
}
}
}
}