manhattan-associates · Schema
OrderLineRequest
Properties
| Name | Type | Description |
|---|---|---|
| externalLineId | string | |
| itemId | string | |
| sku | string | |
| quantity | number | |
| unitPrice | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OrderLineRequest",
"title": "OrderLineRequest",
"type": "object",
"required": [
"itemId",
"quantity"
],
"properties": {
"externalLineId": {
"type": "string"
},
"itemId": {
"type": "string"
},
"sku": {
"type": "string"
},
"quantity": {
"type": "number",
"minimum": 1
},
"unitPrice": {
"type": "number"
}
}
}