Structured data remains one of the most powerful SEO tools available in 2026, even after Google removed FAQ and HowTo rich results in May. Article, Product, Review, BreadcrumbList, Video, and Event schema continue to generate rich search results, improve click-through rates, and support AI Overview citations. The removal of FAQ schema shifts focus toward schema types that signal content authority and freshness to Google's AI systems.
This guide covers which schema types still work, how structured data now affects AI Overviews, what to use instead of FAQ markup, and a practical audit checklist for your site.
What Google Removed from Rich Results in 2026
On May 7, 2026, Google officially discontinued FAQ rich results in Google Search. This followed the earlier removal of HowTo rich results. Both schema types had been widely used since 2019, but Google determined they created visual clutter without meaningfully improving user experience or search quality.
The announcement confirmed that FAQPage schema markup would no longer generate the expanded question-and-answer accordion display below search results. Websites that had heavily invested in FAQ markup saw their rich result appearances disappear within days of the announcement.
This does not mean structured data is less important - it means the strategy has shifted. Schema types tied to direct commercial and content value now carry more weight than ever before.
What changed in detail:
- FAQ Schema (FAQPage): no longer generates rich results in standard search. Exception: limited use remains for healthcare and government domains. The markup itself is not penalized, but it provides no visual benefit for standard sites.
- HowTo Schema: removed from standard search in 2023, with voice-only relevance remaining through 2024. As of 2026, its practical value is minimal.
- Review snippets: fully supported - star ratings continue to appear in search results when schema meets Google's review criteria.
- Product schema: fully supported and increasingly critical for Google AI Shopping and Universal Cart integration.
Schema Types Status in 2026: Complete Table
Understanding which schema types still generate rich results is essential for prioritising your technical SEO resources.
| Schema Type | Status 2026 | Rich Result Type | Recommendation |
|---|---|---|---|
| Article | Active | Top Stories, enhanced display | Required for all content sites |
| Product | Active | Price, ratings, availability in SERP | Required for eCommerce |
| Review / ReviewSnippet | Active | Star ratings in search results | Required where applicable |
| BreadcrumbList | Active | Breadcrumb path in URL | Recommended for all sites |
| Video | Active | Video carousel in search | Required for video content |
| Event | Active | Event rich results | Required for event pages |
| Recipe | Active | Recipe card, cook time, ratings | Required for food content |
| LocalBusiness | Active | Knowledge Panel data | Required for local sites |
| Organization | Active | Knowledge Panel, brand signals | Recommended for all brands |
| Sitelinks Searchbox | Active | Search box in Google results | Recommended for large sites |
| JobPosting | Active | Job listings in search | Required for job sites |
| Course | Active | Course information display | Required for education |
| FAQ (FAQPage) | Removed | No longer generates rich results | Remove or ignore |
| HowTo | Limited | Voice search only | Not recommended |
How Structured Data Affects AI Overviews in 2026
Google's AI Overviews - the AI-generated answer blocks that appear for a substantial portion of informational queries - are directly influenced by structured data implementation. This is the most important development in structured data strategy for 2026.
Research analyzing millions of AI Overviews found that pages with properly implemented Article schema are significantly more likely to be cited as sources in AI Overview answers. The reason: structured data helps Google understand the exact scope, authority, and freshness of your content.
Three ways structured data impacts AI Overviews:
First, Article schema with complete headline, datePublished, dateModified, and author properties signals freshness and authorship - two key factors in AI Overview citation selection. When Google evaluates which sources to cite in an AI answer, recently updated content with clear authorship signals ranks higher.
Second, Speakable schema (available for news publishers) marks specific sections of an article as suitable for voice and AI response extraction. Pages with Speakable markup are more likely to have their content directly quoted in AI Overviews rather than paraphrased.
Third, entity markup through Organisation, Person, and LocalBusiness schema builds knowledge graph connections. These connections help Google's AI systems understand who is publishing the content and whether they represent a trusted, authoritative source - which is central to E-E-A-T evaluation.
If your goal is AI Overview visibility, complete Article schema with author and organisation markup is now more valuable than FAQ schema ever was.
What to Use Instead of FAQ Schema
The removal of FAQ rich results creates a practical question: how do you capture the search visibility that FAQ schema once provided? The answer requires rethinking how you structure informational content, not simply substituting one schema type for another.
Option 1: Q&A content with Article schema
Structure your content so that individual H2 or H3 sections directly answer specific search questions. Wrap the entire page in Article schema. Google's natural language processing now extracts Q&A pairs from well-structured prose - your content can still appear in AI Overviews and Featured Snippets without FAQ markup. The key is clear question-as-heading, concise-answer-in-first-sentence structure.
Option 2: Speakable schema for publishers
If you run a news or content site, Speakable schema marks specific text sections as directly answerable content. This is the closest functional equivalent to what FAQ schema offered - targeting AI and voice search contexts rather than visual rich results.
Option 3: Q&A Schema for community content
Q&A schema (Question + Answer) technically remains in Google's documentation but no longer generates visual rich results in standard search. It may still contribute to AI Overview citations by providing machine-readable Q&A pairs. Use it for genuine community Q&A pages, not as an FAQ substitute.
Option 4: Structured question-and-answer sections
For standard SEO, maintain Q&A sections in your content with questions as H2 headings and concise answers in the first sentence following each heading. This structure works for Featured Snippets and AI Overview citations without relying on schema markup.
Article Schema: The Core Implementation for 2026
Article schema has become the single most important schema type for content sites following the removal of FAQ and HowTo. It provides both rich result eligibility and AI Overview citation signals.
Key properties that matter most:
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Your article headline here",
"description": "Article description matching your meta description",
"datePublished": "2026-05-30T12:00:00+00:00",
"dateModified": "2026-05-30T12:00:00+00:00",
"author": {
"@type": "Organization",
"name": "Yositeup",
"url": "https://yositeup.com"
},
"publisher": {
"@type": "Organization",
"name": "Yositeup",
"logo": {
"@type": "ImageObject",
"url": "https://yositeup.com/images/logo.png"
}
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://yositeup.com/blog/your-article-slug/"
}
}
Critical properties for AI Overview visibility:
dateModified- updating this when you refresh content signals freshness to Googleauthorwith a properPersontype (withname,url, andsameAsto social profiles) strengthens E-E-A-T signalsimagewith minimum 1200×630 pixels meets Google's requirements for rich result display
BreadcrumbList and Site Architecture Signals
BreadcrumbList schema remains one of the highest-impact low-effort implementations available. It provides two direct benefits: a visual breadcrumb path in search results instead of raw URLs (which typically increases CTR by 5-10% on mobile), and explicit site architecture signals to search engines.
Implementation is straightforward and should be included in every page template:
{
"@type": "BreadcrumbList",
"itemListElement": [
{"@type": "ListItem", "position": 1, "name": "Home", "item": "https://yositeup.com/"},
{"@type": "ListItem", "position": 2, "name": "Blog", "item": "https://yositeup.com/blog/"},
{"@type": "ListItem", "position": 3, "name": "Article Title", "item": "https://yositeup.com/blog/article-slug/"}
]
}
Structured Data Audit: Prioritised Action Plan
Given the 2026 changes, here is a prioritised implementation checklist:
Immediate actions:
- Remove FAQPage schema from pages where it still exists - it adds page weight with no benefit
- Add or update Article schema with
dateModifiedon recently updated content - Verify Product schema includes
offersandaggregateRatingwhere applicable
Short-term (this month):
- Add BreadcrumbList to all page templates
- Implement Organisation schema in sitewide structured data
- Add author markup to Article schema with proper Person entity references
Strategic (ongoing):
- Consider Speakable schema for key informational pages on news-type sites
- Build entity connections through Organisation, Person, and about markup
- Monitor AI Overview appearances in Google Search Console and note which pages are cited
Internal links
For more on AI Overviews and content strategy, see Google AI Mode: SEO Guide 2026. For technical SEO fundamentals, see Internal Linking as an SEO Element.
Frequently Asked Questions About Structured Data in 2026
Does FAQ schema still work in 2026? No. Google officially removed FAQ rich results on May 7, 2026. FAQPage schema will not be penalised if it remains on your site, but it generates no visual rich result benefit. Removing it from most pages reduces unnecessary markup.
What schema should I use instead of FAQ in 2026? Use Article schema with Q&A-structured content (questions as H2 headings, concise answers as first sentences). For AI Overviews, complete Article schema with author and organisation markup is more valuable than FAQ schema was.
Does structured data help with Google AI Overviews? Yes, significantly. Article schema with complete author, organisation, and freshness markup (dateModified) improves the probability of being cited in AI Overview answers. Pages that are structured data-complete are prioritised over equivalent pages without markup.
Which schema types generate rich results in Google in 2026? Article, Product, Review/ReviewSnippet, BreadcrumbList, Video, Event, Recipe, LocalBusiness, Organisation, Sitelinks Searchbox, JobPosting, and Course all continue to generate rich results. FAQ and HowTo no longer do for standard content.
How do I test whether my structured data is valid? Use Google's Rich Results Test (search.google.com/test/rich-results) for page-level validation. Google Search Console → Enhancements section shows live rich result status, errors, and warnings across your entire site.

