0
我正在使用基於批量購買優惠的定價結構的產品。例如,定價產品可能如下:複雜定價結構的結構化數據佈局
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
的最低數量。任何人都可以借鑑一些見解嗎?