for the following code:
<nav id="breadcrumbs-as-title" xmlns:v="http://rdf.data-vocabulary.org/#" >
<ul class="f1 my-levels-2" itemprop="breadcrumb" >
<li typeof="v:Breadcrumb" ><a href="url1.html" title="title 1" rel="v:url" property="v:title" >title 1</a></li>
<li typeof="v:Breadcrumb" ><a href="url2.html" title="title 2" rel="v:url" property="v:title" >title 2</a></li>
<li typeof="v:Breadcrumb" ><strong><span property="v:title" >title 3 (= the title of the current page)</span></strong></li>
</ul>
</nav>
I see the following error:
@type: Breadcrumb
title: title 3
url: A value for the url field is required.
because my last <li>
has no URL.
Should I mark the last <li>
as breadcrumb? or remove the mark, as the code in - Breadcrumb microdata help
Should I add 'dummy' item as suggested in How to markup the last non linking item in breadcrumbs list using JSON-LD ?