Properties
| Name | Type | Description |
|---|---|---|
| SchedulingAgreementType | string | |
| SalesOrganization | string | |
| DistributionChannel | string | |
| OrganizationDivision | string | |
| SoldToParty | string | |
| SchedulingAgreementDate | string | |
| SchAgrmtValidityStartDate | string | |
| SchAgrmtValidityEndDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SchAgrmtHeaderCreate",
"title": "SchAgrmtHeaderCreate",
"type": "object",
"required": [
"SchedulingAgreementType",
"SalesOrganization",
"DistributionChannel",
"OrganizationDivision"
],
"properties": {
"SchedulingAgreementType": {
"type": "string",
"maxLength": 4
},
"SalesOrganization": {
"type": "string",
"maxLength": 4
},
"DistributionChannel": {
"type": "string",
"maxLength": 2
},
"OrganizationDivision": {
"type": "string",
"maxLength": 2
},
"SoldToParty": {
"type": "string",
"maxLength": 10
},
"SchedulingAgreementDate": {
"type": "string",
"format": "date"
},
"SchAgrmtValidityStartDate": {
"type": "string",
"format": "date"
},
"SchAgrmtValidityEndDate": {
"type": "string",
"format": "date"
}
}
}