Entity & topic clarity
Checks if your page clearly identifies which entity or organization is behind it.
Warum ist das wichtig?
AI agents need to know who you are to cite you as a source. Without clear entity identification (Organization schema, about page, og:site_name), AI can't link you to your brand or expertise.
Wie beheben Sie es?
Add Organization or Person JSON-LD schema with name, URL and logo. Use og:site_name, a meta author tag and link to an about page. Be consistent in naming across all pages.
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 if your page clearly identifies which entity or organization is behind it.
AI agents need to know who you are to cite you as a source. Without clear entity identification (Organization schema, about page, og:site_name), AI can't link you to your brand or expertise.
Add Organization or Person JSON-LD schema with name, URL and logo. Use og:site_name, a meta author tag and link to an about page. Be consistent in naming across all pages.
Beispiel
Kopieren Sie den Code unten und passen Sie Domain, Markenname und Inhalt an Ihre Situation an.
<!-- 1. Organization JSON-LD in <head> -->
<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."
}
</script>
<!-- 2. og:site_name in <head> -->
<meta property="og:site_name" content="YourBrand">
<!-- 3. Author meta tag -->
<meta name="author" content="YourBrand">
<!-- 4. Link to about page in footer -->
<a href="/about/" rel="author">About YourBrand</a>