我正在为第 3 方销售的产品设置一些微数据。我有产品的位置(因为买家可能想亲自去拿它)和卖家的用户名。但所有其他信息都是特定于产品的。
是否有正确的方法来指定产品位于特定位置,或者我应该只包含它而不用 Microdata 标记它?
到目前为止,这是我的代码:
<div itemscope itemtype="http://schema.org/Product">
<img itemprop="image" src="ad-image.jpg" />
<span itemprop="name">Name of item</span>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="priceCurrency" content="AUD" />
<span itemprop="price">$19.95</span>
<span itemprop="itemCondition" href="http://schema.org/NewCondition">New</span>
<span itemprop="model">2010</span>
<meta itemprop="availability" href="http://schema.org/InStock" />
</div>
<span itemprop="description">The description....</span>
</div>