Rule page.schema.author-sameas-missing
Disambiguate your author/publisher entity with sameAs
page.schema.author-sameas-missing is a check in Crawlmind's site audit that grades medium-impact issues of this kind. This page explains why the rule matters and the exact fix.
Why it matters
This page marks up authored content and names an author or publisher (a Person or Organization), but that entity carries no `sameAs`. To an AI answer engine or a knowledge graph, an author without sameAs is just a name string — not a resolvable, known entity. `sameAs` links to authoritative profiles (Wikipedia, Wikidata, the official site, LinkedIn) are the primary signal used to resolve WHO the author is and attribute expertise to them. Engines that weight authored, expert content — which is most of them now — reward a disambiguated entity and largely ignore an anonymous one.
The fix
Add a `sameAs` array to the Person (author) and/or Organization (publisher) node:
```json
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "…",
"author": {
"@type": "Person",
"name": "Jane Doe",
"sameAs": [
"https://www.wikidata.org/wiki/Q…",
"https://www.linkedin.com/in/janedoe",
"https://janedoe.com"
]
},
"publisher": {
"@type": "Organization",
"name": "Acme",
"sameAs": ["https://www.wikidata.org/wiki/Q…", "https://www.crunchbase.com/organization/acme"]
}
}
```
Use the most authoritative, stable URLs you have — a Wikidata/Wikipedia entry is the strongest, followed by an official profile you control. Only list URLs that genuinely represent the same entity.