Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Created February 16, 2025 18:40
Show Gist options
  • Save patrickcoombe/8996252955fb34b07481cb7b4b2b60bc to your computer and use it in GitHub Desktop.
Save patrickcoombe/8996252955fb34b07481cb7b4b2b60bc to your computer and use it in GitHub Desktop.
JSON-LD Vehicle Listing Schema JSON-LD Example
<script type="application/ld+json">{
"@context": "https://schema.org",
"@type": "Car",
"name": "2009 Audi A6",
"vehicleIdentificationNumber": "JN8AZ2NE5C9016953",
"image": [
"https://example.com/car1.jpg",
"https://example.com/car1.jpg"
],
"url": "https://www.example.com/my-car-listing",
"offers": {
"@type": "Offer",
"availability": "https://schema.org/InStock",
"price": 80000,
"priceCurrency": "USD"
},
"itemCondition": "https://schema.org/NewCondition",
"brand": {
"@type": "Brand",
"name": "Audi"
},
"model": "A6",
"vehicleConfiguration": "SLI",
"vehicleModelDate": "2009",
"mileageFromOdometer": {
"@type": "QuantitativeValue",
"value": "000000",
"unitCode": "SMI"
},
"color": "White",
"vehicleInteriorColor": "Black",
"vehicleInteriorType": "Standard",
"bodyType": "Pickup",
"driveWheelConfiguration": "https://schema.org/FourWheelDriveConfiguration",
"vehicleEngine": {
"@type": "EngineSpecification",
"fuelType": "Gasoline"
},
"vehicleTransmission": "Manual",
"numberOfDoors": 4,
"vehicleSeatingCapacity": 4
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment