Structured data richness
Checks if your site uses rich schema types that AI agents consume.
¿Por qué importa esto?
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.
¿Cómo se soluciona?
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.
Este check puntúa de 0 a 100. Bajo 50 es un fallo, 50 a 89 un aviso, 90 o más es bueno. Tras cada crawl ve la nota por página en el informe, con una breve explicación.
Preguntas frecuentes
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.
Ejemplo
Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.
<!-- 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>