Heres an example markup with microformatting from the DVD Movies - Comedy category.
My product listing code is way different, but you'll see the general idea with markup that pulls everything posible.
Notice that the first line opens with itemList, and then each product listed is marked as itemtype = product.
I used the new osc_get_mini_description to pull the itemprop description, when used across all pages, it will keep things consistant.
I also used a metatag to the image path, as it is possible if using thumbnail contributions the path could change and thus we loose consistancy from product listing to product_info
I chose this category so it also shows the review markup, which I feel could easily be grabbed with a new fuction as well, and thus reused anywhere needed.
itemprop="availability" is a bit trickier, as it depends if the shop owner allows checkout with 0 stock, and the ammount of stock in combination with products date available. There are 3 options, InStock, OutofStock, PreOrder.
you can see what data is pulled here: http://www.google.com/webmasters/tools/richsnippets?q=http%3A%2F%2Fwsfive.com%2Fprodlist-examle.html&html=
<div id="products-list-module" class="row-fluid" itemscope="" itemtype="http://schema.org/ItemList"> <div id="theres-something-about-mary" class="media prod-row" itemscope="" itemtype="http://schema.org/Product"> <figure class="pull-left thumbnails"><a class="thumbnail" href="http://website.web/theres-something-about-mary-p-19.html"><img src="images/thumbs/200x200_theres_something_about_mary.gif" title="There's Something About Mary" alt="There's Something About Mary" height="200" width="200"></a> <figcaption><i class="icon-star rating"></i> <i class="icon-star rating"></i> <i class="icon-star rating"></i> <i class="icon-star rating"></i> <i class="icon-star rating"></i> </figcaption> </figure> <meta itemprop="url" content="http://website.web/theres-something-about-mary-p-19.html"> <meta itemprop="image" content="http://website.web/images/dvd/theres_something_about_mary.gif"> <meta itemprop="description" content="Regional Code: 2 (Japan, Europe, Middle East, South Africa). Languages: English, Deutsch. Subtitles: English, Deutsch, Spanish. Audio: Dolby Surround 5.1. Picture"> <div class="media-body"> <h3 class="media-heading"><a href="http://website.web/theres-something-about-mary-p-19.html"><span itemprop="name">There's Something About Mary</span></a></h3> <div class="row-fluid price-wrap" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <span class="price-text">Our Price: </span> <span class="productPrice" itemprop="price">$49.99</span> <meta itemprop="priceCurrency" content="USD"> <link itemprop="availability" href="http://schema.org/InStock"> </div> <div class="row-fluid desc-wrap"> <p class="description">Regional Code: 2 (Japan, Europe, Middle East, South Africa). Languages: English, Deutsch. Subtitles: English, Deutsch, Spanish. Audio: Dolby Surround 5.1. Picture</p> <span class="span9" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating">Average <span itemprop="ratingValue">5</span> of <span itemprop="bestRating">5</span> Stars out of <span itemprop="reviewCount"> 1</span> reviews.</span> <span class="btn-wrap span3"><a id="bs-btn11" href="http://website.web/theres-something-about-mary-p-19.html" class="btn btn-mini btn-info btn-block">View More</a></span> </div> </div> <div class="row-fluid additional-wrap hidden-phone"> <span class="grid3"><i class="icon-cogs"></i> by <span class="manuName" itemprop="manufacturer"><a href="http://website.web/fox-m-4.html">Fox</a></span> </span> <span class="grid3"><i class="icon-barcode"></i> <span class="model-text">Model: </span> <span class="modelNumber" itemprop="mpn">DVD-TSAB</span> </span> <span class="grid3"><i class="icon-reorder"></i> <span class="qty-text">Quantity: </span> <span class="productQty">9</span> </span> <span class="grid3"><i class="icon-asterisk"></i> <span class="weight-text">Weight: </span> <span class="productWeight">7.00</span> </span> </div> <div class="clearfix"></div> </div> <div id="youve-got-mail" class="media prod-row" itemscope="" itemtype="http://schema.org/Product"> <figure class="pull-left thumbnails"><a class="thumbnail" href="http://website.web/youve-mail-p-7.html"> <img src="images/thumbs/200x200_youve_got_mail.gif" title="You've Got Mail" alt="You've Got Mail" height="200" width="200"></a> </figure> <meta itemprop="url" content="http://website.web/youve-mail-p-7.html"> <meta itemprop="image" content="http://website.web/images/dvd/youve_got_mail.gif"> <meta itemprop="description" content="Regional Code: 2 (Japan, Europe, Middle East, South Africa). Languages: English, Deutsch, Spanish. Subtitles: English, Deutsch, Spanish, French, Nordic, Polish. Audio:"> <div class="media-body"> <h3 class="media-heading"><a href="http://website.web/youve-mail-p-7.html"><span itemprop="name">You've Got Mail</span></a></h3> <div class="row-fluid price-wrap" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer"> <span class="price-text">Our Price: </span> <span class="productPrice" itemprop="price">$34.99</span> <meta itemprop="priceCurrency" content="USD"> <link itemprop="availability" href="http://schema.org/InStock"> </div> <div class="row-fluid desc-wrap"> <p class="description">Regional Code: 2 (Japan, Europe, Middle East, South Africa). Languages: English, Deutsch, Spanish. Subtitles: English, Deutsch, Spanish, French, Nordic, Polish. Audio:</p> <span class="btn-wrap span3"><a id="bs-btn12" href="http://website.web/youve-mail-p-7.html" class="btn btn-mini btn-info btn-block">View More</a></span> </div> </div> <div class="row-fluid additional-wrap hidden-phone"> <span class="grid3"><i class="icon-cogs"></i> by <span class="manuName" itemprop="manufacturer"><a href="http://website.web/warner-m-3.html">Warner</a></span> </span> <span class="grid3"><i class="icon-barcode"></i> <span class="model-text">Model: </span> <span class="modelNumber" itemprop="mpn">DVD-YGEM</span> </span> <span class="grid3"><i class="icon-reorder"></i> <span class="qty-text">Quantity: </span> <span class="productQty">10</span> </span> <span class="grid3"><i class="icon-asterisk"></i> <span class="weight-text">Weight: </span> <span class="productWeight">7.00</span> </span> </div> <div class="clearfix"></div> </div> </div><!-- End ItemList -->
I'll put more into it later, I just am low on time right now and this should be good for wrapping everyones head around things.




Find content
Male

