Structured data
Checks if valid Schema.org structured data is present.
Waarom is dit belangrijk?
Structured data helps Google understand your page content and can lead to rich snippets in search results (ratings, FAQ, breadcrumbs, products). This significantly increases CTR.
Hoe los je het op?
Add JSON-LD structured data in the <head>. Use schema.org types that match your content (Article, Product, FAQPage, Organization). Test via the Google Rich Results Test tool.
Deze check scoort van 0 tot 100. Onder de 50 is een fail, 50 tot 89 een waarschuwing, 90 of hoger is goed. Na elke crawl zie je de score per pagina in je rapport, met een korte uitleg wat we vonden.
Veelgestelde vragen
Checks if valid Schema.org structured data is present.
Structured data helps Google understand your page content and can lead to rich snippets in search results (ratings, FAQ, breadcrumbs, products). This significantly increases CTR.
Add JSON-LD structured data in the <head>. Use schema.org types that match your content (Article, Product, FAQPage, Organization). Test via the Google Rich Results Test tool.
Voorbeeld
Kopieer de code hieronder en pas de domeinnaam, merknaam en inhoud aan naar jouw situatie.
<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",
"description": "Short description of what you do.",
"email": "[email protected]",
"sameAs": [
"https://www.linkedin.com/company/yourbrand",
"https://x.com/yourbrand"
]
}
</script>