Advance Auto Parts · Schema

StoreInventory

Inventory at a specific store.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

Name Type Description
storeId string Store identifier.
storeName string Store name.
quantity integer Available quantity.
available boolean Whether in stock.
View JSON Schema on GitHub

JSON Schema

catalog-api-storeinventory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StoreInventory",
  "description": "Inventory at a specific store.",
  "type": "object",
  "properties": {
    "storeId": {
      "type": "string",
      "description": "Store identifier.",
      "example": "store-001"
    },
    "storeName": {
      "type": "string",
      "description": "Store name.",
      "example": "Advance Auto Parts - Main St"
    },
    "quantity": {
      "type": "integer",
      "description": "Available quantity.",
      "example": 4
    },
    "available": {
      "type": "boolean",
      "description": "Whether in stock.",
      "example": true
    }
  }
}