I've setup the code for Google's Rich Snippets for my iPhone app yycParking on my website. The relevant HTML looks like this:
<div itemscope itemtype="http://schema.org/SoftwareApplication">
<!-- ... -->
<h2 class="txt-align-center" itemprop="description">
<strong>yycParking</strong> provides real time updates of parking in downtown Calgary
</h2>
<!-- ... -->
<div class="two-column last">
<!-- ... -->
<p>We created <strong itemprop="name">yycParking</strong> to enhance a service provided by ...</p>
<!-- ... -->
</div>
<div class="two-column last txt-align-right">
<!-- ... -->
<a title="Download the YYC Parking App from the iTunes store now" href="http://itunes.apple.com/ca/app/yycparking/id460852653?mt=8" target="_blank" itemprop="url">
<img class="alignnone size-full wp-image-436" title="app-store-badge" src="http://randomtype.ca/cms/assets/app-store-badge.png" alt="" />
</a>
<!-- ... -->
</div>
<p>
<meta itemprop="image" content="http://randomtype.ca/cms/assets/app-icon-124x124.png" />
</p>
</div>
You'll see from the above HTML that I've included the following elements:
- Schema:
itemscope itemtype="http://schema.org/SoftwareApplication"
- Description:
itemprop="description"
- Name:
itemprop="name"
- URL:
itemprop="url"
- Image:
itemprop="image"
From reading the rich snippet software application specs I believe I've hit the 4 required items, and properly identified the schema I'm following.
Running it through the Rich Snippet testing tool I get a result that doesn't identify the snippet as an iPhone app, and skips out the nice image like "Cut the Rope" gets.
Am I missing something? I want to dominate the Calgary parking market - but Google is holding me back!1 :P