Skip to content

Instantly share code, notes, and snippets.

@warnakey
Created October 16, 2019 15:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warnakey/96cb135ee3119ccb1ecb56183ca31a01 to your computer and use it in GitHub Desktop.
Save warnakey/96cb135ee3119ccb1ecb56183ca31a01 to your computer and use it in GitHub Desktop.
<!-- This is for a single page that lists a group of products on it -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ItemList",
"url": "https://www.myexamplestore.com/products/",
"numberOfItems": "2",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "Product",
"image": "https://www.myexamplestore.com/product-one/image.jpg",
"url": "https://www.myexamplestore.com/products/#productone",
"name": "Product One",
"offers": {
"@type": "Offer",
"price": "13.00",
"priceCurrency": "USD",
"url": "https://www.myexamplestore.com/products/"
}
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "Product",
"image": "https://www.myexamplestore.com/product-two/image.jpg",
"url": "https://www.myexamplestore.com/products/#producttwo",
"name": "Product Two",
"offers": {
"@type": "Offer",
"price": "12.00",
"priceCurrency": "USD",
"url": "https://www.myexamplestore.com/products/"
}
}
}
]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment