Product Schema: Get Star Ratings and Prices in Search Results
E-commerce SEO๐Ÿ“– 11 min read๐Ÿ“… June 12, 2026

Product Schema: Get Star Ratings and Prices in Search Results

David Park
David Park
E-commerce SEO Specialist

Product schema is structured data that helps search engines understand the products on your e-commerce pagesโ€”including name, price, availability, brand, and customer ratings. When implemented correctly, Google displays rich snippets with star ratings, pricing, and stock status directly in search results.

Why Product Schema Matters for E-commerce SEO

For online stores, product schema offers critical competitive advantages:

  • Star ratings in SERPs: Display your average customer rating directly under your product listing
  • Price visibility: Show your price before users click, pre-qualifying price-sensitive shoppers
  • Availability indicators: "In stock" vs. "Out of stock" badges influence click decisions
  • Increased CTR: Products with rich snippets see 30-50% higher click-through rates
  • Competitive advantage: Outrank competitors who don't have schema
๐Ÿ’ก Key Stat: According to e-commerce data, product pages with star ratings in search results have an average CTR of 10-15%, compared to 2-5% for pages without ratings. For competitive product categories, schema can be the difference between being clicked or ignored.

2. What Product Schema Looks Like in Search Results

Standard Product Rich Snippet

When product schema is detected, Google displays:

  • Product title (standard blue link)
  • Star rating (e.g., "โ˜…โ˜…โ˜…โ˜…โ˜†" with review count)
  • Price (e.g., "$49.99")
  • Availability status (e.g., "In stock" or "Out of stock")
  • Seller name (for marketplace listings)
  • Optional: Product image thumbnail

Shopping Knowledge Panel

For branded product searches, Google may display a knowledge panel with:

  • Product image gallery
  • Price comparison from multiple sellers
  • Technical specifications
  • User reviews aggregated from across the web

Google Shopping Integration

Product schema feeds into Google Shopping surfaces, including the Shopping tab, image search, and Google Lens results.

3. Key Properties for Product Schema

Required Properties (For Rich Results)

