Paginated list of orders.
{ "$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" } } } }