Last active
November 2, 2021 14:56
-
-
Save duanebester/86803798f94db68db84cec07047068d6 to your computer and use it in GitHub Desktop.
Example LD+JSON tag
This file contains 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
<script type="application/ld+json"> | |
{ | |
"@context":"https://schema.org/", | |
"@type":"product", | |
"brand":"Bellroy", | |
"image":[...], | |
"name":"Lite Daypack", | |
"offers":[ | |
{ | |
"@type":"offer", | |
"availability":"InStock", | |
"image":[...], | |
"price":99, | |
"priceCurrency":"USD", | |
"sku":"BLDA-CHK-225", | |
"name":"Lite Daypack - Chalk", | |
"gtin13":"9343783017379", | |
"url":"https://bellroy.com/products/lite-daypack/diamond_ripstop/chalk" | |
}, | |
{ | |
"@type":"offer", | |
"availability":"InStock", | |
"image":[...], | |
"price":99, | |
"priceCurrency":"USD", | |
"sku":"BLDA-SHW-225", | |
"name":"Lite Daypack - Shadow", | |
"gtin13":"9343783017386", | |
"url":"https://bellroy.com/products/lite-daypack/diamond_ripstop/shadow" | |
} | |
], | |
"sku":"BLDA-CHK-225", | |
"gtin13":"9343783017379" | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment