Magazin · Fix-Taktik · Technical Deep-Dive
Technical Deep-Dive

Schema.org Markup for AI Overviews — All Relevant Types

Which Schema Types do Google AIO, ChatGPT, and Perplexity really use? Code examples and common mistakes.

PH
Philipp Helminger
Founder & Lead Developer · SEOlyze
· 📅 8. Mai 2026 · ⏱️ 9 Min Lesezeit · 🔄 Update: 8. Mai 2026

Why Schema is More Important in 2026

Schema.org markup is more important than ever in 2026 — not despite, but because of the shift to LLM-based search results. Structured data (JSON-LD) provides LLMs with clean, unambiguous access to your content, which they can parse unfiltered, instead of distilling meaning from HTML spaghetti.

The New Understanding of Schema

Traditionally, we used Schema for rich snippets in the SERPs — stars, prices, recipes, FAQ accordions. This is still relevant in 2026, but no longer the main purpose. The main purpose is: to provide LLMs with a machine-readable truth map of your content that they can use as a source of truth for their answers.

Specifically: When ChatGPT or AIO scans an article, they parse the HTML — but they preferentially resort to JSON-LD because author, publish date, organization, and topical tags are structured there. An article without JSON-LD is a readable document for the LLM. An article with clean JSON-LD is a preferred data point for the LLM.

In 2026, JSON-LD is what Sitemap.xml was in 2012: a technical detail that no one sees, but which makes the difference between "we might be read" and "we will be preferentially read."

What Our Data Shows

In our own Watchdog survey (SEOlyze, Q1 2026, approx. 1,800 pages across 4 industries), Schema coverage correlates measurably with AIO citation rate. Pages with complete Article Schema + Author Schema + Organization Schema are cited approx. 2.3× more frequently in AI Overviews than pages without any Schema. This is not pure causality (Schema-active pages are often otherwise better maintained), but the effect is robust and reproducible.

2.3x
Citation Rate Multiplier from Complete Schema Setup
68 %
Share of DACH Top 100 Sites with Article Schema (own survey 2026)
21 %
Share with Complete Author Schema (Massive Gap)
+34 %
Avg. AIO Citation Lift when Adding Author Schema

The most exciting finding: Author Schema is the biggest gap in the market. Most sites have Article and Organization Schema, but Author Schema is missing or half-heartedly implemented. Those who implement it here have a relatively simple lever with high impact — especially in the context of E-E-A-T for AI Search.

Schema as an E-E-A-T Bridge

Author and Organization Schema are the structural bridges through which machines recognize E-E-A-T signals. Those who provide an Author Schema block with knownFor, alumniOf, sameAs (LinkedIn, ORCID, personal website) signal expertise and authoritativeness much more directly than through text patterns in the About-the-Author block. Without Author Schema, your author attribution depends purely on HTML heuristics — with Schema, it is machine-unambiguous.

The 8 Most Important Schema Types

Anyone serious about Schema in 2026 should master at least these eight types. They cover 90+% of all relevant web content cases. For each type, a use case and a compact JSON-LD snippet that you can adapt directly.

1. Article

Use Case: Every blog article, magazine contribution, editorial. The absolute mandatory schema for content sites.

{literal}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "WDF/IDF 2026 — still relevant?",
  "datePublished": "2026-05-21T08:00:00+02:00",
  "dateModified": "2026-05-21T08:00:00+02:00",
  "author": {
    "@type": "Person",
    "name": "Philipp Helminger",
    "url": "https://seolyze.com/author/philipp-helminger/"
  },
  "publisher": {
    "@type": "Organization",
    "name": "SEOlyze",
    "logo": {
      "@type": "ImageObject",
      "url": "https://seolyze.com/logo.png"
    }
  }
}
</script>
{/literal}

2. FAQPage

Use Case: Pages with explicitly answered questions — typical for support sections, glossaries, how-to bottoms. LLMs love FAQ Schema because the Q&A structure is directly adoptable.

