How do I set up AggregateRating
when the object is not rated yet (ratingValue
= 0)?
My current setup is:
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<meta itemprop="ratingValue" content="0" />
<meta itemprop="bestRating" content="5" />
<meta itemprop="worstRating" content="1" />
<div itemprop="ratingCount">0</div>
</div>
When I check the Microdata with the Google Testing Tool I get an error "Failed to standardize the rating value". Do I just have to set worstRating
to 0? Or is there an other way to tell that there’s no rating yet?