Advance Auto Parts · Schema

ModelList

List of vehicle models.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

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

JSON Schema

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