
Key Takeaway
Google fully removed FAQ rich results on May 7, 2026 (first restricted to gov/health sites in 2023). But FAQ schema matters more now, for AI. The catch: LLMs read your JSON-LD as plain text, not structured data, so the markup itself is not a citation lever. What gets cited is the visible question-and-answer content the schema mirrors. Work the two layers: keep valid JSON-LD to feed Google's understanding (which AI grounds on), and write 3-5 self-contained, 50-300 word answers that lead with the answer, because that is the text answer engines extract.
On May 7, 2026, Google quietly stopped showing FAQ rich results in Search. No accordion of questions under your listing, no extra real estate, no click-through bump. The feature that launched a thousand "add FAQ schema for more SERP space" posts is gone, and Google did not bother to explain why.
So here is the strange part. FAQ schema, the FAQPage structured data that marks up a list of questions and their answers so machines can read them, matters more today than it did when the rich result was alive. It just matters for a different reader. Not Google's blue links. The AI systems that now answer a growing share of your audience's questions before they ever reach a results page.
Most FAQ schema guides still sell you the dead feature. This one is about the live one. I will walk through what actually changed, what large language models do with your FAQ schema (it is not what the vendors claim), and how to implement FAQPage schema so ChatGPT, Perplexity, and Google's AI Overviews pull your answers into theirs. With real code.
The feature everyone optimized for is gone
The timeline is worth getting right, because it explains why so much published advice is now wrong.
In August 2023, Google restricted FAQ rich results to "well known, authoritative government and health websites." The rest of us lost the SERP feature overnight. Most people missed it, because the schema stayed valid and the markup kept validating clean.
Then on May 7, 2026, Google finished the job. FAQ rich results stopped appearing for everyone. The tooling follows on a schedule: the Search Console rich result report and the Rich Results Test drop FAQ support through June 2026, and the Search Console API ends its FAQ support in August 2026. Google added a deprecation notice to its docs and said nothing more.

Here is what did not change. Your existing FAQ schema is not a problem. Google has long held that unused structured data does not hurt a page, and FAQPage is still a valid Schema.org type. You do not need to rip it out. You need to understand what it is for now.
So why does FAQ schema still matter?
Because the question-and-answer format is the most extractable shape of content on the web. Extraction is the whole game in AI search, and a clean FAQ schema hands the machines a running start.
When someone asks ChatGPT or Perplexity a question, the system does not read your page the way a person does. It reads in fragments. It breaks the text into chunks, ranks them for relevance, and stitches the strongest ones into an answer with citations. A question followed immediately by its answer is already shaped like the output it wants. You did the chunking for it.
That is why FAQ schema content shows up so often in AI answers. It is not magic in the markup. It is the structure. And that gap, between the markup and the structure, is where almost every FAQ schema guide goes wrong next.
What AI actually does with your schema
Here is the uncomfortable truth: large language models do not parse your JSON-LD as structured data. They read it as text.
Schema markup is built to be machine-readable in a formal sense, a labeled set of key-value pairs a parser can interpret. Google's traditional systems use it that way. LLMs do not. When a model tokenizes your page, the JSON-LD inside your tag becomes just another stretch of words in the input, no more privileged than a paragraph.
In February 2026, the search researcher Mark Williams-Cook ran a clean test of this. He hid one piece of information, a made-up address, exclusively inside invalid, broken JSON-LD, with nothing visible on the page. Then he asked ChatGPT and Perplexity about it. Both pulled the address straight out of the broken schema. The lesson is blunt. The models read the script block as raw text, and the formal structure, valid or not, did nothing on its own.
So no, adding FAQPage schema does not flip a switch that makes ChatGPT cite you. The schema is not the lever you were told it was.

