Skip to content

Instantly share code, notes, and snippets.

@duanebester
Last active November 2, 2021 14:56
Show Gist options
  • Save duanebester/86803798f94db68db84cec07047068d6 to your computer and use it in GitHub Desktop.
Save duanebester/86803798f94db68db84cec07047068d6 to your computer and use it in GitHub Desktop.
Example LD+JSON tag
<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