Vehicle API · JSON Structure

Vehicle Api Model Structure

Detailed vehicle model information

Type: object Properties: 5
AutomotiveCarsEdmundsPricingVehicles

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

Properties

id name niceName make years

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-model-structure.json",
  "name": "Model",
  "description": "Detailed vehicle model information",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Model identifier",
      "example": "Toyota_Camry"
    },
    "name": {
      "type": "string",
      "description": "Model display name",
      "example": "Camry"
    },
    "niceName": {
      "type": "string",
      "description": "URL-friendly model name",
      "example": "camry"
    },
    "make": {
      "$ref": "#/components/schemas/MakeSummary"
    },
    "years": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ModelYear"
      }
    }
  }
}