TL;DR
FAQPage and HowTo schema have the highest AI citation impact (2-3x uplift). Product schema matters for purchase queries. Organization schema builds entity recognition. All must be server-rendered — not injected via GTM.
Not all structured data is equal for AI
SEO guides tell you to add structured data to every page. That's correct but incomplete. For AI search, certain schema types have dramatically higher impact on citation probability than others.
We tracked citation rates across hundreds of commerce pages at Angry Digital. The difference between schema types was stark: pages with FAQPage schema were cited 2-3x more than equivalent pages with only Article schema.
The high-impact schema types
FAQPage — the citation gold standard
FAQPage schema maps directly to the question-answer format AI responses use. When ChatGPT needs to answer "How do I track AI visibility?", a page with structured FAQ data is significantly easier to cite than a page with the same information buried in paragraphs.
1{
2 "@context": "https://schema.org",
3 "@type": "FAQPage",
4 "mainEntity": [{
5 "@type": "Question",
6 "name": "What is AI search optimization?",
7 "acceptedAnswer": {
8 "@type": "Answer",
9 "text": "AI search optimization is structuring content so AI-powered search engines cite your brand in their responses."
10 }
11 }]
12}Place FAQPage schema on product pages (common customer questions), blog articles (topic-related questions), and service pages (process and pricing questions). Not just your FAQ page.
HowTo — instructional content
HowTo schema is ideal for guides, tutorials, and process documentation. AI search engines frequently generate step-by-step responses, and HowTo schema provides the structured format they need.
Product — purchase-intent queries
Product schema helps AI search engines understand what you sell, at what price, and whether it's available. This is essential for commerce brands — when someone asks "best [product] for [use case]", Product schema increases your chance of being included.
Organization — entity foundation
Organization schema teaches AI who you are as an entity. It's the foundation for all other citations. Without it, AI may struggle to connect your content to your brand. Place it on your homepage and about page.
The implementation rule: server-rendered only
Every schema type above must be rendered in the server HTML response. If you're using Google Tag Manager, a Shopify app, or any JavaScript-based tool to inject schema, AI crawlers will not see it. Move all structured data to your page templates.
Test: run curl against your page and search for "application/ld+json". If it's not in the curl output, it's not visible to AI.
Patterns that don't move the needle
Generic Article schema (author, datePublished, headline) is important for basic content identification but provides minimal citation uplift on its own. BreadcrumbList helps AI understand site hierarchy but doesn't directly drive citations. WebPage schema is too generic to be useful.
The combination that works: Article + FAQPage + Organization on blog posts. Product + FAQPage on product pages. Organization + WebSite on the homepage.