我必须为商店网站构建结构化数据,但这个商店不仅位于一个地方,它有大约5个子公司,所以我不确定是否必须创建多个{{1}项类型或创建Store
并在里面定义多个子公司。
这是我只为一家商店所拥有的:
Organization
我应该为每个<div itemscope itemtype="http://schema.org/Store">
<div>
<h3 itemprop="name">Store 1</h3>
</div>
<address itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">1234 Fake St</span>,
<span itemprop="addressLocality">Locality</span>,
<span itemprop="addressRegion">Region</span>, <span itemprop="addressCountry">Country</span>
</address>
<a itemprop="map" content="http://www.google.com" href="http://www.google.com">map</a>
<div>
<p><time itemprop="openingHours" datetime="Mo-Su 10:00-21:00">Every day 10am-21pm </time></p>
<p>Tel. <span itemprop="telephone" content="+1111111111">(1) 1111111 11</span></p>
</div>
</div>
重复上述内容吗?或者我需要将Store
包裹在Store
?
答案 0 :(得分:1)
我在这里找到答案:Using itemprop="branchOf" from schema.org Microdata to refer to LocalBusiness's parent company
因此,我必须使用Organization
声明id
,然后使用itemref
属性。