Reputation: 31
My Rich Snippets with Schema.org was working correctly for a long time already.
Now when I try a Product page at Google's Rich Snippets testing tool, I get the following error:
Incomplete microdata with schema.org.
Im not sure what I am missing, did Google make any change recently? I read the Google's Policy hundred of times but still no luck so far.
UPDATE
I make a page with minimum code for my markup, still in Google's Rich Snippets testing tool: Error: Incomplete microdata with schema.org.
Here my source code:
<div itemscope itemtype="http://schema.org/Product">
<span itemprop="name" id="product-name">ZTechnik Windscherm VStream</span>
<img itemprop="image" id="image" src="http://www.mlmparts.com/media/catalog/product/cache/1/image/325x325/9df78eab33525d08d6e5fb8d27136e95/v/s/vstream_4.jpg" alt="ZTechnik Windscherm VStream" title="ZTechnik Windscherm VStream" /></a>
<span itemprop="description"><p>Dit is de nieuwe norm op het gebied van design, technologie en comfort voor de touring rijder.</p></span>
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<meta itemprop="itemReviewed" style="display:none;" content="ZTechnik Windscherm VStream" />
<meta itemprop="ratingValue" style="display:none;" content="5" />
<span itemprop="reviewCount">1</span>
</div>
<div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
<meta itemprop="pricecurrency" content="EUR" />
<span itemprop="lowPrice">€ 119,00</span>
<span itemprop="highPrice">€ 399,00</span>
<link itemprop="availability" href="http://schema.org/InStock" />
</div>
<div itemprop="reviews" itemscope itemtype="http://schema.org/Review">
<div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating" style="display:none;">
<meta itemprop="worstRating" content = "1"/>
<span itemprop="ratingValue">5</span>
<span itemprop="bestRating">5</span>
</div>
<h3><span itemprop="name">Een prima scherm</span></h3>
<span itemprop="reviewbody">Het scherm is goed afgewerkt en heeft een uitstekende pasvorm.</span>
<strong><time itemprop="datepublished" datetime="202013-10-28">Posted on 28-10-2013</time> by <span itemprop="author">Ztechnik verhoogd scherm BMW F650CS</span></strong>
</div>
What am I missing?
Upvotes: 1
Views: 2985
Reputation: 31
My bad, I find the issue.
<strong><time itemprop="datepublished" datetime="202014-02-13">Posted on 13-02-2014</time> by <span itemprop="author">Tom</span></strong>
The year was malformed "202014", after fixing the year to "2014", everything works fine.
Thanks for your help
Upvotes: 2
Reputation: 23942
Try also other validator tools to fix possible problems:
They are all showing fatal errors with specific information about them (more verbose than Google). After fixing those, test it again with Google Richsnippets testing tool.
Upvotes: 0