Why FAQPage schema matters for AI
AI tools are fundamentally answer engines. When someone asks ChatGPT "how much does a plumber charge for an emergency call-out?", the AI searches for the most reliable, structured answer it can find. FAQPage markup turns your FAQ content into exactly that — a structured answer library that AI can pull from directly, rather than having to infer answers from unstructured paragraph text.
This is why FAQPage schema has an outsized impact on AI visibility relative to how easy it is to implement. It directly matches the query format AI receives from users, and it provides authoritative answers your business has explicitly endorsed.
The structure of FAQPage schema
FAQPage schema uses a simple structure: a parent FAQPage type containing a mainEntity array of Question types, each with a name (the question) and acceptedAnswer containing an Answer type with text.
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How much do you charge for an emergency call-out?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Our emergency call-out fee is £85 plus VAT, which covers the first hour. This applies 24 hours a day, 7 days a week."
}
},
{
"@type": "Question",
"name": "Are you Gas Safe registered?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. We are Gas Safe registered (registration number XXXXXX). You can verify our registration at gassaferegister.co.uk."
}
}
]
}
Which questions to include
Common implementation mistakes
Questions that don't match page content
Google requires that FAQPage schema questions and answers are present as visible content on the page. Schema that references questions not on the page will fail rich result eligibility.
Vague answers
"Contact us for more information" as an answer defeats the purpose. AI systems (and Google) reward specific, complete answers. Vague answers provide no citation value.
Generic questions not specific to the business
Generic questions like "what is schema markup?" on a plumber's website have no citation value. Every question should be directly relevant to your specific business, sector, and services.