0

I can't for the life of me figure out how to structure microdata for a page that has a single review but multiple ratings so that google will correctly interpret it.

Here's some sample markup, which seems legal but google ignores the rating part:

    <div itemscope itemtype="http://data-vocabulary.org/Product">
  <span itemprop="name">Executive
    Anvil</span>
<span itemprop="review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate"><span itemprop="rating">4.4</span> stars, based on <span itemprop="count">89 </span> votes</span>
 <div itemscope itemtype="http://data-vocabulary.org/Review">
<span itemprop="itemreviewed">Executive
    Anvil</span>
    Reviewed by <span itemprop="reviewer">Ulysses Grant</span> on
    <time itemprop="dtreviewed" datetime="2009-01-06">Jan 6</time>.
    <span itemprop="summary">Delicious, tasty pizza in Eastlake!</span>
    <span itemprop="description">L'Amourita serves up traditional wood-fired Neapolitan-style pizza, 
      brought to your table promptly and without fuss. An ideal neighborhood pizza joint.</span>
  </div>
</div>
Jack James
  • 5,252
  • 6
  • 36
  • 38
  • possible duplicate of [How to approach schema.org microdata markup in an product offers aggregation page](http://stackoverflow.com/questions/10141179/how-to-approach-schema-org-microdata-markup-in-an-product-offers-aggregation-pag) – Paul Sweatte Dec 20 '13 at 18:37

1 Answers1

0

Never mind! It turns out I should be using schema.org.

Jack James
  • 5,252
  • 6
  • 36
  • 38