如何正确实施免费产品?

Fer*_*lli 9 schema.org

如果我列出了一个免费的在线产品,是否有建议的方法在构建其价格而不是0.00美元时使用"免费"这个词?

schema.org/Offer规范说价格的字符串表示必须是类型PriceSpecification,我不确定它的含义.

备选方案#1:

<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    <span itemprop="price">Free</span>
    <meta itemprop="priceCurrency" content="USD" />
</div>
Run Code Online (Sandbox Code Playgroud)

备选方案#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>
Run Code Online (Sandbox Code Playgroud)

我倾向于替代#1(似乎很明显),但我没有找到明确说明使用的参考.

小智 10

备选方案#2是搜索引擎抓取工具(如googlebot)执行的大多数语义分析的正确方法.换句话说,谷歌将理解第二种选择是免费的.