FAQ structured data
Checks for FAQPage schema - the most consumed schema by AI for direct answers.
¿Por qué importa esto?
FAQPage schema is the most direct path to AI citations. ChatGPT, Google AI Overviews and Perplexity use FAQ data to provide direct answers. A well-structured FAQ schema can multiply your traffic from AI sources.
¿Cómo se soluciona?
Add FAQPage JSON-LD with a mainEntity array. Each question is a Question with name (the question) and acceptedAnswer with text (the answer). Minimum 3 questions for optimal impact.
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 for FAQPage schema - the most consumed schema by AI for direct answers.
FAQPage schema is the most direct path to AI citations. ChatGPT, Google AI Overviews and Perplexity use FAQ data to provide direct answers. A well-structured FAQ schema can multiply your traffic from AI sources.
Add FAQPage JSON-LD with a mainEntity array. Each question is a Question with name (the question) and acceptedAnswer with text (the answer). Minimum 3 questions for optimal impact.
Ejemplo
Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.
<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. DIY SEO is free but time-intensive. An agency charges €500-€3,000 per month."
}
},
{
"@type": "Question",
"name": "How long does it take to see SEO results?",
"acceptedAnswer": {
"@type": "Answer",
"text": "On average 3-6 months for noticeable results, depending on competition and domain authority."
}
}
]
}
</script>