ShipmentConfirmRequest

Properties

Name Type Description
carrier string
trackingNumber string
shippedAt string
weight number
weightUom string
View JSON Schema on GitHub

JSON Schema

manhattan-associates-shipmentconfirmrequest-schema.json Raw ↑
{
  "$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"
    }
  }
}