Skip to content

Instantly share code, notes, and snippets.

@HoussenMoshine
Created May 6, 2017 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HoussenMoshine/39e6b830b0504dccefb0410a67e01bd2 to your computer and use it in GitHub Desktop.
Save HoussenMoshine/39e6b830b0504dccefb0410a67e01bd2 to your computer and use it in GitHub Desktop.
Exemple de balise AggregateRating de Schema.org
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Product",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": "100",
"ratingCount": "24",
"ratingValue": "87"
},
"image": "dell-30in-lcd.jpg",
"name": "Dell UltraSharp 30\" LCD Monitor",
"offers": {
"@type": "AggregateOffer",
"priceCurrency": "USD",
"highPrice": "1495",
"lowPrice": "1250",
"offerCount": "8",
"offers": [
{
"@type": "Offer",
"url": "save-a-lot-monitors.com/dell-30.html"
},
{
"@type": "Offer",
"url": "jondoe-gadgets.com/dell-30.html"
}
]
}
}
</script>
@HoussenMoshine
Copy link
Author

Vous pouvez trouver un guide complet de Schema.org avec des exemples et conseils sur : https://housseniawriting.com/schema-org/guide-schema-org/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment