We respect your privacy.

We use strictly necessary cookies to keep you signed in and to protect against CSRF. With your permission we also use a small amount of first-party analytics to improve the product. We do not sell your data and we do not use third-party advertising trackers. See our cookie policy and privacy policy .

← All learn topics

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.

Impact: mediumEffort: low

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.

References