InventoryList

Paginated list of inventory items.

SteelManufacturingAutomotiveConstructionEnergySupply ChainFortune 500

Properties

Name Type Description
total integer Total number of inventory items.
items array List of inventory items.
View JSON Schema on GitHub

JSON Schema

steeltrack-inventory-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-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"
      }
    }
  }
}