manhattan-associates · Schema
OrderUpdateRequest
Properties
| Name | Type | Description |
|---|---|---|
| shippingAddress | object | |
| requiredDeliveryDate | string | |
| addLines | array | |
| removeLineIds | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OrderUpdateRequest",
"title": "OrderUpdateRequest",
"type": "object",
"properties": {
"shippingAddress": {
"$ref": "#/components/schemas/Address"
},
"requiredDeliveryDate": {
"type": "string",
"format": "date"
},
"addLines": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrderLineRequest"
}
},
"removeLineIds": {
"type": "array",
"items": {
"type": "string"
}
}
}
}