Back to Structured Data
Structured Data

What is FAQPage schema?

Updated January 12, 2026GEO Expert Team

Summary

FAQPage is a Schema.org type for pages that present a list of questions and answers. It's implemented with mainEntity containing Question objects with acceptedAnswer. It helps search engines understand your FAQ content structure.

Detailed Answer

FAQPage is a Schema.org type for pages that present a list of questions and answers. It's implemented with `mainEntity` containing `Question` objects with `acceptedAnswer`.

Basic structure:
```json
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Question text here?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Answer text here."
}
}
]
}
```

Key requirements:
- Questions must be visible on the page
- Answers must match visible content
- One FAQPage per page
- Educational, not promotional

schemafaqpagejson-ld

    We use cookies for site functionality and analytics. See our Cookie Policy or visit Your Privacy Choices to opt out.