I want to specify if the Product is In Stock using HTML5 Microdata's <meta tag using schema.org. I am unsure if this is the correct syntax:

<div itemscope itemtype="http://schema.org/Product">
<h2 itemprop="name">Product Name</h2>
<dl itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<dt itemprop="price">$1</dt>
<meta itemprop="availability" itemscope itemtype="http://schema.org/ItemAvailability" itemid="http://schema.org/InStock">
</dl>
</div>
link|improve this question
2  
Did you check what it lookes like in googles' Rich Snippet Testing Tool? – Oded Sep 3 '11 at 13:27
@Oded Cannot check because my web is not uploaded. Also, sometimes tools will correctly extract the content even if the syntax is incorrect ! So... is the syntax correct ? – jacko333 Sep 3 '11 at 13:37
feedback

2 Answers

The meta tag can't be used with an itemscope like that. The correct way to express this is through a canonical reference using the link tag:

<div itemscope itemtype="http://schema.org/Product">
  <h2 itemprop="name">Product Name</h2>
  <dl itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    <dt itemprop="price">$1</dt>
    <link itemprop="availability" href="http://schema.org/InStock">
  </dl>
</div>
link|improve this answer
Nice markup. I would like to read more about this implementation sense I don't know how it works. Do you or anyone else reading this have a source? – Erik Landvall Apr 28 at 21:35
feedback

I made a jsfiddle here: http://jsfiddle.net/dLryX/, then put the output (http://jsfiddle.net/dLryX/show/) into the rich snippets tool.

That came back with:

enter image description here

I believe the syntax is correct, and that the Warning isn't important, as it doesn't have a property, as it's a meta tag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.