Schema.org markup for a product with two prices: regular price and preferential price

I can not find itempropfor a product with two prices on schema.org.

Price Types:

  • old price
  • new discounted price

I cannot imagine that the schema.org markup is not suitable for this, but after a long search I could not find a solution for this anywhere.

HTML example:

<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>
+6
source share
1 answer

Perhaps give two prices and use validFrom/ validThroughon them ...?

http://schema.org/PriceSpecification

+1
source

All Articles