project44 · Schema

ShipmentDetail

LogisticsSupply Chain VisibilityTrackingFreightMulti-modal
View JSON Schema on GitHub

JSON Schema

project44-shipmentdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShipmentDetail",
  "title": "ShipmentDetail",
  "allOf": [
    {
      "$ref": "#/components/schemas/Shipment"
    },
    {
      "type": "object",
      "properties": {
        "stops": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/ShipmentStop"
          }
        },
        "statusUpdates": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/StatusUpdate"
          }
        }
      }
    }
  ]
}