Structured data richness
Checks if your site uses rich schema types that AI agents consume.
Warum ist das wichtig?
AI agents use structured data to understand your content. Generic schemas aren't enough - types like FAQPage, Article, Product and Organization are actively consumed by ChatGPT, Google AI Overviews and Perplexity.
Wie beheben Sie es?
Add specific JSON-LD schema types: Organization (who you are), Article/BlogPosting (content), FAQPage (questions), Product (offerings), BreadcrumbList (navigation). Use Google's Rich Results Test to validate.
Dieser Check bewertet von 0 bis 100. Unter 50 ist ein Fail, 50 bis 89 eine Warnung, 90 oder höher ist gut. Nach jedem Crawl sehen Sie die Note pro Seite im Report, mit einer kurzen Erklärung.
Häufige Fragen
Checks if your site uses rich schema types that AI agents consume.
AI agents use structured data to understand your content. Generic schemas aren't enough - types like FAQPage, Article, Product and Organization are actively consumed by ChatGPT, Google AI Overviews and Perplexity.
Add specific JSON-LD schema types: Organization (who you are), Article/BlogPosting (content), FAQPage (questions), Product (offerings), BreadcrumbList (navigation). Use Google's Rich Results Test to validate.
Beispiel
Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.
<!-- Schema 1: Organization (who you are) -->
<script type="application/ld+json">
{ "@context": "https://schema.org", "@type": "Organization",
"name": "YourBrand", "url": "https://www.yourdomain.com",
"logo": "https://www.yourdomain.com/images/logo.png" }
</script>
<!-- Schema 2: FAQPage (most cited by AI) -->
<script type="application/ld+json">
{ "@context": "https://schema.org", "@type": "FAQPage",
"mainEntity": [{ "@type": "Question",
"name": "How much does SEO cost?",
"acceptedAnswer": { "@type": "Answer", "text": "SEO costs vary widely..." } }] }
</script>
<!-- Schema 3: BreadcrumbList (navigation) -->
<script type="application/ld+json">
{ "@context": "https://schema.org", "@type": "BreadcrumbList",
"itemListElement": [{ "@type": "ListItem", "position": 1,
"name": "Home", "item": "https://www.yourdomain.com/" }] }
</script>