Three glowing schema cards — Organization, Article, and FAQPage — feeding into a central AI brain, with citation confidence rising on a chart to the right

Blog

Organization, Article, FAQPage: The Schema Every Business Needs

Organization schema defines your business as a distinct, verifiable entity — the foundation all other schema builds on. Article schema gives each page an author, a date, and a publisher that AI engines can trust. FAQPage schema converts your Q&A content into a machine-readable format that maps directly to AI query fan-out sub-questions. Together, these three schema types address the three most common reasons AI engines pass over a page: they don't know who published it (Organization), they can't verify its recency or authorship (Article), and they can't extract a clean answer to the specific sub-question being asked (FAQPage). All three are covered in detail in our JSON-LD implementation guide — this article explains the why behind each one.


Organization: the entity layer

Every AI engine maintains a model of the world's entities — businesses, people, products, places. When an AI is deciding whether to cite a source, one of its signals is whether it can verify who that source is. An Organization schema block is how you make that verification easy.

Without it, an AI system retrieving a passage from your page has to infer your business name from your domain, guess your category from your content, and hope it can find corroborating mentions elsewhere. With it, you're stating all of that plainly in a format designed for machine consumption.

The most important fields: name, url, description (what you do, in one sentence), foundingDate, address, and sameAs (links to your LinkedIn, Crunchbase, or other profiles AI engines already trust). The sameAs links are the entity resolution layer — they connect your Organization node to known knowledge graphs.

Put Organization schema in your site-wide template so it appears on every page, every time an AI fetches any part of your site.

Article: the trust and recency layer

AI engines weight freshness heavily. A passage from a page last updated in 2024 loses citation consideration to an otherwise identical passage updated last month. But "last updated" in the visible page copy isn't enough — the signal needs to be machine-readable.

Article schema with datePublished and dateModified gives AI engines a verifiable freshness signal. Combined with author and publisher, it answers the questions that determine citation trust: who wrote this, who stands behind it, and when was it last verified?

The minimum Article schema for every blog post: headline, description, datePublished, dateModified, author (a Person or Organization), publisher (Organization with logo), and mainEntityOfPage linking back to the page URL.

Update dateModified every time you revise a page. It's the cheapest freshness signal available and one of the clearest signals to AI that your content is being actively maintained.

FAQPage: the query-match layer

AI query fan-out breaks a user's question into roughly 8–12 sub-questions and retrieves the best passage for each. FAQPage schema converts your FAQ content into a machine-readable list of sub-question-answer pairs — which is exactly what the retrieval system is searching for.

A well-structured FAQPage block is effectively a pre-indexed map of the sub-questions your article answers. When the retrieval system fans out a query and generates a sub-question that matches one of your FAQ items, it can find your answer immediately, verify it against the schema, and cite it with high confidence.

Practical rules for FAQPage schema:

  • Each Question should be phrased the way a user would ask it, not as a section heading.

  • Each Answer should be answer-first (state the direct answer in the first sentence).

  • Keep answers under 300 words — long answers dilute extractability.

  • Every FAQ section you write should have corresponding FAQPage schema.


How they work together

A page with all three schema types signals, in machine-readable terms: "This content comes from a verified organization (Organization), was published and recently updated on a known date by a named author (Article), and directly answers these specific questions (FAQPage)." That's the complete trust and extractability case — the information an AI engine needs to confidently pull your passage into an answer.

Pages missing all three are opaque to machine verification. The AI might retrieve them on keyword similarity, but it will favor a verified, dated, entity-attributed passage over an identical unverified one every time.

For the exact code blocks and HTML placement to implement all three, see How to Add JSON-LD Schema That AI Engines Actually Read. For the broader mechanics of why query fan-out and passage retrieval reward this structure in the first place, see How AI Search Engines Actually Pick Their Sources.