Advance Auto Parts · Schema

VehicleModel

A vehicle model.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

Name Type Description
id string Model identifier.
name string Model display name.
View JSON Schema on GitHub

JSON Schema

catalog-api-vehiclemodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VehicleModel",
  "description": "A vehicle model.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Model identifier.",
      "example": "F150"
    },
    "name": {
      "type": "string",
      "description": "Model display name.",
      "example": "F-150"
    }
  }
}