Created
October 16, 2019 15:04
-
-
Save warnakey/96cb135ee3119ccb1ecb56183ca31a01 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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