Skip to content

Instantly share code, notes, and snippets.

@OR13
Created January 3, 2020 21:54
Show Gist options
  • Save OR13/db0287340c138113928e3d9358f7abd1 to your computer and use it in GitHub Desktop.
Save OR13/db0287340c138113928e3d9358f7abd1 to your computer and use it in GitHub Desktop.
Exampe JSON-LD
<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