Vehicle API · Schema

Model

Detailed vehicle model information

AutomotiveCarsEdmundsPricingVehicles

Properties

Name Type Description
id string Model identifier
name string Model display name
niceName string URL-friendly model name
make object
years array
View JSON Schema on GitHub

JSON Schema

vehicle-api-model-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vehicle-api/refs/heads/main/json-schema/vehicle-api-model-schema.json",
  "title": "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"
      }
    }
  }
}