Created
February 16, 2025 18:40
-
-
Save patrickcoombe/8996252955fb34b07481cb7b4b2b60bc to your computer and use it in GitHub Desktop.
JSON-LD Vehicle Listing Schema JSON-LD Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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