Skip to content

Instantly share code, notes, and snippets.

@roypatira
Created July 3, 2019 18:42
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 roypatira/cd9ddb0bcfaa16ede77a5d8b934f4ec2 to your computer and use it in GitHub Desktop.
Save roypatira/cd9ddb0bcfaa16ede77a5d8b934f4ec2 to your computer and use it in GitHub Desktop.
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Product",
"name" : "PENCIL",
"image" : "https://example.com/pencil1.jpg",
"description" : "(Description about your product.)",
"url" : "https://example.com/pencil/",
"brand" : {
"@type" : "Brand",
"name" : "(Your Brand Name)",
"logo" : "https://example.com/logo.png"
},
"offers" : {
"@type" : "Offer",
"url": "https://example.com/pencil",
"priceCurrency": "USD",
"price" : "25.00",
"availability": "https://schema.org/InStock",
},
"aggregateRating" : {
"@type" : "AggregateRating",
"ratingValue" : "4.4",
"ratingCount" : "51"
},
"review" : {
"@type" : "Review",
"author" : {
"@type" : "Person",
"name" : "Roy"
},
"datePublished" : "2019-05-05",
"reviewRating" : {
"@type" : "Rating",
"ratingValue" : "4.8",
"bestRating" : "5"
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment