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.
| Property | Type | Description |
|---|---|---|
name | string | The name of the vehicle (e.g. '2024 Honda Civic LX'). |
vehicleIdentificationNumber | string | The 17-character Vehicle Identification Number (VIN). |
Missing recommended properties generate warnings. They won't block validation, but rich result-tagged properties are needed for full Google rich result eligibility.
| Property | Type | Description |
|---|---|---|
description | string | A description of the vehicle. |
image | URL | An image of the vehicle. |
offers | Offer | Price and availability of the vehicle. |
brand | Brand | The make/brand of the vehicle. |
mileageFromOdometer | QuantitativeValue | The odometer reading. |
vehicleConfiguration | string | Trim level or configuration. |
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.
{
"@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 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"}}}'100 free validations/month. No credit card required.