{literal}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [{
    "@type": "Question",
    "name": "Is WDF/IDF still relevant in 2026?",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": "Yes, as a baseline metric for term coverage, not as a sole optimization strategy."
    }
  }]
}
</script>
{/literal}

3. HowTo

Use Case: Step-by-step instructions. Caution: Google significantly reduced HowTo rich snippets in 2023 — but it remains valuable for LLM parsing because the step structure is directly extractable.

{literal}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "HowTo",
  "name": "Implement Schema.org Markup",
  "step": [
    { "@type": "HowToStep", "text": "Insert JSON-LD block in <head>" },
    { "@type": "HowToStep", "text": "Validate with validator.schema.org" },
    { "@type": "HowToStep", "text": "Cross-check with Google Rich Results Test" }
  ]
}
</script>
{/literal}

4. Product

Use Case: Every e-commerce product page and SaaS pricing page. Mandatory schema for shops if you want to appear in AIO shopping cards.

{literal}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "SEOlyze Pro Plan",
  "description": "SEO + GEO Toolkit for DACH Teams",
  "brand": { "@type": "Brand", "name": "SEOlyze" },
  "offers": {
    "@type": "Offer",
    "price": "99.00",
    "priceCurrency": "EUR",
    "availability": "https://schema.org/InStock"
  }
}
</script>
{/literal}

5. Organization

Use Case: Mandatory on the homepage and about pages. Defines your brand entity for machines, including sameAs to Wikidata, LinkedIn, Twitter, Crunchbase.

{literal}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "SEOlyze",
  "url": "https://seolyze.com",
  "logo": "https://seolyze.com/logo.png",
  "sameAs": [
    "https://www.linkedin.com/company/seolyze",
    "https://twitter.com/seolyze",
    "https://www.wikidata.org/wiki/Q12345678"
  ]
}
</script>
{/literal}

6. Person

Use Case: Author pages, team pages. The key to the E-E-A-T bridge. sameAs is mandatory (LinkedIn, ORCID, personal site).

{literal}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Philipp Helminger",
  "jobTitle": "Founder, SEOlyze",
  "url": "https://seolyze.com/author/philipp-helminger/",
  "sameAs": [
    "https://www.linkedin.com/in/philipphelminger/",
    "https://twitter.com/philipphelminger"
  ],
  "knowsAbout": ["SEO", "Generative Engine Optimization", "Content Strategy"]
}
</script>
{/literal}

7. BreadcrumbList

Use Case: All detail pages. Helps machines understand the site hierarchy and make correct contextualizations.

{literal}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://seolyze.com/" },
    { "@type": "ListItem", "position": 2, "name": "Blog", "item": "https://seolyze.com/blog/" },
    { "@type": "ListItem", "position": 3, "name": "Schema for AI Overviews" }
  ]
}
</script>
{/literal}

8. WebPage

Use Case: Generic wrapper schema if no more specific type fits — e.g., for pillar pages that are more than an article. Also useful for about and contact pages.

{literal}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "WebPage",
  "name": "Generative Engine Optimization Guide",
  "description": "The Definitive Guide to GEO 2026",
  "primaryImageOfPage": "https://seolyze.com/img/geo-hero.jpg",
  "lastReviewed": "2026-05-21"
}
</script>
{/literal}

Automatically Monitor Schema Coverage

SEOlyze checks all pages for existing Schema markup, identifies gaps compared to industry top 10, and helps with generator templates for Article, FAQPage, HowTo, and Person — specially optimized for DACH sites.

Try for 14 days free →

Common Mistakes

Schema implementations are widespread in 2026 — but cleanly implemented Schema setups are rare. In our Watchdog analysis, over 60% of DACH top 100 sites contain at least one of the following standard errors. Here are the seven most important ones I see most frequently in practice:

1. Missing sameAs in Organization

Organization Schema without sameAs properties (LinkedIn, Wikidata, Crunchbase) is half useless. Machines cannot uniquely identify your brand, and you lose the strongest brand entity lever. Solution: Populate sameAs with all authoritative profiles.

2. Empty or Generic Author Properties

