I have read http://schema.org/price (Microdata example) and I want to use on one of my page.
This is what is of interest to me, I want to show price/price-range
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<!--price is 1000, a number, with locale-specific thousands separator
and decimal mark, and the $ character is marked up with the
machine-readable code "USD" -->
<span itemprop="priceCurrency" content="USD">$</span><span
itemprop="price" content="1000.00">1,000.00</span>
<link itemprop="availability" href="http://schema.org/InStock" />In stock
</div>
Now my page is not showing any price until some options are selected on the page, however I do have a base price (minimum) which I want to use in this case.
How and where would be the correct place to inject this base price?
I tried this on https://search.google.com/structured-data/testing-tool and it works. Not sure if this the correct way?
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<meta itemprop="priceCurrency" content="USD" />
<meta itemprop="price" content="2.31" />
</div>
Please advice.