We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Vehicle listing pages with delivery/returns signals, reviews, FAQs, and breadcrumb context for dealerships.
Core vehicle entity with specs, condition, and offers.
Delivery/shipping details (for delivery or pickup) and costs.
Return/exchange policy for vehicles (if applicable).
Answer financing, delivery, warranty, and inspection questions.
Social proof for the dealership or vehicle.
Navigation context for the listing.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "Vehicle",
"@id": "https://www.example.com/vehicles/2024-sedan-123#vehicle",
"name": "2024 ACME Sedan Premium",
"description": "Certified pre-owned ACME Sedan with low mileage and advanced safety features.",
"url": "https://www.example.com/vehicles/2024-sedan-123",
"image": [
"https://www.example.com/images/2024-sedan-123-front.webp",
"https://www.example.com/images/2024-sedan-123-interior.webp"
],
"vehicleIdentificationNumber": "1HGBH41JXMN109186",
"brand": { "@type": "Brand", "name": "ACME" },
"model": "Sedan Premium",
"vehicleModelDate": "2024",
"mileageFromOdometer": {
"@type": "QuantitativeValue",
"value": 12500,
"unitCode": "SMI"
},
"color": "Blue",
"vehicleTransmission": "Automatic",
"bodyType": "Sedan",
"offers": {
"@type": "Offer",
"@id": "https://www.example.com/vehicles/2024-sedan-123#offer",
"price": "28990.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/UsedCondition",
"url": "https://www.example.com/vehicles/2024-sedan-123#purchase",
"shippingDetails": [
{
"@type": "OfferShippingDetails",
"shippingDestination": {
"@type": "DefinedRegion",
"addressCountry": "US"
},
"deliveryTime": {
"@type": "ShippingDeliveryTime",
"transitTime": {
"@type": "QuantitativeValue",
"minValue": 2,
"maxValue": 7,
"unitCode": "d"
}
},
"shippingRate": {
"@type": "MonetaryAmount",
"value": "499.00",
"currency": "USD"
}
}
],
"hasMerchantReturnPolicy": "https://www.example.com/returns#policy"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": 4.8,
"reviewCount": 64
}
},
{
"@context": "https://schema.org",
"@type": "MerchantReturnPolicy",
"@id": "https://www.example.com/returns#policy",
"name": "7-day exchange policy",
"url": "https://www.example.com/returns",
"returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnWindow",
"merchantReturnDays": 7,
"returnMethod": "https://schema.org/ReturnByMail",
"returnFees": "https://schema.org/RestockingFees",
"applicableCountry": "US",
"inStoreReturnsOffered": true
},
{
"@context": "https://schema.org",
"@type": "Review",
"@id": "https://www.example.com/reviews/vehicle-123#review",
"name": "Smooth process and great condition",
"reviewBody": "Vehicle matched the photos, easy financing, and quick delivery.",
"datePublished": "2026-02-12",
"reviewRating": {
"@type": "Rating",
"ratingValue": 5,
"bestRating": 5
},
"author": { "@type": "Person", "name": "Jordan M." },
"itemReviewed": { "@id": "https://www.example.com/vehicles/2024-sedan-123#vehicle" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do you deliver nationwide?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. We ship to all 48 contiguous US states. Delivery fees vary by region."
}
},
{
"@type": "Question",
"name": "Is financing available?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Pre-qualify online with no impact to credit. Financing options appear at checkout."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Vehicles", "item": "https://www.example.com/vehicles" },
{ "@type": "ListItem", "position": 3, "name": "2024 ACME Sedan Premium", "item": "https://www.example.com/vehicles/2024-sedan-123" }
]
}
]Yes. If you only offer pickup, omit shippingDetails and ensure the offer and page clearly state pickup terms.
Financing isn’t a schema field here. Keep finance options in visible content and link from FAQ answers.