Vehicle Listing Schema (Retired) | SchemaCheck

Vehicle schema markup was used to enable car dealer listing rich results in Google Search — displaying vehicle make, model, year, price, and VIN in dedicated vehicle search experiences. Google retired Vehicle Listing rich results in 2025. Pages with Vehicle structured data no longer receive rich results. SchemaCheck validates Vehicle schemas with a deprecation warning. Car and Auto are recognized sub-types.

Google retired Vehicle Listing rich results in 2025. Validation returns a deprecation warning. Your markup will not generate rich results in Google Search.

Required Properties

PropertyTypeDescription
name
stringThe name of the vehicle (e.g. '2024 Honda Civic LX').
vehicleIdentificationNumber
stringThe 17-character Vehicle Identification Number (VIN).

Recommended Properties

Missing recommended properties generate warnings. They won't block validation, but rich result-tagged properties are needed for full Google rich result eligibility.

PropertyTypeDescription
description
stringA description of the vehicle.
image
URLAn image of the vehicle.
offers
OfferPrice and availability of the vehicle.
brand
BrandThe make/brand of the vehicle.
mileageFromOdometer
QuantitativeValueThe odometer reading.
vehicleConfiguration
stringTrim level or configuration.

Rich Result Eligibility

Rich result type: Retired — no longer generates rich results (as of 2025)

Requirements: Vehicle Listing rich results are retired. Validation passes with a deprecation warning. The structured data is still valid Schema.org.

Example valid Vehicle JSON-LD

{
  "@context": "https://schema.org",
  "@type": "Car",
  "name": "2024 Toyota Camry XSE",
  "vehicleIdentificationNumber": "4T1BZ1HK5MU123456",
  "description": "A sporty midsize sedan with V6 engine and panoramic sunroof.",
  "image": "https://example.com/images/camry-xse.jpg",
  "brand": {
    "@type": "Brand",
    "name": "Toyota"
  },
  "vehicleConfiguration": "XSE V6",
  "mileageFromOdometer": {
    "@type": "QuantitativeValue",
    "value": 0,
    "unitCode": "SMI"
  },
  "offers": {
    "@type": "Offer",
    "price": "34450",
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock"
  }
}

Validate via API

Validate this schema against Google's requirements in one API call:

curl "https://schemacheck.dev/api/v1/validate" \
  -H "x-api-key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonld":{"@context":"https://schema.org","@type":"Car","name":"2024 Toyota Camry XSE","vehicleIdentificationNumber":"4T1BZ1HK5MU123456","description":"A sporty midsize sedan with V6 engine and panoramic sunroof.","image":"https://example.com/images/camry-xse.jpg","brand":{"@type":"Brand","name":"Toyota"},"vehicleConfiguration":"XSE V6","mileageFromOdometer":{"@type":"QuantitativeValue","value":0,"unitCode":"SMI"},"offers":{"@type":"Offer","price":"34450","priceCurrency":"USD","availability":"https://schema.org/InStock"}}}'

Official Documentation

Google Structured Data: Vehicle

Validate your Vehicle schema now

100 free validations/month. No credit card required.