Review Schema

What is Review Schema?

Review Schema is a structured data format that enables search engines to understand and display reviews and ratings of products, services, or businesses as Rich Snippets in search results. It is based on the Schema.org standard and helps signal the trustworthiness and relevance of content.

Schema Type
Usage
Example
Review
Individual review
Customer review of a product
AggregateRating
Overall rating
Average rating of all reviews
Rating
Rating scale
1-5 star rating
ItemReviewed
Reviewed object
Product, service, restaurant

Benefits of Review Schema

1. Improved SERP Display

  • Rich Snippets with stars: Reviews are displayed visually in search results
  • Higher click-through rate: Users click more frequently on results with rating displays
  • Trust building: Stars and rating numbers build trust

2. SEO Benefits

  • Better CTR: Up to 30% higher click-through rate through Rich Snippets
  • Featured Snippets: Reviews can appear in Featured Snippets
  • Voice Search: Optimized for voice search and voice assistants

3. E-Commerce-specific Benefits

  • Product reviews: Direct display of product reviews in search
  • Price comparison: Combination with Product Schema for comprehensive product information
  • Conversion rate: Better conversion through trust signals

Review Schema Implementation

Basic Structure

{
  "@context": "https://schema.org",
  "@type": "Review",
  "itemReviewed": {
    "@type": "Product",
    "name": "Product name"
  },
  "reviewRating": {
    "@type": "Rating",
    "ratingValue": "5",
    "bestRating": "5"
  },
  "author": {
    "@type": "Person",
    "name": "Author name"
  },
  "reviewBody": "Review text",
  "datePublished": "2025-01-15"
}

Advanced Implementation

{
  "@context": "https://schema.org",
  "@type": "Review",
  "itemReviewed": {
    "@type": "Product",
    "name": "iPhone 15 Pro",
    "brand": {
      "@type": "Brand",
      "name": "Apple"
    },
    "sku": "IPHONE15PRO-256",
    "offers": {
      "@type": "Offer",
      "price": "1199.00",
      "priceCurrency": "EUR"
    }
  },
  "reviewRating": {
    "@type": "Rating",
    "ratingValue": "4.5",
    "bestRating": "5",
    "worstRating": "1"
  },
  "author": {
    "@type": "Person",
    "name": "John Doe",
    "url": "https://example.com/author/john-doe"
  },
  "publisher": {
    "@type": "Organization",
    "name": "TechReview Blog",
    "url": "https://techreview.com"
  },
  "reviewBody": "The iPhone 15 Pro impresses with its camera and performance...",
  "datePublished": "2025-01-15T10:30:00Z",
  "dateModified": "2025-01-15T10:30:00Z"
}

Schema.org Types for Reviews

The following table shows the various Schema.org types that can be used for reviews:

Best Practices for Review Schema

1. Required Properties

  • itemReviewed: The reviewed object must be uniquely identifiable
  • reviewRating: Rating with clear value and scale
  • author: Name of the reviewer (person or organization)
  • reviewBody: The actual review text

2. Recommended Properties

  • datePublished: Publication date of the review
  • publisher: Publisher of the review
  • url: Direct link to the review
  • headline: Headline of the review

3. Quality Guidelines

  • Genuine reviews: Only use authentic, genuine reviews
  • Relevant content: Reviews must match the reviewed object
  • Current data: Regular updating of reviews
  • Complete information: Fill in all important properties

Checklist: Review Schema Implementation

  • Use JSON-LD format
  • Fill in all required fields
  • Perform schema validation
  • Test with Google Rich Results Test
  • Use genuine reviews
  • Ensure relevant content
  • Maintain current data
  • Provide complete information

Testing and Validation

1. Google Rich Results Test

  • URL: https://search.google.com/test/rich-results
  • Function: Tests structured data on a URL
  • Benefits: Immediate validation and preview

2. Schema.org Validator

  • URL: https://validator.schema.org/
  • Function: Validates Schema.org compliance
  • Benefits: Detailed error analysis

3. Google Search Console

  • Rich Results Report: Monitoring of Rich Results performance
  • Troubleshooting: Identification of problems
  • Monitoring: Long-term monitoring

Statistics: Rich Results Performance

Typical CTR improvements through Review Schema: 15-30% increase in click-through rate through Rich Snippets with rating displays.

Common Errors and Solutions

1. Missing Required Properties

Problem: Reviews are not displayed as Rich Snippets

Solution: Fill in all required fields (itemReviewed, reviewRating, author)

2. Incorrect Rating Scale

Problem: Reviews are not displayed correctly

Solution: Define bestRating and worstRating correctly

3. Invalid Date Formats

Problem: Date information is not recognized

Solution: Use ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ)

4. Missing Author Information

Problem: Reviews without author are ignored

Solution: Provide complete author information

Warning: Fake reviews can lead to Google penalties - only use genuine reviews!

E-Commerce Integration

1. Product Pages

  • Individual reviews: Each customer review as Review Schema
  • AggregateRating: Overall rating of the product
  • Product information: Combination with Product Schema

2. Category Pages

  • Top reviews: Highlight best-rated products
  • Average ratings: Category-specific ratings

3. Shop Homepage

  • Overall ratings: Shop-wide rating statistics
  • Testimonials: Selected customer reviews

Monitoring and Optimization

1. Performance Metrics

  • Rich Results Coverage: Proportion of pages with Rich Snippets
  • CTR Improvement: Click-through rate before and after implementation
  • Ranking Development: Position in search results

2. Regular Audits

  • Schema Validation: Monthly review of structure
  • Content Updates: Updating outdated reviews
  • Troubleshooting: Fixing schema errors

3. A/B Testing

  • Schema Variants: Test different implementation approaches
  • Content Optimization: Optimization of review texts
  • Layout Tests: Test different display formats

Workflow: Review Schema Optimization

1
Implementation
2
Testing
3
Monitoring
4
Optimization
5
Reporting
6
Iteration

Future Trends

1. AI and Machine Learning

  • Automatic review analysis: AI-based sentiment analysis
  • Personalized reviews: Individual review display
  • Predictive Analytics: Prediction of review trends

2. Voice Search Integration

  • Voice-optimized reviews: Adaptation for voice search
  • Conversational Schema: More natural review structures
  • Multi-Modal Search: Integration of text and voice

3. Evolving Schema Standards

  • Schema.org Updates: New review types and properties
  • Google-specific extensions: Additional Google features
  • Cross-Platform Integration: Unified reviews across platforms

Last updated: October 21, 2025