Advance Auto Parts · Schema

MakeList

List of vehicle makes.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

Name Type Description
makes array Array of vehicle makes.
View JSON Schema on GitHub

JSON Schema

catalog-api-makelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MakeList",
  "description": "List of vehicle makes.",
  "type": "object",
  "properties": {
    "makes": {
      "type": "array",
      "description": "Array of vehicle makes.",
      "items": {
        "$ref": "#/$defs/Make"
      }
    }
  }
}