我无法itemprop
在schema.org上找到两种价格的产品.
价格类型是:
我无法想象,没有适合的schema.org标记,但经过长时间的搜索,我无法在任何地方找到解决方案.
示例HTML:
<div itemscope itemtype="http://schema.org/Product">
<!-- ... -->
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<!-- What should I use for the old price? -->
<div><span itemprop="???">4321</span> <span>€</span></div>
<!-- Should I use "price" for the new reduced price? -->
<div><span itemprop="price">1234</span> <span>€</span></div>
</div>
<!-- ... -->
</div>
Run Code Online (Sandbox Code Playgroud)