Mobile app version of vmapp.org
Login or Join
Welton855

: Schema.org snippet for thumbs up-down reviews I'm deep into the Schema.org meta-tags implementation for the reviews on my website and I'd love to know how do you think I should implement it

@Welton855

Posted in: #GoogleSearch #Microdata #Seo

I'm deep into the Schema.org meta-tags implementation for the reviews on my website and I'd love to know how do you think I should implement it when I have Positive-Negative reviews as opposed to star ratings. I couldn't find a site that had this with schema tags for reference. Fiverr used to have thumbs up/down, but recently changed to star rating.

On our services marketplace we allow users to review the providers they worked with and ask them for a positive-negative review - thumbs up/down with an additional open text area.

I thought about adding a schema.org meta-tags like this:

Lets assume one of our providers got two reviews, one is positive and the second is negative. So, first I thought about adding an aggregateReview meta-tag on top, just like this:

<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<meta itemprop="ratingValue"content="1" />
<meta itemprop="reviewCount" content="2" />
</div>


And also add a meta-tag for any review, like this:

<div itemprop="review" itemscope itemtype="http://schema.org/Review">
<span class="author-name">
<meta itemprop="datePublished" content="2014-02-02">
<span class="datePublished">Two days ago</span> by
<span itemprop="author">Kareem Abdul-Jabbar</span>
</span>

<div class="review-body" itemprop="reviewBody">
Joe is a great guy, I'd recommend him to my friends.
</div>
</div>


Does that make sense?

Has anyone had the chance to implement a schema.org meta tags for this kind of situation or familiar with a website who does it that way?

Thanks so much for your help!

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Welton855

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme