Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

schema.org

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>
like image 325
Kim Hogeling Avatar asked Nov 28 '13 13:11

Kim Hogeling


People also ask

What is product schema markup?

What is Product schema markup? Product schema markup is basically code you can add to the backend of your website so that search engines can provide additional information about your products in search through enhanced features like rich results.

What is SEO schema markup?

What is a Schema Markup? Schema markup informs the search engine precisely what your content is trying to convey on your web page. It converts unstructured data into structured data. Adding schema will help the search engine crawl better, raising the websites ranking while keeping other best practives of SEO in mind.

What type of markup is schema?

There are 3 schema encoding types for schema markup: RDFa, Microdata, and JSON-LD.


1 Answers

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

http://schema.org/PriceSpecification

like image 54
CBroe Avatar answered Sep 29 '22 18:09

CBroe