Advance Auto Parts · Schema

ProductList

List of products matching search criteria.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

Name Type Description
products array Array of products.
total integer Total number of matching products.
View JSON Schema on GitHub

JSON Schema

catalog-api-productlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ProductList",
  "description": "List of products matching search criteria.",
  "type": "object",
  "properties": {
    "products": {
      "type": "array",
      "description": "Array of products.",
      "items": {
        "$ref": "#/$defs/Product"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of matching products.",
      "example": 42
    }
  }
}