Advance Auto Parts · JSON Structure

Catalog Api Product Structure

An automotive part or product.

Type: object Properties: 8
AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Catalog Api Product Structure is a JSON Structure definition published by Advance Auto Parts, describing 8 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

id name partNumber brand description price available categoryId

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "product-structure.json",
  "title": "Product",
  "description": "An automotive part or product.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Product SKU."
    },
    "name": {
      "type": "string",
      "description": "Product name."
    },
    "partNumber": {
      "type": "string",
      "description": "Manufacturer part number."
    },
    "brand": {
      "type": "string",
      "description": "Brand name."
    },
    "description": {
      "type": "string",
      "description": "Product description."
    },
    "price": {
      "type": "float",
      "description": "Current retail price."
    },
    "available": {
      "type": "boolean",
      "description": "Whether available."
    },
    "categoryId": {
      "type": "string",
      "description": "Product category identifier."
    }
  }
}