Trying to determine the correct syntax for using Microdata inside my breadcumbs implementation. Everything I have read seems to lean towards the fact that the breadcrumbs are structured inside an ordered or unorderd list. Mine is not.
<body itemscope="" itemtype="http://schema.org/WebPage">
...
<div class="breadcrumbs" itemprop="breadcrumb">
<a href="" property="v:url" property="v:title">Home</a>
<span class="delimiter"> > </span>
<a href="">Parent Item</a>
<span class="delimiter"> > </span>
<span>Child</span>
</div>
...
</body>
If I run it inside Google's tool it seems correct, but compared to their example it is missing a lot of elements and doesn't have the structure of their example BreadcrumbList
.
I'm also a little confused about the correct properties for the links. Should they all have title
and url
properties?
I was looking at the examples at the bottom of the page here: http://schema.org/WebPage