manhattan-associates · Schema
ShipmentConfirmRequest
Properties
| Name | Type | Description |
|---|---|---|
| carrier | string | |
| trackingNumber | string | |
| shippedAt | string | |
| weight | number | |
| weightUom | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ShipmentConfirmRequest",
"title": "ShipmentConfirmRequest",
"type": "object",
"required": [
"carrier",
"trackingNumber"
],
"properties": {
"carrier": {
"type": "string"
},
"trackingNumber": {
"type": "string"
},
"shippedAt": {
"type": "string",
"format": "date-time"
},
"weight": {
"type": "number"
},
"weightUom": {
"type": "string"
}
}
}