1. Definition
The sameAs property in Advanced Schema.org is a critical technical component of Generative Engine Optimization (GEO). It is used to explicitly declare that a local Entity (like a brand, product, or person) defined on a webpage is semantically identical to, and therefore shares authority with, a corresponding canonical Entity defined in a trusted, external Knowledge Graph.
By implementing sameAs, a brand signals to Large Language Models (LLMs) that its local facts should be mapped to, and validated against, highly authoritative third-party repositories.
| Property | Purpose | Trusted External Repositories |
sameAs | Establishes Entity Equivalence and Verifiability. | Wikidata, Wikipedia (article URL), LinkedIn (official profile), official social media (X, Facebook), and official industry databases (e.g., ISNI). |
2. The Mechanics: Knowledge Graph and Entity Authority
The sameAs property acts as a high-confidence signal, directly influencing the LLM’s understanding of the brand’s identity and trustworthiness.
Entity Resolution
- Local Definition: A brand defines its Entity using Schema.org (e.g.,
OrganizationorProduct). - External Validation: The
sameAsproperty provides a link to the official, external reference (e.g., the official Wikidata entry). - LLM Mapping: The LLM and the underlying Knowledge Graph (like Google’s) use the
sameAslink to merge the local facts with the globally validated facts from the trusted source. This is called Entity Resolution.
Boosting Authority and Trust
By linking to a trusted external source (especially a global, curated graph like Wikidata), the brand’s local facts immediately inherit a high level of Citation Trust Score. The LLM trusts the local information because it can be verified against the high authority of the linked external graph.
3. Implementation: Technical Best Practices for GEO
The sameAs property is implemented as an array of URLs within the primary Schema.org block (JSON-LD).
Focus 1: Canonical External Linking
Always link to the most authoritative, singular representation of the entity.
- Wikidata First: Prioritize the Wikidata QID URL for the company or product, as Wikidata is a primary, structured source for many global knowledge graphs.
- Official Profiles: Include links to official, verified social media profiles and professional identity databases (e.g., LinkedIn).
JSON-LD Example:
Code snippet
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "AppearMore Content",
"url": "https://appearmore.com",
"sameAs": [
"https://www.wikidata.org/wiki/Q123456",
"https://twitter.com/AppearMore_Official",
"https://www.linkedin.com/company/appearmore-content"
]
}
Focus 2: Entity Consistency
The text content and the facts contained in the local Schema.org block must be entirely consistent with the facts on the linked external sources.
- Verification: If the
sameAslinked Wikidata entry lists the company’s founding date as 2018, the local Schema and the visible HTML text should all state 2018. Inconsistency will be interpreted by the LLM as a low-trust signal, damaging the Entity Authority score.
Focus 3: Applying to Non-Organizational Entities
The sameAs property is not just for companies. It should be used on any citable entity:
- Authors (Person): Use
sameAsto link a content author’s profile to their LinkedIn or ORCID (for academic/technical writers) to establish their E-E-A-T (Expertise, Experience, Authoritativeness, and Trustworthiness). - Products: Use
sameAsto link to standardized industry product databases or government registration sites.
4. Relevance to Generative Engine Intelligence
By using sameAs, a brand ensures its identity is unambiguous in the eyes of the AI. This is foundational for securing Citation Dominance, as the LLM favors facts originating from highly verified entities. A high-confidence entity is crucial for winning complex, comparison-based queries in generative answers.