United States Steel · JSON Structure

Steeltrack Shipment List Structure

Paginated list of shipments.

Type: object Properties: 2
SteelManufacturingAutomotiveConstructionEnergySupply ChainFortune 500

ShipmentList is a JSON Structure definition published by United States Steel, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

total shipments

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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