Advance Auto Parts · Schema

Make

A vehicle manufacturer.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

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

JSON Schema

catalog-api-make-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Make",
  "description": "A vehicle manufacturer.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Make identifier.",
      "example": "FORD"
    },
    "name": {
      "type": "string",
      "description": "Make display name.",
      "example": "Ford"
    }
  }
}