Reviewing apps without SoftwareApplication Schema = no star ratings in Google. Schema = stars + price + OS shown in search.
In this tutorial, you'll add Software Application Schema to Blogger tool review posts. Follow along and you'll get rich snippets for software/apps in Google in 2025.
Step 1: Why SoftwareApplication Schema Wins Tool Reviews 2025
Google shows app info directly in SERP when Schema is present.
- Rich snippets: Google shows ★★★★☆ rating, price, OS, category under title
- App Pack: Schema helps rank in Google's "Software Apps" carousel
- Higher CTR: Price "Free" + stars beat text-only competitors
- Affiliate boost: Users trust reviews with visible ratings + system requirements
Image: Google search showing Canva review with 4.7 stars, Free, Windows/Mac
Step 2: Add SoftwareApplication Schema to Blogger Review Post
Paste this in post HTML editor below your software review.
- Posts → Edit Review Post → Switch to "HTML" view → Paste at BOTTOM:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Canva Pro",
"operatingSystem": "Windows, MacOS, Android, iOS, Web",
"applicationCategory": "DesignApplication",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.7",
"ratingCount": "2451"
},
"offers": {
"@type": "Offer",
"price": "12.99",
"priceCurrency": "USD",
"priceValidUntil": "2026-12-31"
},
"description": "Canva Pro is a graphic design tool for non-designers. Create social media posts, logos, presentations with drag-drop editor. 100M+ templates included.",
"image": "https://yourblog.blogspot.com/canva-pro-review.jpg",
"author": {
"@type": "Person",
"name": "Your Name"
},
"publisher": {
"@type": "Organization",
"name": "Your Blog Name"
},
"downloadUrl": "https://canva.com/download",
"softwareVersion": "2025.3",
"fileSize": "0MB",
"screenshot": "https://yourblog.blogspot.com/canva-screenshot.jpg"
}
</script>
- Replace placeholders:
| Field | Replace With | Example |
| name | Software name | Notion, Grammarly, Semrush |
| operatingSystem | Supported OS | Windows, MacOS, Web, Android |
| applicationCategory | Schema category | BusinessApplication, GameApplication |
| price | 0 for free, or paid price | 0, 12.99, 99.00 |
| ratingValue | Your rating 1-5 | 4.7 |
| ratingCount | Number of reviews | Only if real users rated |
Step 3: Software Application Categories for Schema
Pick the right applicationCategory for Google to classify your tool:
BusinessApplication - Notion, Slack, Asana DesignApplication - Canva, Figma, Photoshop DeveloperApplication - VS Code, GitHub EducationalApplication - Duolingo, Coursera GameApplication - Minecraft, Fortnite MobileApplication - WhatsApp, Instagram MultimediaApplication - VLC, Spotify SecurityApplication - NordVPN, Malwarebytes SocialNetworkingApplication - Facebook, Twitter
Step 4: Add Visible Review Box to Match Schema
Schema must match visible content. Add this review box in post:
<div style="background:#e8f0fe;border:2px solid #1a73e8;padding:20px;border-radius:8px;margin:20px 0;"> <h2>Canva Pro Review</h2> <p><strong>Rating:</strong> ★★★★☆ 4.7/5 (2,451 reviews)</p> <p><strong>Price:</strong> $12.99/month | Free plan available</p> <p><strong>Platforms:</strong> Windows, Mac, iOS, Android, Web</p> <p><strong>Category:</strong> Design Application</p> <p><strong>Best For:</strong> Bloggers, social media managers, small business</p> <p><strong>Verdict:</strong> Best drag-drop design tool for non-designers. Huge template library.</p> </div>
Step 5: Test SoftwareApplication Schema + Fix Errors
- Rich Results Test: search.google.com/test/rich-results → Enter URL → Must show "Software Application" valid
- Schema Validator: validator.schema.org → Check for missing
offersorrating - Search Console: Enhancements → Software Apps → Monitor after 2 weeks
- Fix: "Missing field offers" = Add price block. Use
"price": "0"for free apps - Fix: "Invalid ratingValue" = Must be 1-5. Decimal OK: 4.7
- Fix: No stars showing = Remove
aggregateRatingif you have no real user reviews. Fake ratings = penalty
Bad practice to avoid: Adding SoftwareApplication Schema to SaaS affiliate pages without hands-on review. Google wants editorial reviews with screenshots. Only add if you tested the tool.
Important: Don't use Review Schema + SoftwareApplication Schema together. Pick one. For tool reviews, SoftwareApplication is better. For physical products, use Product Schema from Post #54. Update priceValidUntil yearly. If app is free, set "price": "0" and add "isAccessibleForFree": true. Combine with Video Schema from Post #57 if you have tutorial video.
0 Comments