FAQPage schema case study.
What we did:
Added FAQPage schema to 50 key pages.
Before/After (8 weeks):
| Metric | Before | After | Change |
|---|
| AI citations | 12 | 34 | +183% |
| FAQ content cited | 5% | 28% | +460% |
| Rich results | 0 | 42 | New |
Why it works:
AI systems ask questions. FAQ schema pre-packages answers.
When someone asks “What is X?”, AI looks for:
- Direct answers to that question
- Structured data indicating Q&A format
- Authoritative source signals
FAQ schema provides all three.
Implementation example:
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"@id": "https://example.com/faq#q1",
"name": "What is schema markup?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Schema markup is structured data..."
}
}]
}
The @id reference matters for entity linking.