Rich Snippet
Definition
A Rich Snippet is a SERP format that displays additional visual elements such as ratings, review count, FAQ, price, stock, and images alongside standard search results (title + URL + meta description), based on Schema.org structured data.
Google does not use structured data as a direct ranking factor. However, when rich snippets appear, CTR increases, and combined with higher rankings, it leads to actual traffic growth. Since 2024, Google AI Overviews has used FAQ and HowTo schema as citation units, increasing the importance of structured data from an AEO perspective as well.
TL;DR
Rich Snippet essentials: ① Mark up only content that actually exists on the page with JSON-LD → ② Confirm eligibility with Google Rich Results Test → ③ Prioritize FAQ, HowTo, Product, and Breadcrumb implementation → ④ Never schema markup for information not on the page (manual action risk). After implementation, confirm recognition in Google Search Console Enhancements report.
Types of Rich Snippets (8 Representative Types)
[INFOGRAPHIC: 8 rich snippet types in SERP — FAQ, HowTo, Review, Breadcrumb, Product, Event, Video, Sitelinks]
1. FAQ (Frequently Asked Questions)
FAQ schema is the most widely used rich snippet. Search results display a collapsible Q&A list. See FAQPage Schema for implementation. However, since 2023 Google has reduced FAQ rich result frequency, prioritizing government and medical authority sites.
2. HowTo (Step-by-Step Guide) — ⚠️ Rich Results Removed
HowTo schema is structured data for step-by-step guides. Google completely removed HowTo rich results from both desktop and mobile in 2023. Step-by-step cards no longer appear in search results. It still has value for AI answer citation purposes such as Google AI Overviews. See HowTo Schema Guide for details.
3. Rating + Review (Review / AggregateRating)
Displays ratings (1–5) and review count for products, services, recipes, and apps. Visually the most prominent format. However, self-generated ratings violate Google spam policy.
4. Breadcrumb
Displays hierarchical paths instead of URL paths in SERP. Immediately communicates site structure to users. See Breadcrumb for details.
5. Price / Product
Displays price, stock status, and ratings for ecommerce products. Especially effective when integrated with Google Shopping.
6. Event
Displays date, location, and ticket information for performances, conferences, and webinars. Also integrates with Google Events panel.
7. Video
Displays thumbnails, duration, and key moments for YouTube and self-hosted videos.
8. Sitelinks Search Box
Displays in-site search functionality directly in SERP for brand searches. Suitable for large sites.
Rich Snippet vs Standard Snippet
[COMPARISON_TABLE: Rich Snippet vs Standard Snippet — CTR, visibility, implementation difficulty comparison]
Standard snippets consist of title tag + URL + meta description. They display automatically without additional implementation, with Google showing meta information as-is or rewritten. See Title Tag and Meta Description for details.
Rich snippets are standard snippets plus structured-data-based additional information. Search Engine Land research shows CTR improves an average of 5–30% when rich snippets appear. Star ratings alone attract users with higher click intent more effectively.
See CTR for details.
How to Implement Rich Snippets
Google officially recommends three structured data implementation methods.
JSON-LD (Recommended)
Insert as a <script type="application/ld+json"> block in HTML <head> or <body>. Separated from HTML markup for easy maintenance, it is Google's officially recommended method. See JSON-LD Basics for details.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is a rich snippet?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A rich snippet is a SERP format that displays additional information such as ratings, FAQ, and price in search results based on structured data."
}
}
]
}
</script>
Microdata
Adds Schema.org properties inline to HTML tags. It was the standard before JSON-LD but is now considered legacy; migration to JSON-LD is recommended.
RDFa
Implementation based on semantic web standards. Occasionally used on academic and government sites but rarely for general SEO purposes.
Rich Snippet Validation Tools
Google Rich Results Test
At search.google.com/test/rich-results, enter a URL or code to check rich result eligibility. "Eligible" must display for SERP exposure potential. However, eligibility does not guarantee display.
Schema.org Validator
At validator.schema.org, validate Schema.org syntax errors. Useful for finding JSON-LD syntax errors in advance.
Google Search Console — Enhancements Report
In GSC left menu "Enhancements" section, check rich result recognition for FAQ, HowTo, products, etc. Fixing errors and warnings updates when Google recrawls. See Google Search Console for details.
Three Common Rich Snippet Mistakes
Mistake 1: Fake Reviews / Self-Generated Ratings
Displaying ratings generated by company staff or systems as AggregateRating schema. Violates Google spam policy and is subject to manual action. See Google Manual Action for details.
Mistake 2: Schema Markup for Information Not on the Page
Adding information to structured data that users cannot see (hidden text). Google requires consistency between visible page content and structured data. Mismatch can lead to manual action.
Mistake 3: Applying the Same Schema to Every Page
Using schema types that don't match page type, such as applying Article schema to category and search result pages. Google may not recognize it or may lower quality signals.
Rich Snippets and AEO
Google AI Overviews Citation
Google AI Overviews more frequently uses pages with FAQ and HowTo structured data as citation units. Structured data defines content in clear Q&A units, making it easier for LLMs to extract answers. See Google AI Overviews for details.
Connection with Passage Ranking
FAQ items displayed as rich snippets are also indexed at the passage level. Structured data clarifies passage boundaries, increasing Featured Snippet and AI answer extraction potential. See Passage Ranking and Featured Snippet for details.
AI Visibility Score
Pages with rich snippets tend to have higher AI answer citation potential, contributing positively to AI visibility scores. See AI Visibility Score for details.
Application in the Korean Market
Rich Snippet Adoption Among Korean Sites
Few Korean sites correctly implement Product, LocalBusiness, and VideoObject schema. Especially among SMB shopping malls and local businesses, structured data adoption is low, so early implementation creates differentiation. FAQ and HowTo rich results were removed, but both schemas still have value for AI answer citation.
Naver Search Display
Naver does not directly support Google's Schema.org rich snippets. Naver integrated search uses its own sections such as Knowledge iN, VIEW, and Shopping as rich result equivalents. Implementing structured data is reasonable when targeting global Google SEO, while Naver search requires separate optimization. See Naver SEO for details.
Ecommerce Application
For Cafe24 and Godomall, Product and AggregateRating schema can be added via plugins or custom code. Korean ecommerce often has rich review data, making AggregateRating schema highly effective.
Frequently Asked Questions
Q. Does adding structured data guarantee rich snippet display?
A. No. Structured data is a necessary but not sufficient condition for rich snippet display. Even with "Eligible" in Google Rich Results Test, actual SERP display is determined by Google's algorithm. Content quality, page authority, and search intent fit must all be met for higher display likelihood.
Q. Rich snippets improve CTR but don't they also increase zero-click searches?
A. FAQ rich snippets can increase zero-click by exposing partial answers in search results. However, Backlinko research shows organic CTR for pages with Featured Snippets and rich results is ultimately higher. For intents requiring detailed analysis, rich snippets act as previews that drive clicks. See Zero-Click Search for details.
Q. Which is better: JSON-LD or Microdata?
A. Google officially recommends JSON-LD. Separated from HTML markup for easy maintenance, schema persists when CMS themes change. New implementations should always use JSON-LD. Existing Microdata should gradually migrate to JSON-LD.
Q. Can I use multiple schema types on one page?
A. Yes. For example, a recipe page can use Recipe + AggregateRating + HowTo together. However, each schema must exactly match page content and must not contain conflicting information.
Q. Is Google reducing rich snippet display?
A. There is such a trend for some types. Since 2023, Google has narrowed FAQ rich results to medical and government sites. HowTo rich results were completely removed from desktop and mobile in 2023. FAQ rich results were also removed from Google Search as of May 2026. Currently stable types include Product, Event, Video, LocalBusiness, BreadcrumbList (desktop only), Recipe, and others. Google's rich result policy continues to change, so monitor the Google Search Central official blog regularly.
Related Sources
- Google Search Central (2024). Understand how structured data works. https://developers.google.com/search/docs/appearance/structured-data/intro-structured-data
- Google Search Central (2024). Search Gallery — Rich Results. https://developers.google.com/search/docs/appearance/structured-data/search-gallery
- Search Engine Land (2023). Rich snippets CTR study: How structured data impacts organic traffic. Search Engine Land.