Reference guide · technical-seo · Published 2026-08-16 · 4 min read
Legal entity schema (Organization and LocalBusiness)
Legal entity structured data: Organization, LocalBusiness and Corporation subtypes, legalName, identifiers and sameAs, and the pitfalls to avoid.
- ·The entity model
- ·The Organization block
- ·Common mistakes
What the entity page is
An "entity" in SEO is a distinct, addressable thing: a person, organization, product, or place. The Organization schema type is the concrete way to mark up a business entity so Google can understand that this URL, this address, and these social profiles all refer to one company. It does not directly raise rankings, but it does three useful things: it disambiguates the entity from same-named competitors, it feeds the search result "attribution" surfaces (like a knowledge panel when the signals are strong), and it gives AI assistants a consistent reference for your business.
The formal rule from the schema world: use the most specific type that applies. A restaurant is a Restaurant (a subtype of LocalBusiness which is a subtype of Organization); an online shop is an OnlineStore; a professional firm is ProfessionalService. Do not mark everything as LocalBusiness just because it is a business.
The minimum Organization block
Google's current guidance for Organization schema says there are no required properties; add the ones that apply, and prefer accuracy over padding. The practical minimum:
{
"@context": "https://schema.org/",
"@type": "Organization",
"name": "Acme Web Ltd",
"url": "https://acme.example",
"logo": "https://acme.example/logo.png",
"sameAs": [
"https://www.linkedin.com/company/acme",
"https://en.wikipedia.org/wiki/Acme_Web"
]
}
The sameAs array is the disambiguation work of the entity. Each entry must be a real external profile (LinkedIn, Wikipedia, Wikidata, Crunchbase, a local directory). These links let Google confirm "the company on this site is the same entity as the company in these profiles". Without sameAs there is no way to tie the entity to its external footprint.
The legal-identifier properties
Google recognizes the administrative properties of Organization, most useful when the site belongs to a registered company:
| Property | Meaning |
|---|---|
legalName | The official registered legal name (when different from name) |
iso6523Code | ISO 6523 identifier, ICD:value, e.g. 0060:1234567 (DUNS), 0199:... (LEI) |
address | PostalAddress for the registered/legal address |
Use these only when the value is real and factual, never invented for markup bulk. A guessed leiCode can make the entity mismatch its real identity.
Did you mean the site name, not the legal name?
The WebSite schema with name and a Publisher (Organization) is what attaches the site-level identity. The site name structured data guide is the pair for the WebSite piece. The typical setup is:
- One
Organizationblock with the legal name,url,logo,sameAson the homepage or About page. - A
WebSiteblock (withPublisherreferencing the same@id) on the site-wide head, so the site name in Search shows the brand while the entity resolves to the legal one.
Common mistakes
- over-marking every page with a full Organization. Google recommends once, on the homepage/About, not site-wide.
- Using
legalNamefor the visually-displayed name.nameis the display brand;legalNameis the registered name only when different. - Ghost
sameAs. Linking to a directory profile that does not exist or is not the entity hurts more than helps; verification signals that fail are worse than none. - Ignoring the subtype. Marking a physical shop as plain
Organizationrather thanLocalBusinessloses the address/hours surfaces the structured data guide describes.
Validate
Use Google's Rich Results Test (or the URL Inspection "Test live URL") to confirm the JSON-LD parses and the @id references resolve. The structured data types article has the broader table of which types still power surfaces in 2026; entity markup is the foundation the Product and Service pages build on.
When the entity is a person or a local business
- A local firm uses
LocalBusinesssubtype (e.g.ProfessionalService), plusaddress,openingHoursand ageowhen they apply. That's the route described in the ecommerce product SEO family for the address. - A personal site uses
Personwith the@idof the person; the samesameAsrule applies for disambiguation.
A person or one-person business that only has a LinkedIn and a directory rarely needs a legal iso6523Code; a clean name, logo, url, and sameAs is more than enough. Add the legal identifiers when the entity is a registered company the search engine could otherwise confuse.