Skip to content

Widgets - Structured Data Integration ​

Structured Data Guidelines ​

Ensure your own structured data does not have aggregateRating or review properties, as this will conflict with the structured data provided by our widgets. In order for your own structured data to be merged with the review data that our comment section widget provides, you must set an id to your data. You can set it to anything, but we recommend #product

Example for ld + json ​

json
<script type="application/ld+json">
{
  "@id": "#product",
  "@context": "http://schema.org",
  "@type": "Product",
  "name": "Product Name"
  ...

💡 Note:
For ld+json, add "@id": "#product"

Example for Microdata ​

Use the following structure:

html
<div itemscope="" itemtype="https://schema.org/Product" itemid="#product">
  <meta itemprop="name" content="Product name">
</div>