AI SEO

Structured data richness

Checks if your site uses rich schema types that AI agents consume.

Pourquoi est-ce important ?

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.

Comment le corriger ?

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.

Ce check note de 0 à 100. Sous 50 c’est un échec, 50 à 89 un avertissement, 90 ou plus c’est bon. Après chaque crawl vous voyez la note par page dans le rapport, avec une courte explication.

Questions fréquentes

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.

Exemple

Copiez le code ci-dessous et adaptez le nom de domaine, la marque et le contenu à votre situation.

<!-- 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>
Essai gratuit