Technical

Structured Data for AI Citations: Which Schema Types Actually Work

Not all Schema.org types are equal for AI citation. Here are the ones that consistently drive citations, and the ones that do not matter as much as you think.

Neil Walsh·June 2026·7 min read

Schema.org structured data tells AI systems (and Google) what your content means, not just what it says. For AI citation specifically, structured data is one of the highest-leverage signals available: it is machine-readable, unambiguous, and directly maps to the question-and-answer format that AI systems use to generate responses.

Tier 1: Schema types that most directly drive AI citation

FAQPage

FAQPage schema is the single most impactful type for AI citation. It encodes a list of questions and authoritative answers in machine-readable format, exactly the structure that AI retrieval systems are optimised to extract and cite. Every page that answers common questions about your topic should have FAQPage schema. The same structure is what powers a direct spoken answer for voice assistants and voice-mode ChatGPT, which read out one answer aloud rather than listing links.

JSON-LD
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What is [your topic]?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Clear, direct answer in 2-4 sentences."
      }
    }
  ]
}

Article and BlogPosting

Article schema establishes authorship, publication date, and topical relevance. The most important fields for AI citation are: headline, author (with Person type and URL), datePublished, and publisher. Without Article schema, your content looks anonymous, which reduces citation confidence.

Organization

Organization schema on your homepage tells AI systems who you are. Name, URL, description, and contactPoint are the key fields. This is foundational: without it, AI systems cannot confidently attribute content to a real, identifiable entity.

Tier 2: High-value for specific content types

  • HowTo: step-by-step content; cited very frequently by AI for "how to" queries
  • Product: essential for ecommerce citation in AI shopping responses
  • Review and AggregateRating: drives citation in "best X" and comparison queries, see the complete Review schema implementation guide
  • Dataset: for pages with original research or statistics; signals data authority
  • BreadcrumbList: helps AI understand site structure and content hierarchy
  • VideoObject and PodcastEpisode: mark up recordings with the transcript field so AI engines can read and cite audio and video content the same way they cite an article, see video and podcast transcripts for AI citation

Tier 3: Lower direct impact on AI citation

SiteNavigationElement, WebPage, and ImageObject schema have limited direct impact on AI citation rates. They help Google understand your site structure but are not typically used by AI retrieval systems as citation signals.

Implementation: JSON-LD in the head

Always implement structured data as JSON-LD injected into the HTML head, not as Microdata attributes on visible elements. JSON-LD is cleaner, easier to maintain, and is the format explicitly recommended by Google and most AI companies.

Test your structured data with Google's Rich Results Test (search.google.com/test/rich-results) before deploying. Invalid schema is worse than no schema: it signals low technical quality.

Frequently asked questions

How many FAQ items should I include in FAQPage schema?

4-8 items is the optimal range. Fewer than 4 provides a limited citation surface. More than 10 risks diluting quality: AI systems are more likely to cite a page with 6 precise, specific FAQs than one with 20 generic questions.

Can I have multiple schema types on one page?

Yes, and you should. A blog post page typically has Article + FAQPage + BreadcrumbList, all three in separate script tags or as a @graph. Multiple schema types are additive, not conflicting, and give the page more citation surfaces.

Does Google's structured data validator also reflect what AI systems see?

Partially. Google's Rich Results Test validates the syntax of your schema and tells you if it qualifies for rich results. AI systems use Schema.org data independently of Google's rich result eligibility, so valid schema that does not qualify for rich results can still improve AI citation rates.

Free tool

See your AEO score in seconds

Paste your URL and get a full audit across all 9 AEO signals - schema, crawlers, E-E-A-T, and more.

Audit my site - it's free

Related reading

Technical

Why Schema.org markup is the single biggest lever for AI citation

May 2026
Technical

Is your robots.txt accidentally blocking ChatGPT and Claude?

May 2026