ShipmentList

Paginated list of shipments.

SteelManufacturingAutomotiveConstructionEnergySupply ChainFortune 500

Properties

Name Type Description
total integer Total number of matching shipments.
shipments array List of shipment records.
View JSON Schema on GitHub

JSON Schema

steeltrack-shipment-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/united-states-steel/refs/heads/main/json-schema/steeltrack-shipment-list-schema.json",
  "title": "ShipmentList",
  "description": "Paginated list of shipments.",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of matching shipments.",
      "example": 10
    },
    "shipments": {
      "type": "array",
      "description": "List of shipment records.",
      "items": {
        "$ref": "#/components/schemas/Shipment"
      }
    }
  }
}