name: The product name (should match your page's H1).

"name": "UltraBlast Wireless Headphones"

offers: An Offer object containing price, priceCurrency, and availability.

"offers": {
  "@type": "Offer",
  "price": "49.99",
  "priceCurrency": "USD",
  "availability": "https://schema.org/InStock"
}

description: Product description (match your meta description or visible product description).

"description": "Premium wireless headphones with active noise cancellation and 20-hour battery life."

image: Product image URL (Google recommends high-resolution images, minimum 800px).

"image": [
  "https://example.com/headphones-front.jpg",
  "https://example.com/headphones-side.jpg",
  "https://example.com/headphones-package.jpg"
]

brand: The product brand as an Organization or Brand object.

"brand": {
  "@type": "Brand",
  "name": "AudioTech"
}

sku: Stock Keeping Unit (your internal product ID).

"sku": "AT-HP-2024-001"

mpn: Manufacturer Part Number.

"mpn": "MODEL-X1-2024"

aggregateRating: Average customer rating and review count.

"aggregateRating": {
  "@type": "AggregateRating",
  "ratingValue": "4.5",
  "reviewCount": "127"
}

4. Adding Reviews and Aggregate Ratings

Product star ratings are one of the most powerful CTR drivers in e-commerce. Here's how to implement them correctly.

AggregateRating (Average Rating)

Use AggregateRating when you want to display the average rating from all customer reviews.

"aggregateRating": {
  "@type": "AggregateRating",
  "ratingValue": "4.5",
  "reviewCount": "127",
  "bestRating": "5",
  "worstRating": "1"
}
  • ratingValue: Your average rating (usually out of 5)
  • reviewCount: Total number of customer reviews
  • bestRating/worstRating: Optional but recommended (defaults to 5 and 1)

Individual Reviews

You can also include individual reviews (though Google typically only displays aggregate ratings in SERPs).

"review": [
  {
    "@type": "Review",
    "author": {
      "@type": "Person",
      "name": "Sarah Johnson"
    },
    "datePublished": "2024-01-15",
    "reviewRating": {
      "@type": "Rating",
      "ratingValue": "5",
      "bestRating": "5"
    },
    "reviewBody": "Best headphones I've ever owned! The noise cancellation is incredible."
  }
]
โš ๏ธ Critical: Google is strict about review schema. The ratings you declare must match actual customer reviews on your site. Fake reviews or schema that doesn't match visible content can result in manual action penalties.

5. Offer Properties: Price, Availability, and Seller

Single Offer (Simple Product)

For products with one price and one seller:

"offers": {
  "@type": "Offer",
  "price": "49.99",
  "priceCurrency": "USD",
  "priceValidUntil": "2024-12-31",
  "availability": "https://schema.org/InStock",
  "itemCondition": "https://schema.org/NewCondition",
  "url": "https://example.com/product/headphones"
}

Multiple Offers (Marketplace or Multi-Seller)

For products sold by multiple sellers or available in different conditions:

"offers": [
  {
    "@type": "Offer",
    "price": "49.99",
    "priceCurrency": "USD",
    "seller": {
      "@type": "Organization",
      "name": "AudioTech Official"
    },
    "availability": "https://schema.org/InStock"
  },
  {
    "@type": "Offer",
    "price": "44.99",
    "priceCurrency": "USD",
    "seller": {
      "@type": "Organization",
      "name": "Tech Deals Store"
    },
    "availability": "https://schema.org/InStock"
  }
]

Availability Values

Use these standard Schema.org availability values:

  • https://schema.org/InStock - In stock, available for purchase
  • https://schema.org/OutOfStock - Out of stock
  • https://schema.org/PreOrder - Available for pre-order
  • https://schema.org/BackOrder - Available for back-order
  • https://schema.org/LimitedAvailability - Limited stock remaining
  • https://schema.org/Discontinued - Discontinued product

Price Specifications

  • priceValidUntil: When the current price expires (helps Google know when to update)
  • priceSpecification: For tiered pricing, subscriptions, or complex pricing models

6. Step-by-Step Implementation Guide

Step 1: Gather Product Information

Collect all required and recommended product data:

  • Product name (exactly as displayed on page)
  • Current price and currency
  • Stock status (in stock, out of stock, etc.)
  • Product description (500-1000 characters)
  • High-quality product images (800px+ width)
  • Brand name
  • SKU or MPN
  • Average rating and review count (if applicable)

Step 2: Use Our Schema Markup Generator

  1. Select "Product" as your schema type
  2. Fill in all product details in our simple form
  3. For stores with inventory feeds, our bulk generator can process thousands of products
  4. Click "Generate" for perfectly formatted JSON-LD

Step 3: Add JSON-LD to Your Product Page

Place the generated code in the <head> of your product page or just before the closing </body> tag.

Step 4: Validate with Google Rich Results Test

Use the Rich Results Test to confirm your product schema is valid and the rich snippet preview appears correctly.

Step 5: Monitor Performance in GSC

In Google Search Console, navigate to "Enhancements" โ†’ "Products" to track impressions, clicks, and CTR for your product rich results.

7. Common Product Schema Mistakes

Mistake #1: Missing Offer Properties

Without price and availability, your product schema will not generate rich snippets. Always include at least price, priceCurrency, and availability.

Mistake #2: Mismatched Price or Availability

If your JSON-LD says "InStock" but the page shows "Out of Stock," Google will not display rich snippets (and may penalize you).

Mistake #3: Incorrect Availability URL

Use the full Schema.org URL for availability values (e.g., "https://schema.org/InStock"), not just the string "InStock".

Mistake #4: Fake Reviews or Ratings

Never add aggregateRating or review data that doesn't come from actual customers. Google actively penalizes fake reviews.

Mistake #5: Missing Product Images

Product rich snippets without images have significantly lower CTR. Always include at least one high-quality product image.

๐Ÿ† Final Takeaway: Product schema is essential for e-commerce SEO. Without it, your products are at a severe disadvantage in search results. Use our Schema Markup Generator to add perfect Product JSON-LD to all your product pages, validate with Google's Rich Results Test, and watch your organic CTR and revenue grow.

8. Real-World Implementation Examples

Example 1: Standard E-commerce Product

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "UltraBlast Wireless Headphones",
  "description": "Premium over-ear wireless headphones with active noise cancellation, 20-hour battery life, and comfortable memory foam ear cushions.",
  "image": [
    "https://example.com/headphones-front.jpg",
    "https://example.com/headphones-side.jpg",
    "https://example.com/headphones-case.jpg"
  ],
  "brand": {
    "@type": "Brand",
    "name": "AudioTech"
  },
  "sku": "AT-HP-X1",
  "mpn": "X1-2024",
  "offers": {
    "@type": "Offer",
    "price": "79.99",
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock",
    "priceValidUntil": "2024-12-31",
    "itemCondition": "https://schema.org/NewCondition",
    "url": "https://example.com/products/ultrablast-headphones"
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.6",
    "reviewCount": "342",
    "bestRating": "5",
    "worstRating": "1"
  }
}
</script>
๐Ÿš€ For WooCommerce/Shopify: Many e-commerce platforms automatically output product schema. However, we recommend auditing your existing schema using Google's Rich Results Test. Many default implementations miss critical properties like brand, MPN, or priceValidUntil. Use our Schema Markup Generator to create enhanced schema that outperforms default CMS output.

Share Article

David Park

David Park

E-commerce SEO Specialist

Passionate about technology and digital tools.

Article Details

๐Ÿ“… PublishedJune 12, 2026
โฑ๏ธ Read Time11 min read
๐Ÿ“‚ CategoryE-commerce SEO
โš™๏ธ

Ready to Generate Schema Markup?

Free Schema Markup Generator. Boost search engine rich snippets and SEO CTR instantly.

Start Generating Now โ†’