Entity & topic clarity
Checks if your page clearly identifies which entity or organization is behind it.
Why does this matter?
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.
How to fix it?
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.
This check scores from 0 to 100. Below 50 is a fail, 50 to 89 is a warning, 90 or above is good. After each crawl you see the score per page in your report, with a short note on what we found.
Frequently asked questions
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.
Example
Copy the code below and adapt the domain name, brand name and content to your situation.
<!-- 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>