20 Ways To Make $5000+ From Home. Earn Now!

Table of Content

The Ultimate Guide To Add JSON-LD Review Schema Markup

how to add review star schema.org rich snippets recipe markup in google search to boost SEO for bloggers and website & verify on Structured Data testing tool to fix errors.
The Ultimate Guide To Add JSON-LD Review Schema In Website

What's JSON-LD

Primarily based on the favoured JSON format, the linked information format JSON-LD permits site owners to outline the context of the info contained by way of using sorts and properties. When mixed with Schema.org, these properties comply with a standardized mark-up supported by leading search engines like google and yahoo and joins Microdata & RDFa as strategies for integration. In contrast to Microdata & JSON-LD. Nevertheless, as elegant and light-weight that JSON-LD is, there are some potential highway blocks. In some situations, it's simply not sensible to mark-up content material, for instance, that on a bigger scale, because the content material would have to be successfully repeated inside the script tags to validate. Additionally, because the mark-up is invisible, the chance of marking up content material that's not on the seen web page will increase, which is in opposition to search engine utilization pointers. It's for these causes that Google correctly nonetheless favours Microdata & RDFa for marking up HTML content material.

What's Schema.org?

Schema.org is a universally supported vocabulary extension by Google, Microsoft and Yahoo! for mark-up languages resembling Microdata. It's designed to make the lives of site owners simpler, by providing one standardized mark-up understood by all the foremost search engines like google. At the moment, Schema.org is appropriate with Microdata, RDFa and JSON-LD.

Why use mark-up?

Marking up content material in your website can:
  • Result in the technology of rich snippets in search engine outcomes.
  • This has the potential to reinforce CTR from the search outcomes from anyplace between 5-20%.
  • Search engines like google and organizations are utilizing this mark-up to develop new tools, for instance, Google Recipe Search, which can open up different advertising channels if not now, within the close to future.
  • Present higher info to search engines like google and yahoo to enhance their understanding of the content material in your web site.

Markup Features

Item type and Description
http://www.schema.org/AggregateRating - The average rating based on multiple ratings or reviews.
http://www.schema.org/Review - A review of an item, e.g. product or movie.
http://www.schema.org/Rating - An individual rating given for an item.
How to add review Json-ld star rating Schema in blogger
# Please copy the below code and paste it below <b:includable id='post' var='post'> 
Example:
<b:includable id='post' var='post'>
<script type='application/ld+json'>
  <-- content -->
</script>
<-- bloggersstand.com -->

Final code:
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Product",
  "name": "[the name of the product]",
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "[rating]",
    "reviewCount": "[number of reviews]"
  },
  "review": [{
    "@type": "Review",
    "name": "[review title/summary]",
    "author": "[name of reviewer]",
    "datePublished": "[date in ISO format e.g. 2020-04-25]",
    "description": "[description or post snippet]",
    "reviewRating": {
      "@type": "Rating",
      "bestRating": "[5]",
      "ratingValue": "[4]",
      "worstRating": "[1]"
    } 
  }]
}
</script>

Result:
How to add star ratings schema in blogger post

How to add Offers in Product with rich snippets schema

Item type & Description
http://www.schema.org/Product - Describes a product on sale.
http://www.schema.org/Offer - Describes products offer details.
http://www.schema.org/AggregateRating - The average rating based on multiple ratings or reviews.

#Please copy the below code and paste it below as mentioned in the above step. Others, please add above </head>
    <script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Product",
  "name": "[ the product name]",
  "offers": {
    "@type": "Offer",
    "price": "[product price]",
    "priceCurrency": "[currency in 3 letters i.e INR]"
  },
    "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "[5]",
    "reviewCount": "[10]"
  }
 }
 </script>
 If you only want to add review JSON-LD Schema, then please below copy and paste.
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Review",
  "itemReviewed": "[The item being reviewed]",
  "reviewRating": {
    "@type": "Rating",
    "bestRating": "[5]",
    "worstRating": "[1]",
    "ratingValue": "[4]"
  },
  "datePublished": "[date in ISO format e.g. 2020-04-25]",
  "author": "[author name]"
}
</script>
Customization: 
  • You can change Best rating, worst rating and rating value.
  • Add product name 
  • Add no. of reviews given

Post a Comment