Vehicle API · JSON Structure

Vehicle Api Make Structure

Vehicle manufacturer make

Type: object Properties: 4
AutomotiveCarsEdmundsPricingVehicles

Make is a JSON Structure definition published by Vehicle API, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name niceName models

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vehicle-api/refs/heads/main/json-structure/vehicle-api-make-structure.json",
  "name": "Make",
  "description": "Vehicle manufacturer make",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Unique make ID",
      "example": 200001444
    },
    "name": {
      "type": "string",
      "description": "Make display name",
      "example": "Toyota"
    },
    "niceName": {
      "type": "string",
      "description": "URL-friendly make name (slug)",
      "example": "toyota"
    },
    "models": {
      "type": "array",
      "description": "Models for this make (in full view)",
      "items": {
        "$ref": "#/components/schemas/ModelSummary"
      }
    }
  }
}