Skip to content

Instantly share code, notes, and snippets.

@HoussenMoshine
Created May 6, 2017 07:45
Show Gist options
  • Save HoussenMoshine/ad98eecb5cfd8aa8e3fe3640080f29e6 to your computer and use it in GitHub Desktop.
Save HoussenMoshine/ad98eecb5cfd8aa8e3fe3640080f29e6 to your computer and use it in GitHub Desktop.
Exemple de la balise Product avec Offer de Schema.org
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Product",
"name": "BLU Life Max",
"image": "https://lh3.googleusercontent.com/-I3RTZun4W4c/WFn5zGrmKsI/AAAAAAAAJnM/leLCccREdW4/BLU-Life-Max-1_thumb%25255B1%25255D.jpg?imgmax=800",
"description": "Le BLU Life Max possède des caractéristiques moyennes avec un prix de 119 dollars, mais la batterie est imposante avec 3700 mAh.",
"brand": {
"@type": "Thing",
"name": "BLU Products"
},
"offers": {
"@type": "Offer",
"priceCurrency": "USD",
"price": "119",
"priceValidUntil": "2020-12-28",
"availability": "http://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Amazon"
}
}
}
</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