OrderList

Paginated list of orders.

SteelManufacturingAutomotiveConstructionEnergySupply ChainFortune 500

Properties

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

JSON Schema

steeltrack-order-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-order-list-schema.json",
  "title": "OrderList",
  "description": "Paginated list of orders.",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of matching orders.",
      "example": 25
    },
    "orders": {
      "type": "array",
      "description": "List of order records.",
      "items": {
        "$ref": "#/components/schemas/Order"
      }
    }
  }
}