The two layers that actually move citations
If the FAQ schema is read as text, why mark anything up at all? Because FAQ schema works on two layers, and only one of them was ever the SERP feature you lost.
Layer one is indirect. Valid FAQ schema still feeds Google's understanding of your entities and relationships, which strengthens the organic rankings that AI systems lean on when they decide whom to trust. Most AI assistants ground their answers in conventional search results, so ranking well stays a backdoor into AI visibility. This is the layer the complete JSON-LD structured data guide is built around, and it is still the highest-ROI technical work you can do.
Layer two is direct. The visible questions and answers on your page, the ones your FAQ schema is meant to mirror, are what the model extracts and cites. This is the layer the deprecation made more important, not less.
Be honest about how much FAQ schema alone buys you. In one analysis of AI citations, pages with schema were about 36% more likely to earn a citation, and Perplexity showed a strong correlation between valid schema and being cited. But domain authority outweighed schema by roughly three and a half to one, and ChatGPT showed no positive lift at all. Schema helps. It is not a substitute for being a source worth citing, a gap I dig into in how to actually get cited in an AI Overview.
How to implement FAQPage schema correctly
The FAQ schema mechanics are simple, and they have not changed. A FAQPage holds a mainEntity array of Question items. Each Question has a name, the full question text, and a single acceptedAnswer of type Answer with a text property holding the full answer. Answers may contain basic HTML such as links and lists.
Here is a minimal, valid example:
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "Is FAQ schema still worth adding in 2026?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, though not for Google rich results, which Google removed in May 2026. FAQPage schema still helps search and AI systems understand your page, and the visible question-and-answer format it mirrors is the easiest structure for ChatGPT, Perplexity, and AI Overviews to extract and cite."
}
}, {
"@type": "Question",
"name": "Where does FAQPage schema go?",
"acceptedAnswer": {
"@type": "Answer",
"text": "In a JSON-LD script block on the page whose visible content contains the same questions and answers. Mark up only content a visitor can actually see on the page."
}
}]
}Three rules from Google's documentation still apply, and in the dual-layer world they matter more, not less:
- Mark up only content that is visible on the page. This was always Google policy. Now it is also the entire point, because invisible answers cannot be the visible Q&A that AI extracts.
- Do not repeat the same FAQ across many pages. Mark up one instance.
- No ads, no promotional filler in the answers. Answer the question.
FAQPage vs QAPage
People reach for FAQPage when they should use QAPage, and it is worth thirty seconds to get right. The two look similar and tell search engines very different things about who wrote the answers.
| FAQPage | QAPage | |
|---|---|---|
| Use when | You publish a list of questions and provide the single, definitive answer to each | A page poses one question and users submit competing answers |
| Typical page | Product FAQ, service explainer, a help article you authored | Forum thread, community Q&A, a support post with user replies |
| Who answers | The site owner | The community |
Pick the wrong one and you hand search engines a misleading signal about the source of your answers. If your page is genuinely a set of questions you ask and answer yourself, FAQPage is correct.
Writing answers that get pulled into AI responses
This is where the real work lives now, and it is content work, not code.
- Keep it to three to five questions per page. Past that, you dilute the page and give the model more room to grab a weaker answer.
- Write each answer to stand on its own in 50 to 300 words, across two to four sentences. That range is not arbitrary. It lines up with the 150 to 300 word chunks that retrieval systems tend to slice content into. An answer that needs the previous answer for context gets chopped in half.
- Lead with the answer, then explain. The model often keeps your first sentence and drops the rest. Make the first sentence the citable one.
- Use real questions your audience actually asks. Pull them from your search queries, your sales calls, the People Also Ask box. An FAQ that answers questions nobody asks gets cited by nobody.
Do this and the schema becomes almost a formality. The page already reads like an answer key, which is exactly what an answer engine wants. For the wider shift this sits inside, what answer engine optimization actually is lays out the full playbook.
When FAQ schema is not worth it
Skip it when the questions are filler. A block of invented questions bolted to the bottom of a page to "add schema" helps no one and can read as manipulative. Skip it when the answers are not genuinely on the page. And stop treating FAQ schema as a ranking trick, because since May 2026 there is no SERP feature left to win. The only reasons to add it now are the real ones: helping search and AI understand and extract your answers. Those are good reasons. They are just not the reason most guides still give. Among the structured data types still worth implementing in 2026, FAQPage is now a supporting player, not the headliner.
The bottom line
FAQ rich results are dead. FAQ content is more valuable than ever. That is the whole story in two sentences, and the gap between them is where the opportunity sits.
Keep your FAQPage markup, because it is cheap and it still feeds the systems that decide who ranks. But spend your real effort on the visible questions and answers, written tight, self-contained, and lead-with-the-answer, because that is the text AI lifts into the responses your customers now read instead of clicking. The brands that win the next phase of search are not the ones with the most schema. They are the ones whose answers are the easiest to quote.
Sources
- Changes to HowTo and FAQ rich results (Google Search Central, the August 2023 restriction)
- Google Drops FAQ Rich Results From Search (Search Engine Journal, the May 2026 removal and tooling timeline)
- FAQ (FAQPage, Question, Answer) structured data (Google Search Central documentation)
- FAQPage type (Schema.org)
- FAQ Schema for AI Answers: Does It Actually Get You Cited? (ZipTie, the Williams-Cook tokenization test, the dual-layer model, and citation correlations)
- The rise and fall of FAQ schema (Search Engine Land)
Is your site invisible to AI search?
Get a free AEO infrastructure audit and find out what your competitors are doing that you're not.
Get Your Free AuditFurther Reading
Industry sources we cite.
4 links · External
Frequently asked.
Continue with.
AEO & AI Search
The Complete Guide to Structured Data for AI Search: JSON-LD Schemas That Drive Citations
A comprehensive technical guide to implementing JSON-LD structured data that makes your site machine-readable for AI search platforms — with specific schema examples for B2B brands.
AEO & AI Search
Every structured data type Google still rewards in 2026 (and the 8 that don't)
Google quietly killed eight rich result types between 2023 and 2026. Here's the working list of what to ship now, and what to stop building
AEO & AI Search
What Is Answer Engine Optimization? The Complete Guide
The definitive guide to Answer Engine Optimization — what it is, how it differs from SEO, and why every enterprise brand needs an AEO strategy by 2026.