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">
    
    <div><span itemprop="???">4321</span> <span>€</span></div>
    
    <div><span itemprop="price">1234</span> <span>€</span></div>
  </div>
  
</div>
source
share