Created
January 3, 2020 21:54
-
-
Save OR13/db0287340c138113928e3d9358f7abd1 to your computer and use it in GitHub Desktop.
Exampe JSON-LD
This file contains hidden or 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": "http://schema.org", | |
"@type": "Person", | |
"name" : "Brent", | |
"makesOffer" : { | |
"@type" :"Offer", | |
"priceSpecification" : { | |
"@type" : "UnitPriceSpecification", | |
"priceCurrency" : "USD", | |
"price" : "18000" }, | |
"itemOffered" : { | |
"@type" : "Car", | |
"name" : "2009 Volkswagen Golf V GTI MY09 Direct-Shift Gearbox", | |
"description" : "2009 Volkswagen Golf V GTI MY09 Direct-Shift Gearbox in perfect mechanical condition and low kilometres. It's impressive 2.0 litre turbo engine makes every drive a fun experience. Well looked after by one owner with full service history. It drives like new and has only done 50,000kms. (...)", | |
"image" : "2009_Volkswagen_Golf_V_GTI_MY09.png", | |
"color" : "Black", | |
"numberOfForwardGears" : "6", | |
"vehicleEngine" : { | |
"@type": "EngineSpecification", | |
"name" : "4 cylinder Petrol Turbo Intercooled 2.0 L (1984 cc)" | |
} | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment