manhattan-associates · Schema
OutboundOrder
Properties
| Name | Type | Description |
|---|---|---|
| orderId | string | |
| externalOrderId | string | |
| facilityId | string | |
| status | string | |
| shipToAddress | object | |
| lines | array | |
| waveId | string | |
| carrier | string | |
| trackingNumber | string | |
| shippedAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OutboundOrder",
"title": "OutboundOrder",
"type": "object",
"properties": {
"orderId": {
"type": "string"
},
"externalOrderId": {
"type": "string"
},
"facilityId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"released",
"picking",
"packing",
"ready_to_ship",
"shipped"
]
},
"shipToAddress": {
"$ref": "#/components/schemas/ShipAddress"
},
"lines": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OutboundLine"
}
},
"waveId": {
"type": "string"
},
"carrier": {
"type": "string"
},
"trackingNumber": {
"type": "string"
},
"shippedAt": {
"type": "string",
"format": "date-time"
}
}
}