Vehicle API · JSON Structure

Vehicle Api Price Response Structure

TMV pricing response for a vehicle style

Type: object Properties: 3
AutomotiveCarsEdmundsPricingVehicles

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

Properties

styleId zip tmvPrice

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-price-response-structure.json",
  "name": "PriceResponse",
  "description": "TMV pricing response for a vehicle style",
  "type": "object",
  "properties": {
    "styleId": {
      "type": "int32",
      "example": 401890697
    },
    "zip": {
      "type": "string",
      "example": "90210"
    },
    "tmvPrice": {
      "$ref": "#/components/schemas/StylePrice"
    }
  }
}