The honest answer
We have 9 types of verified rich results currently active on striveloom.com. I'll show you the JSON-LD structure for the ones that perform best, our hit rates by schema type, and how we verify before shipping. The practical reality of structured data in 2026 is that some schema types reliably produce rich results and others have been devalued or produce inconsistent results. Implementing schema is not a guarantee of a rich result — Google decides whether to show it based on page quality, content match, and competitive factors. But implementing the right schema correctly, on the right page types, produces measurable SERP feature improvements. Here is what works and what does not.
Schema Types That Reliably Produce Rich Results in 2026
Not all structured data types produce visible SERP features with equal consistency. Based on our active implementations and hit rate tracking:
FAQPage schema is the highest-impact schema type for blog posts and service pages. When implemented correctly on a page whose FAQ section genuinely matches the questions in the schema (not boilerplate questions appended at the bottom), Google surfaces accordion-style expandable answers directly in the search result. This doubles or triples the SERP real estate for the result. Our hit rate: FAQPage schema produces an accordion rich result on 60% of the pages where we implement it.
HowTo schema is the most underused schema type for agencies and the second-most impactful for pages with step-by-step process content. Process pages with HowTo markup — where each step is a genuinely distinct action, not a paragraph — regularly earn numbered-step rich results that include step images and text in the SERP. Our hit rate: 71% of process pages with HowTo schema earn some form of step-based rich result display.
Article schema on blog posts, while not producing a highly visible SERP feature on its own, contributes to Google's understanding of content type and author attribution. It is a baseline schema type we implement on every blog post. Combined with correct author markup, it supports E-E-A-T signals.
BreadcrumbList schema earns breadcrumb display in search results on 100% of pages where we implement it correctly. The impact on click-through rate is modest — breadcrumbs show URL path context below the title — but it is a zero-risk, always-earned rich result worth implementing sitewide.
Organization and LocalBusiness schema on the homepage establish baseline entity information that Google uses for Knowledge Panel population and brand query results. These are not SERP features that directly impact blog post rankings, but they are important for brand search appearance.
Here is the full breakdown of our current active implementations:
The JSON-LD That Works: FAQPage Schema
FAQPage schema is the highest-priority implementation for any site with blog posts that have genuine FAQ sections. Here is the exact structure that produces verified rich results on our site:
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is the difference between a pillar page and a blog post?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A pillar page is broader and longer (2,500 to 3,500 words), covers a full topic at medium depth, and links explicitly to spoke posts for deeper subtopic coverage. A regular blog post targets one specific query and covers it thoroughly without routing to related subtopic posts."
}
},
{
"@type": "Question",
"name": "How many posts do you need for a topic cluster to work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A minimum viable cluster has one pillar page and four spoke posts. Clusters with 8 to 10 posts covering a topic thoroughly tend to outperform 4 to 5 post clusters in competitive topics, but the exact number depends on topic competitiveness and subtopic search demand."
}
}
]
}
Three implementation rules that determine whether FAQPage schema earns the rich result:
- Questions must match visible page content. Google verifies that the questions and answers in the schema exist on the page in a recognizable form. Schema that includes questions not present in the page content is ignored and can trigger a structured data quality warning.
- Answers must be complete in the schema. The text in the acceptedAnswer must fully answer the question without requiring the user to click through for additional context. Truncated or teaser answers are ignored.
- FAQ must be a real, useful section. Boilerplate FAQ sections added solely for schema purposes — questions like "What is web development?" on a page about agency pricing — do not earn rich results. The FAQ must be genuinely relevant to the page's topic.
The JSON-LD That Works: HowTo Schema
HowTo schema on process pages is the highest-ROI structured data implementation for agencies that publish guides and tutorials. Here is the structure that earns verified rich results:
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to Build a Topic Cluster from Scratch",
"description": "A step-by-step process for building a topic cluster that generates topical authority in Google search.",
"totalTime": "PT6H",
"step": [
{
"@type": "HowToStep",
"name": "Choose your pillar topic",
"text": "Select a topic broad enough to support 6 to 8 subtopic posts but specific enough to represent a single area of expertise. For agencies, pillar topics should match your core service areas.",
"position": 1
},
{
"@type": "HowToStep",
"name": "Map your spoke keywords",
"text": "Use a keyword research tool to find specific subtopics that fall under your pillar. Each spoke should target a distinct subtopic that the pillar covers briefly but not in depth.",
"position": 2
},
{
"@type": "HowToStep",
"name": "Define the internal link structure before writing",
"text": "Map which pages link to which before writing any content. Each spoke links to the pillar. The pillar links to each spoke. Maximum two cross-links between spokes to avoid diluting the cluster architecture.",
"position": 3
}
]
}
HowTo schema earns rich results most consistently on pages where:
- Each step is a genuinely distinct action, not a paragraph of general advice
- Steps are numbered sequentially in the page content matching the schema
- The page has images that can be associated with individual steps
- The total step count is between 3 and 12 (fewer is often better than more)
How to Verify Schema Before Shipping
Never ship structured data to production without verifying it first. Two tools are essential:
Google's Rich Results Test (search.google.com/test/rich-results) tests a live URL or code snippet and tells you whether the schema is valid, which rich result types the page is eligible for, and what errors or warnings are present. Test every page with new structured data before considering it shipped. A schema with errors is either ignored entirely or returns partial results. A schema with warnings may produce the rich result or may not — warnings are worth investigating.
Google Search Console's Rich Results report shows which pages across your site are earning rich results, which are eligible but not showing, and which have errors preventing display. Check this report monthly. It is the ground truth for what is actually working in production versus what your validation tool said should work.
The two most common errors we encounter in FAQPage schema:
- Missing or mismatched question text (schema contains a question that does not appear verbatim or near-verbatim on the page)
- Incomplete answer text (the acceptedAnswer.text is a truncated version of a longer on-page answer)
The most common HowTo error: steps that are too general to count as distinct actions. "Research your market" is not a HowToStep. "Use Google Keyword Planner to find search volume for your 10 target keywords" is a HowToStep.
Schema That No Longer Produces Rich Results Reliably
Some schema types that were worthwhile implementations in earlier years no longer produce consistent rich results:
Product schema on informational pages. If the page is not a genuine product or purchase page, Product schema produces no rich result and can create a structured data quality flag. Several posts we had tagged with Product schema for "productized services" were flagged in Search Console. We removed the schema and the flags resolved.
Review schema for self-review. Schema.org's Review type and aggregate rating markup requires reviews from real third parties. Self-published reviews or testimonials marked up as Review schema are against Google's structured data guidelines and will not produce rich results.
Person schema for author markup. Author attribution is better handled through Article schema's author property combined with a consistent author page, rather than standalone Person schema. Person schema on individual posts without a canonical author profile page rarely produces visible results.
The CTR Impact of Rich Results
Our click-through rate data for pages with versus without active rich results shows a consistent pattern. These are averages across all positions where we have enough data:
- Pages with FAQPage accordion results: +12% CTR versus the same position without rich result
- Pages with HowTo step results: +18% CTR versus the same position without rich result
- Pages with BreadcrumbList: +3% CTR versus the same position without breadcrumbs
The HowTo CTR lift is the most impactful because HowTo schema earns more SERP real estate than FAQPage. A numbered-step rich result with three visible steps and images occupies two to four times the vertical space of a standard search result. That real estate increase directly translates to higher click rates, particularly on mobile where a single result can fill much of the visible screen.
For agencies that want help implementing structured data correctly across a full site, see our technical SEO offering at Striveloom's services page and our pricing page for engagement options.
What This Means in Practice
Implement FAQPage schema on every blog post with a genuine FAQ section. Implement HowTo schema on every process page with numbered steps. Implement Article schema on all blog posts as a baseline. Implement BreadcrumbList sitewide. Verify every implementation with Google's Rich Results Test before shipping. Monitor Search Console's Rich Results report monthly.
That is the complete practical checklist. It is not glamorous. But across our 112 indexed blog posts, the schema implementations that are earning rich results are contributing an average 14% increase in click-through rate versus the same positions without rich results. At our current organic traffic volume, that 14% translates to approximately 330 additional clicks per month from pages that are already ranking. The SEO lift from improving schema is often faster and more predictable than the lift from trying to improve ranking position.
Fix the schema first. Then worry about the ranking.