How to FAQ schema.
FAQPage schema is the highest-hit-rate schema type for AI citations. It's also trivial to implement — a JSON-LD block in the page head, nothing more. Here's how to do it right.
- 01
Pick real questions, not marketing ones
Bad: 'Why is <Product> the best?'. Good: 'Does <Product> work without code access?'. Scrape your support tickets, r/<yourvertical>, and 'People also ask' on Google for questions people actually type. Aim for 5–8 per page.
- 02
Write answers in 40–120 words
Shorter than 40 words reads like a headline and gets deprioritized. Longer than 120 words becomes hard to quote in one shot. Write declaratively, with the answer in the first sentence and the justification in the next two.
- 03
Add the JSON-LD block
Paste this into the page head (or use your CMS's schema field): ```json { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [{ "@type": "Question", "name": "Does AIRRNK require code access?", "acceptedAnswer": { "@type": "Answer", "text": "No. You can verify your site with a meta tag or a DNS TXT record. Code access is only required for automatic fixes." } }] } ``` Repeat for each Q/A pair. Validate with the [Schema.org validator](https://validator.schema.org).
- 04
Render the same content visibly on the page
Search engines (and some LLM crawlers) penalize schema whose content isn't visible on the page. Always render your FAQ block as real HTML too — an accessible `<details>` / `<summary>` block works fine.
- 05
Validate and re-crawl
Use Google's Rich Results Test and Bing's Markup Validator. After validation, ping IndexNow or submit the URL in Search Console so the change is ingested fast.
What to expect
FAQPage schema typically lifts AI citation rate on a page by 15–40% within 30 days of Bing re-crawling. The variance is about whether you wrote the questions well — generic marketing questions produce near-zero lift, while questions phrased like real user queries produce the high-end result.
Written by
The AIRank Editorial Team
Research & editorial, AIRank
The AIRank editorial team runs the 47-point scanner, the Observer pings, and the GEO research programme every week. Writing is reviewed by the core engineers who build the Injector, Blaster, and Surgeon agents.
About the team →