6
如果我列出了一個免費的在線產品,是否有建議的方式使用「免費」字樣來構建其價格而不是0.00美元?如何正確實施免費產品提供?
schema.org/Offer specification說價格的字符串表示形式必須是PriceSpecification
類型,我不確定它的含義。
替代#1:
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span itemprop="price">Free</span>
<meta itemprop="priceCurrency" content="USD" />
</div>
替代#2:
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span itemprop="description">Free</span>
<meta itemprop="price" content="0" />
<meta itemprop="priceCurrency" content="USD" />
</div>
我向替代#1傾斜(似乎是顯而易見的),但我已經沒有運氣找到明確指出使用的參考。
你能指出一個引用實現它這樣我可以檢查嗎? –
[此帖子](https://plus.google.com/106943062990152739506/posts/XKZBodXtTaH),例如 – lambda2