FAQ structured data
Checks for FAQPage schema - the most consumed schema by AI for direct answers.
Warum ist das wichtig?
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.
Wie beheben Sie es?
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.
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 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.
Beispiel
Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.
<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>