Mobile app version of vmapp.org
Login or Join
Kaufman445

: Schema.org 'reviewRating' not recognized by Google Rich Snippet Testing Tool I'm trying to add more structural information to my webpages by using the Microdata format with Schema.org. The procedure

@Kaufman445

Posted in: #GoogleRichSnippetsTool #SchemaOrg

I'm trying to add more structural information to my webpages by using the Microdata format with Schema.org. The procedure seems straight forward but I'm having issues validating my results in the Google Rich Snippets Testing Tool.

Check out this review page, here I'm using the reviewRating property item to specify rating values for that particular review. I followed the same format as defined in Rating but this markup fails validation in Google's Rich Snippet Testing Tool with the following error info:

Item
Type: schema.org/rating reviewrating = 5
ratingvalue = 5
Warning: Property "reviewrating" was not found.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Kaufman445

1 Comments

Sorted by latest first Latest Oldest Best

 

@Angela700

Ok, first of all you are not using the microformat suggested by schema.org. If you would, your markup code would look like this:

<span itemprop="reviews" itemscope itemtype="http://schema.org/Review" style="display:none;">
<div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<meta itemprop="worstRating" content="1">
<span itemprop="ratingValue">2</span>/
<span itemprop="bestRating">5</span>
</div>
<div class="miniratingbox" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<div class="miniratingvalue blue" itemprop="bestRating">5</div>
<div class="miniratingimg">★</div>
</div>


and instead of wrapping your complete "reviewContentWrapper" class with a wrong microdata format, you should specifically use the microdata where it belongs ... which in your case is totally unnecessary, since you already passed that information (with only two stars, see above) ...

<span class="rating-foreground" style="width:90%" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<meta itemprop="ratingValue" content="5">





</span>


Hope this helps!

For more information, please consult this page and read thoroughly: schema.org/Rating

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme