Kim Hogeling
Kim Hogeling

Reputation: 661

schema.org markup for a product with two prices: normal price and reduced price

I can't find the itemprops for a product with two prices on schema.org.

The types of prices are:

  1. an old price
  2. a new reduced price

I can't imagine, that there is not fitting schema.org markup for this, but after a long search, I couldn't find the solution for this anywhere.

Example 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>

Upvotes: 8

Views: 4776

Answers (1)

C3roe
C3roe

Reputation: 96316

Maybe give two prices, and use validFrom/validThrough on them …?

http://schema.org/PriceSpecification

Upvotes: 1

Related Questions