Key Takeaways
- The sameAs property in Schema markup tells AI and search engines "this URL refers to the same entity as my website" -- it is the primary mechanism for entity disambiguation across the web
- AI models use sameAs to build an entity graph of your brand, cross-referencing your website with LinkedIn, Wikipedia, Wikidata, and other platforms before deciding whether to cite you
- Wikipedia and Wikidata are the highest-priority sameAs URLs, followed by LinkedIn, Google Business Profile, and YouTube
- Both Organization and Person schemas should include sameAs -- companies link their brand profiles, individuals link their professional profiles
- Common mistakes include dead links, linking to wrong profiles, and mixing personal accounts with company accounts -- all of which create entity confusion that can suppress AI visibility
Not sure if your structured data is helping or hurting? Scan your website for free -- AImetrico checks your Schema markup, sameAs links, and AI visibility in 60 seconds.
Table of Contents
What Is the sameAs Property?
The sameAs property is a Schema.org attribute that declares: "this URL refers to the same entity as the one described here." When you add a LinkedIn company page URL to your Organization schema's sameAs field, you are telling every search engine and AI model that processes your page: "the company described on this website is the same company found at this LinkedIn URL."
This sounds simple, but the implications are significant. The web is full of entities with identical or similar names. There are dozens of companies called "Atlas" and hundreds of people named "David Chen." Without explicit connections between profiles, AI models have to guess which "Atlas" you mean -- and guessing leads to errors, omissions, or worse, your brand being confused with someone else's.
The sameAs property eliminates that guessing. It is part of the broader JSON-LD structured data system that helps machines understand your content, and it works alongside other Schema types like Organization and Person to build a complete picture of who you are.
In Schema.org's own definition, sameAs is: "URL of a reference Web page that unambiguously indicates the item's identity." The key word is unambiguously. Each sameAs URL should be a page that is clearly, obviously about the same entity -- not a page that merely mentions you.
Why sameAs Matters for AI Visibility
AI models like ChatGPT, Gemini, and Perplexity do not simply retrieve web pages -- they resolve entities. Before an AI cites your brand in a response, it needs to be confident about who you are, what you do, and whether you are a trustworthy source. The sameAs property directly supports three processes that determine whether AI mentions your brand:
Entity disambiguation
When someone asks ChatGPT about "Stripe," the model needs to distinguish between Stripe the payments company, stripe as a pattern, and any other entity with that name. sameAs URLs pointing to Stripe's Wikipedia page, Wikidata entry, and LinkedIn profile give AI a web of cross-references that resolve the ambiguity instantly. Without these links, AI must rely on context clues alone -- which is slower, less reliable, and more likely to produce errors.
Knowledge Graph integration
Google's Knowledge Graph, Bing's entity database, and the internal knowledge representations of LLMs all rely on cross-platform references to build entity profiles. The sameAs property is the standard mechanism for feeding these systems. When Google sees that your Organization schema links to a Wikidata entry, a LinkedIn page, and a Crunchbase profile, it builds a richer Knowledge Graph card for your brand. That card, in turn, informs how Google Gemini and AI Mode reference you.
Trust and authority signals
AI models evaluate E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness) across your entire web presence, not just your website. sameAs is the technical mechanism that tells AI: "here are all the places you can verify who we are." A brand with consistent, active profiles on LinkedIn, YouTube, Wikipedia, and Google Business Profile -- all connected via sameAs -- presents a stronger authority signal than a brand that exists only on its own domain.
This matters because AI SEO is fundamentally entity-based. AI models select sources based on entity confidence -- how certain they are about what an entity is and whether it is credible. sameAs is the single most direct way to increase that confidence.
Which URLs to Include (Priority Order)
Not all sameAs URLs carry equal weight. Here is the priority order, based on how heavily AI models and Knowledge Graph systems rely on each source:
Tier 1: Highest priority (include if available)
| Platform | Why it matters | URL format |
|---|---|---|
| Wikipedia | The canonical reference for entity resolution across all AI systems | https://en.wikipedia.org/wiki/Your_Company |
| Wikidata | Machine-readable entity database; feeds Knowledge Graphs directly | https://www.wikidata.org/wiki/Q12345678 |
| Google Business Profile | Primary source for local and business entity data in Gemini | https://maps.google.com/?cid=1234567890 |
| LinkedIn (company page) | Strongest professional authority signal; verified company data | https://www.linkedin.com/company/your-company |
Tier 2: High priority
| Platform | Why it matters | URL format |
|---|---|---|
| YouTube (channel) | Cited in 16.1% of Perplexity responses; strong entity signal | https://www.youtube.com/@yourchannel |
| X/Twitter | Real-time entity data; directly feeds Grok; supports social proof | https://x.com/yourcompany |
| GitHub | Essential for tech companies; demonstrates expertise | https://github.com/yourcompany |
| Crunchbase | Business entity data widely used by AI for company information | https://www.crunchbase.com/organization/your-company |
Tier 3: Valuable additions
| Platform | Why it matters | URL format |
|---|---|---|
| Facebook | Large entity database; supports brand recognition | https://www.facebook.com/yourcompany |
| Instagram | Visual brand identity; growing entity signal | https://www.instagram.com/yourcompany |
| Industry directories | Sector-specific authority (e.g., Clutch, G2, TripAdvisor) | Varies by industry |
| Review sites | Trust signals (e.g., Trustpilot, BBB) | Varies by platform |
Recommended count: 5-15 sameAs URLs. Every link must point to a live, active, clearly branded profile. An abandoned Twitter account with 3 followers from 2019 does more harm than good.
Implementation: Organization sameAs
The most common use of sameAs is within your Organization schema. This should be placed on your homepage (and ideally on every page as part of your site-wide structured data). Here is a complete example:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Acme Software",
"url": "https://acmesoftware.com",
"logo": {
"@type": "ImageObject",
"url": "https://acmesoftware.com/logo.png"
},
"description": "Acme Software builds project management tools for distributed engineering teams.",
"foundingDate": "2018",
"sameAs": [
"https://en.wikipedia.org/wiki/Acme_Software",
"https://www.wikidata.org/wiki/Q98765432",
"https://www.linkedin.com/company/acme-software",
"https://maps.google.com/?cid=1234567890123456",
"https://www.youtube.com/@acmesoftware",
"https://x.com/acmesoftware",
"https://github.com/acme-software",
"https://www.crunchbase.com/organization/acme-software",
"https://www.facebook.com/acmesoftware",
"https://www.instagram.com/acmesoftware"
]
}
Key implementation notes:
- Order matters for readability, not for processing. Put your highest-authority URLs first (Wikipedia, Wikidata) so that human reviewers see them immediately.
- Use canonical URLs only. LinkedIn company pages have a canonical format:
https://www.linkedin.com/company/your-slug. Do not use shortened URLs, tracking URLs, or URLs with query parameters. - Match the entity exactly. Every sameAs URL must point to a page about the same legal entity described in the
namefield. If your Organization name is "Acme Software Inc." but your LinkedIn page is for "Acme Group Holdings," that is a mismatch. - Include the
@typethat fits your business. If you are a local business, useLocalBusinessor a more specific subtype likeRestaurantorLegalService. The sameAs property works on all Organization subtypes.
Implementation: Person sameAs
For individuals -- particularly founders, authors, and key team members -- the Person schema with sameAs strengthens both personal authority and the E-E-A-T signals that AI models evaluate. This is especially important for content authors, because AI models check whether the person who wrote an article has a verifiable identity and relevant expertise.
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Sarah Chen",
"url": "https://acmesoftware.com/team/sarah-chen",
"jobTitle": "Chief Technology Officer",
"worksFor": {
"@type": "Organization",
"name": "Acme Software",
"url": "https://acmesoftware.com"
},
"knowsAbout": ["Distributed Systems", "API Design", "Developer Tools"],
"sameAs": [
"https://www.linkedin.com/in/sarahchen",
"https://github.com/sarahchen",
"https://scholar.google.com/citations?user=XXXXXXX",
"https://x.com/sarahchentech",
"https://www.oreilly.com/pub/au/sarah-chen"
]
}
When to use Person sameAs:
- Article authors -- Add Person schema with sameAs to every article's author bio. This connects the author to their professional profiles, giving AI models confidence that the content was written by a real expert.
- Founders and executives -- On the About page or Team page, use Person schema for key leadership. This strengthens the overall entity profile of the organization.
- Subject matter experts -- If your company publishes thought leadership, the credibility of your experts directly impacts whether AI cites your content. A Person schema linking to Google Scholar, published books, or conference speaking pages signals deep expertise.
Person sameAs URLs should focus on professional profiles. LinkedIn, GitHub, Google Scholar, published author pages (O'Reilly, Amazon Author Central), and conference profiles are all strong choices. Personal social media accounts (personal Instagram, personal Facebook) are generally less useful unless the person is a public figure whose personal brand is integral to their professional identity.
Common Mistakes and How to Avoid Them
Based on analysis of thousands of websites' structured data, these are the most frequent sameAs errors -- and each one can actively harm your AI visibility:
1. Dead links (404 errors)
Profiles get deleted, URLs change, platforms restructure. A sameAs URL that returns a 404 is worse than no URL at all: it signals to AI that your entity data is unreliable. Fix: Audit every sameAs URL quarterly. Automate the check with a simple HTTP status monitor.
2. Wrong profiles (entity mismatch)
This happens more often than you might expect: a company called "Summit" links to a LinkedIn page for a different company also called "Summit." AI models that follow the link will associate your brand with someone else's data. Fix: Click every sameAs URL and verify it displays your entity -- not a namesake.
3. Mixing personal and company profiles
A company's Organization schema should link to the company's LinkedIn page, not the CEO's personal LinkedIn. Similarly, a Person schema should link to individual profiles, not the company page. Mixing them confuses entity resolution. Fix: Maintain strictly separate sameAs lists for Organization and Person schemas.
4. Including irrelevant or low-authority pages
Linking to a random blog post that mentions your company, a press release on a wire service, or a directory listing with no reviews does not strengthen your entity -- it dilutes it. sameAs should point to pages that are about your entity, not pages that merely mention it. Fix: Apply the test: "Does this URL unambiguously represent my entity?" If the answer is no, remove it.
5. Using tracking URLs or shortened links
https://bit.ly/3xYz or https://linkedin.com/company/acme?utm_source=schema are not canonical URLs. AI models and Knowledge Graph systems may not follow redirects or may misinterpret the URL. Fix: Always use the clean, canonical version of every URL.
6. Stale or abandoned profiles
A Twitter/X account last active in 2020 with 12 followers signals neglect, not authority. An empty YouTube channel with zero videos suggests the entity created a placeholder and walked away. Fix: Only include profiles that are active, maintained, and clearly branded. If a profile is abandoned, either revive it or remove it from sameAs.
How to Audit Your sameAs Consistency
Entity consistency -- using the same name, description, and branding across all platforms -- is as important as the sameAs links themselves. AI models cross-reference information from every sameAs URL to build your entity profile. If your LinkedIn says "Acme Software" but your Crunchbase says "Acme Software, Inc." and your Facebook says "Acme SW," the AI has three slightly different entities to reconcile. Here is how to audit:
Step 1: Extract your current sameAs URLs
Use Google's Rich Results Test or Schema Markup Validator to view your structured data. Copy every sameAs URL into a spreadsheet.
Step 2: Check each URL for status and accuracy
For each URL, verify:
- HTTP status: Does it return 200? (Not 301, 404, or 500)
- Entity match: Does the page clearly represent your brand/person?
- Name consistency: Is the entity name identical (or acceptably close) to your Schema name?
- Description consistency: Does the description align with your Schema description?
- Logo/branding: Does the profile use your current logo and branding?
Step 3: Cross-reference entity data
Compare the following fields across all profiles:
- Name (exact legal name or consistent brand name)
- Address (for local businesses -- must match Google Business Profile)
- Phone number (must be identical across all platforms)
- Website URL (must point to the same domain listed in your Schema)
- Description (core positioning should be consistent)
Step 4: Fix inconsistencies first, then update sameAs
Update the profiles themselves before updating your Schema. There is no point linking to a profile that has outdated information -- the AI will find the inconsistency and treat your entity data as less reliable.
This audit process connects directly to entity-based content strategy. Your sameAs links are only as strong as the profiles they point to.
Impact on AI Entity Recognition
The connection between sameAs and AI citation behavior comes down to a concept called entity confidence. When an AI model considers mentioning a brand in a response, it evaluates how certain it is about that entity. sameAs directly increases entity confidence in several ways:
More cross-references = higher confidence
An AI model that finds your brand described consistently on your website, LinkedIn, Wikipedia, Crunchbase, and YouTube has five independent data points to verify your identity. An AI model that only finds your website has one. More cross-references reduce the risk that the AI confuses you with another entity or misrepresents your offerings.
Knowledge Graph cards improve Gemini visibility
Google Gemini and AI Mode pull heavily from Google's Knowledge Graph. The Knowledge Graph, in turn, is built from structured data -- including sameAs. Websites with complete Organization schema and 5+ sameAs URLs are significantly more likely to have a Knowledge Graph card, which feeds directly into Gemini's entity resolution system.
Entity linking powers multi-platform visibility
When AI models can confidently resolve your entity, they can also connect mentions of your brand across different contexts. A research paper citing your product, a Reddit discussion about your service, and a YouTube review of your tool all become linked to the same entity. This gives AI a richer understanding of your brand's reputation and expertise -- which translates directly into more frequent and more positive citations.
The compounding effect
sameAs does not work in isolation. It amplifies every other AI SEO effort you make. Structured content becomes more citable when the AI knows who published it. Author expertise becomes more credible when Person schemas link to verifiable profiles. Technical access matters more when the AI actually wants to cite you. Think of sameAs as the connective tissue that holds your entire AI visibility strategy together.
Frequently Asked Questions
What is the sameAs property in Schema markup?
The sameAs property is a Schema.org attribute that tells search engines and AI models that a URL refers to the same entity as the one described in your structured data. For example, adding your LinkedIn company page URL as a sameAs value on your Organization schema tells AI: "this LinkedIn page is about the same company as this website." It is the primary mechanism for entity disambiguation and Knowledge Graph building.
How many sameAs URLs should I include?
Include between 5 and 15 sameAs URLs. Focus on quality over quantity: every URL must point to a live, active profile that clearly represents the same entity. A concise list of 6-8 authoritative profiles (Wikipedia, Wikidata, LinkedIn, Google Business Profile) is more valuable than 20 links that include abandoned or barely-used accounts.
Does sameAs help with AI visibility in ChatGPT and Gemini?
Yes. AI models use entity resolution to determine which brands and people to cite. The sameAs property helps AI models connect your website to your profiles across the web, building a stronger entity graph. When AI can confidently identify who you are by cross-referencing multiple sources, it is more likely to mention and recommend your brand in its responses. Read more about how this fits into overall AI search optimization.
Should I use sameAs for both Organization and Person schemas?
Yes. Organization sameAs links your company's social profiles, directory listings, and knowledge base entries. Person sameAs links individual team members' professional profiles. Using both strengthens your overall entity presence and supports E-E-A-T signals that AI models rely on for trust evaluation.
What is the most important sameAs URL to include?
Wikipedia and Wikidata are the highest-priority sameAs URLs because they serve as canonical reference points for entity resolution in both traditional search and AI systems. If your organization or person has a Wikipedia page, it should always be the first sameAs entry. If no Wikipedia page exists, prioritize Wikidata, LinkedIn, and Google Business Profile.
Can wrong sameAs URLs hurt my SEO or AI visibility?
Yes. Linking to a profile that belongs to a different entity, including dead URLs that return 404 errors, or mixing personal and company profiles creates entity confusion. AI models may associate your brand with incorrect information, or fail to resolve your entity entirely. Always audit sameAs URLs quarterly to ensure accuracy.
Is your structured data connecting the dots?
Check your Schema markup, sameAs links, and AI visibility in one free scan. See exactly what ChatGPT, Gemini, and Perplexity know about your brand.
Trusted by 2,400+ websites -- No credit card required