I'm trying to show my customers where the nearest CivilStructure
is (e.g. railway station or airport) to a particular Product
sold by an Organsization
.
Here is an example of what I mean
<div itemscope itemtype="http://schema.org/Product">
<h1 itemprop="name"> Name of product </h1>
<p itemprop="brand" itemscope itemtype="http://schema.org/Organization"> Name of company selling product </p>
<ul itemscope itemtype="http://schema.org/CivicStructure">
<li itemprop="name">Name of railway station</li>
</ul>
</div>
Product
has a property of brand which can then be used to provide information on an Organization
selling that product. However, I can't find an itemprop
property within Product
or Organization
to link a CivilStructure
to the Organization
. Its basically a related location but I'm struggling to understand how to mark it up correctly. Any suggestions please?