Re: Multiple Ratings in one Review

Greetings,

I am also wrestling with this topic and came into this thread from just over a year ago.  Searching through the list archive I was unable to find a resolution.  I've tried marking up ratings independently and adding the "name" property which might work as identifiers for the separate ratings.  This is accepted by parser at Google's Structured Data Testing Tool, but I don't know if its safe to use.  Has a best practice been established here?

thanks,

-Daniel


My Review fragment used in testing:

<div itemprop="review" itemscope itemtype="http://schema.org/Review">

  <span itemprop="name">This netbook is great!</a> Review by <span itemprop="author">alice</span>

  <strong>Quality</strong>
  <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
    <meta itemprop="name" content="quality"/>
    <meta itemprop="ratingValue" content="9"/>
    <meta itemprop="worstRating" content="0"/>
  </div>

  <strong>Price</strong>
  <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
    <meta itemprop="name" content="price"/>
    <meta itemprop="ratingValue" content="5"/>
    <meta itemprop="worstRating" content="0"/>
  </div>

  <strong>Value</strong>
  <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
    <meta itemprop="name" content="value"/>
    <meta itemprop="ratingValue" content="7"/>
    <meta itemprop="worstRating" content="0"/>
  </div>

    :
</div>

Received on Sunday, 24 February 2013 22:51:05 UTC