如果我列出了免费的在线产品,在构建价格时,是否建议使用“免费”字样,而不是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(似乎很明显),但我没有找到明确说明使用的参考。
答案 0 :(得分:10)
备选方案#2是搜索引擎抓取工具(如googlebot)执行的大多数语义分析的正确方法。换句话说,Google会理解第二种选择是免费的。