Advance Auto Parts · Schema

YearList

List of available vehicle model years.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

Name Type Description
years array Array of model years.
View JSON Schema on GitHub

JSON Schema

catalog-api-yearlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "YearList",
  "description": "List of available vehicle model years.",
  "type": "object",
  "properties": {
    "years": {
      "type": "array",
      "description": "Array of model years.",
      "items": {
        "type": "integer"
      }
    }
  }
}