{ "$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-inventory-list-schema.json", "title": "InventoryList", "description": "Paginated list of inventory items.", "type": "object", "properties": { "total": { "type": "integer", "description": "Total number of inventory items.", "example": 15 }, "items": { "type": "array", "description": "List of inventory items.", "items": { "$ref": "#/components/schemas/InventoryItem" } } } }