我爲第三方銷售的產品設置了一些Microdata。我有產品的位置(因爲買家可能想要實物撿起它)和賣家的用戶名。但所有其他信息都是產品特定的。您如何在Schema.org中指定「產品」的位置?
是否有正確的方法來指定產品位於特定位置,還是應該將其包含在內而不用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>