"Author: Admin" or "Author: Editorial" are not author attributions. Machines interpret this as missing. Solution: Real Person entities with their own URL, sameAs, and knowsAbout properties.

3. Mixed-Namespace Conflicts

Multiple JSON-LD blocks on a page that provide conflicting information (e.g., two different author statements). Solution: Consolidate into one canonical Schema block per type per page.

4. JSON-LD Syntax Errors

Trailing commas, missing quotes, incorrect brackets. Google completely ignores defective JSON-LD blocks without an error message in the normal index. Solution: Always run through validator.schema.org before deploying.

5. datePublished without Timezone

"datePublished": "2026-05-21" is interpreted as unclear by some parsers. The correct format is ISO 8601 with timezone: "2026-05-21T08:00:00+02:00". Sounds pedantic, but it's relevant.

6. Incorrect or Missing Image Properties

Organization logo as a 200x60 banner instead of a square logo. Article without an image property. Solution: Images with actual pixel dimensions and correct Schema properties (ImageObject with width/height).

7. Reviews and Aggregate Ratings without Real Background

Fake reviews or invented aggregate ratings in Product Schema. Google has been issuing manual penalties for "spammy structured data" since 2023 — and LLMs recognize the discrepancy between Schema claims and actual reality. Solution: Only mark real reviews with Schema.

Warning: Type Selection Trap

Not everything that sounds like a Schema type is the right one. "BlogPosting" vs. "Article" vs. "NewsArticle" — those who switch indiscriminately here confuse machines. Rule of thumb: BlogPosting for blog content, NewsArticle for journalistic news content, Article as a generic fallback.

Validation + Monitoring

Schema markup is not a "implement once, forget forever" task. It is a maintenance discipline that requires regular validation and monitoring — otherwise, you lose coverage due to code refactorings, CMS updates, and template changes.

The Three Most Important Validation Tools

Monthly Schema Audit

Recommendation: A 30-minute audit monthly for medium sites, a 2-hour audit for large ones. Checklist:

  1. Go through the GSC Enhancement Report, identify new errors.
  2. Check 5-10 random pages per type with the Rich Results Test.
  3. validator.schema.org bulk check on new pages from the last month.
  4. Check Author Schema consistency (same person, same sameAs everywhere).
  5. Cross-check Organization Schema on the homepage — are all sameAs still current?

A monthly Schema audit prevents 90% of typical Schema problems. An annual audit prevents less than 30%.

My Take for 2026

Schema markup is the most thankless SEO discipline — no one sees it, no one applauds, but those who neglect it systematically lose out. In my 20 years, I've never seen a discipline with so much impact for so little effort. Anyone who doesn't have a complete Schema setup at the Article, Author, and Organization level in 2026 is leaving citation rate and AIO visibility on the table.

Practical start: Begin with the homepage (Organization + WebPage), then author pages (Person + sameAs), then the top 20 blog articles (Article + Author reference). This covers 80% of the effect and can be implemented in 1-2 weeks. For those who want to go deeper: our AI Overview optimization guide shows how Schema can be combined with content structure and topical authority. And for the brand entity aspect, I recommend our Brand Entity Optimization Guide as well as the Being Cited in ChatGPT Guide for further reading.

Schema is the mechanical foundation of LLM visibility in 2026. Those who have it have a measurable advantage. Those who don't, lose it — quietly, but consistently.

Häufige Fragen

Which Schema type is most important?

Three mandatory types: Article (for every blog post), FAQPage (for AIO-friendly Q&A sections), Organization (for brand entity).<\/p>

Should I use JSON-LD or Microdata?

JSON-LD. Google explicitly recommends it, it's cleaner to maintain, and LLMs parse it more reliably than Microdata attributes in HTML.<\/p>

Diesen Artikel teilen
LinkedIn X
📄

Diesen Leitfaden als PDF mitnehmen

Kostenlos per E-Mail. Der Artikel bleibt frei lesbar — du bekommst zusätzlich die kompakte PDF-Version zum Abspeichern und Teilen.

Double-Opt-in · 1 Bestätigungs-Mail · jederzeit abbestellbar.