I'm creating Microdata for an organisation and was wondering about the correct way to add multiple phone numbers to a site.
This are a few options I've got in mind:
1:
<ul itemprop="telephone">
<li><a href="tel:0123132123">Line 1 0123 132 123</a></li>
<li><a href="tel:0123546334">Line 2 0123 546 334</a></li>
<li><a href="tel:01233456">Line 3 01233456</a></li>
</ul>
2:
<ul>
<li><a href="tel:0123132123" itemprop="telephone"> Line 1 0123 132 123</a></li>
<li><a href="tel:0123546334" itemprop="telephone">Line 2 0123 546 334</a></li>
<li><a href="tel:01233456" itemprop="telephone">Line 3 01233456</a></li>
</ul>
3:
<ul>
<li><a href="tel:0123132123"> Line 1 <span itemprop="telephone">0123 132 123</span></a></li>
<li><a href="tel:0123546334">Line 2 <span itemprop="telephone">0123 546 334</span></a></li>
<li><a href="tel:01233456">Line 3 <span itemprop="telephone">01233456</span></a></li>
</ul>
Also, if the same number has been repeated on a page, will that cause an error even if they are under the same itemscope
?
Example:
<body itemscope itemtype="http://schema.org/Organization">
<span itemprop="telephone">01233456</span>
<!-- data -->
<!-- data -->
<span itemprop="telephone">01233456</span>
<!-- data -->
<!-- data -->
<span itemprop="telephone">01233456</span>
</body>