I want to add microdata/rich-snippets to my website but the documentation is pretty unclear about some things, suppose i have this CONCEPTUAL code:
<div itemscope itemtype="http://schema.org/LocalBusiness">
<div itemprop="name">My Business</div>
<table itemscope itemtype="http://schema.org/PostalAddress">
<tr><td itemprop="telephone">0612345678</td></tr>
<tr><td itemprop="addressCountry">Netherlands</td></tr>
<-- other postalAdress properties -->
</table>
</div>
That table obviously holds all the contact properties (and is in a table for formatting reasons). The problem is, that table also holds a telephone number. Google microdata tester thinks that the "telephone" property belongs to PostalAddress, it must however belong to the LocalBusiness. How do i fix this?