【发布时间】:2015-11-28 00:07:55
【问题描述】:
我正在使用基于批量购买报价的定价结构的产品。例如,一个产品的定价可能如下:
Buy 10-19 and the value of 1 is $3
Buy 20-29 and the value of 1 is $2
Buy 30-39 and the value of 1 is $1
Buy 40 or more and the value of 1 is $0.50
Minimum quantity available to purchase is 10.
如何在结构化数据(微数据格式)中正确标记?
目前我有:
<span itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="priceCurrency" content="USD"/>
<meta itemprop="price" content="3" />
<span itemprop="eligibleQuantity" itemscope itemtype="http://schema.org/QuantitativeValue">
<meta itemprop="minValue" content="10" />
<meta itemprop="maxValue" content="19" />
<meta itemprop="value" content="Number" />
</span>
</span>
对于每个变体。然后我有:
<span itemprop="priceSpecification">
<span itemprop="eligibleQuantity" itemscope itemtype="http://schema.org/QuantitativeValue">
<meta itemprop="minValue" content="10" />
</span>
</span>
在产品块本身上,注明最少10个。
我真的不相信这是正确的结构和标签。有人可以提供一些见解吗?
【问题讨论】:
标签: schema.org microdata