FAQ Schema Guide: JSON-LD and Google's 2026 Deprecation
Google stopped showing FAQ rich results on May 7, 2026. FAQPage remains a Schema.org type, but adding it is no longer a way to obtain an expanded FAQ listing in Google Search.
TL;DR
Google's official deprecation notice confirms that FAQ rich results stopped appearing on May 7, 2026. Keep useful answers for readers. Retain FAQPage markup only when it serves a real consumer or maintenance need, not a promised CTR uplift. The example below is for describing FAQs, not restoring the retired feature.
What FAQ Schema Describes Today
Schema.org defines FAQPage as a webpage presenting frequently asked questions. Its meaning is separate from whether a search engine supports a special display:
- Structured description: Question and Answer objects describe the Q&A content that readers can access
- No Google FAQ rich result: Correct markup does not re-enable the retired search feature
- Reader value: Clear answers about setup, delivery, or product limitations can still help visitors on the page
- Other consumers: Confirm a specific system uses the markup before investing in it; do not assume voice or AI citation benefits
Featured snippets and AI answers are separate search experiences. There is no FAQPage switch that guarantees selection for either.
FAQ Schema JSON-LD Code Template
This illustrative JSON-LD describes two questions. If you publish an equivalent block, show the same questions and answers in the page content and adapt them to the actual page:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is FAQ schema markup?",
"acceptedAnswer": {
"@type": "Answer",
"text": "FAQPage is a Schema.org type that describes a page of frequently asked questions. Google stopped showing FAQ rich results on May 7, 2026."
}
},
{
"@type": "Question",
"name": "How do I implement FAQ schema?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Describe the visible questions and answers with FAQPage, Question, and Answer objects, then validate the JSON-LD with the Schema.org validator."
}
}
]
}
</script>Critical: Use valid JSON, including commas between array items. A syntax check and Schema.org validation do not establish eligibility for any search feature.
Step-by-Step Implementation Guide
- 1Identify FAQ-Worthy Pages:
Start with pages where visitors need recurring questions answered. Do not add an FAQ section solely to chase an expanded Google result.
- 2Write Strategic Questions:
Use support questions, customer interviews, and relevant Search Console queries. Include as many useful questions as the topic needs, without inventing a numerical SEO requirement.
- 3Format Answers Correctly:
Answer directly and completely, with links when extra detail helps. There is no universal FAQ word-count requirement. Have a subject expert review sensitive advice.
- 4Add JSON-LD to HTML:
If a downstream system needs the markup, output an application/ld+json script in the page head or body. Use safe JSON serialization rather than concatenating untrusted text into a script.
- 5Validate Schema:
Use the Schema.org validator for vocabulary and syntax checks. Google's Rich Results Test concerns supported Google features, not general FAQPage validity.
- 6Verify the Published Page:
Check the rendered answers, JSON-LD, and crawl accessibility after deployment. Recrawling does not restore FAQ rich results, and there is no guaranteed indexing timetable.
Content and Markup Maintenance Rules
The old Google FAQ eligibility checklist is no longer a path to a rich result. These practices still help keep structured data accurate and maintainable:
- Match accessible content: Describe answers users can read, including accessible expandable sections; do not invent answers only in metadata
- Answer genuine questions: Explain benefits and limitations accurately rather than disguising unsupported advertising as an answer
- Use a consistent source: Generate the visible FAQ and any corresponding markup from the same content where possible
- Avoid conflicting duplicates: Check whether your theme, CMS, or plugin already outputs the same answers
- Choose the right model: Do not relabel an FAQ as QAPage or HowTo to chase another search feature. Those types describe different content, and HowTo rich results are also retired
Should You Keep Existing FAQ Markup?
A practical maintenance checklist:
- Identify the consumer: If FAQPage exists only for Google's retired rich result, it is not a new growth project
- Keep changes scoped: Removing unused FAQ markup should not remove valid Product, Article, or breadcrumb data
- Maintain factual answers: Update policies, availability, and instructions when the underlying facts change
- Measure reader outcomes: Assess task completion or support needs without attributing traffic changes to a retired feature
For other page types, use the schema markup guide and generator and validator comparison. Google's general structured-data policies still require truthful content and do not guarantee rich results.
Prioritize Useful SEO Changes
Focus on accurate content and relevant, supported structured data. Review any automated suggestion against the actual page and the current search-engine documentation before publishing.
Try SEOLOGY FreeRelated Posts:
Tags: #FAQSchema #StructuredData #RichResults