I have a table of villages within a city. I plan on adding schema.org microdata on each of these villages to specify their relation to their parent city. As I am just learning about microdata, I am a confused about how the property containedInPlace works in relation to Place, especially in a table will links. Will this syntax be semantically correct?:
<article itemscope itemtype='http://schema.org/Place'>
<h1><span itemprop='name'>San Andres</span></h1>
<table>
<thead>
<tr>
<th>Village name</th>
<th>Description</th>
<th>Other info</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a itemprop='containedInPlace' href='/santa-ana.html'>Santa Ana</a>
</td>
<td>Description</td>
<td>Other info</td>
</tr>
<tr>
<td>
<a itemprop='containedInPlace' href='/santiago.html'>Santiago</a>
</td>
<td>Description</td>
<td>Other info</td>
</tr>
</tbody>
</table>
</article>
Since itemscope itemtype='http://schema.org/Place'
was placed in the <article>
tag which contains the table, do the villages containing itemprop='containedInPlace'
relate now to the city San Andres
?