What Is Organization Schema? The Complete Guide (2026)
What Is Organization Schema?
Organization schema is a type of structured data — defined in the Schema.org Organization vocabulary — that communicates the identity of your organization to Google and AI search systems. It is one of the most important site-wide schemas because it forms the foundation of your entity in Google's Knowledge Graph, which powers Knowledge Panels, AI Overview answers, and voice search responses about your brand.
Organization schema requires name (error if missing) and either logo or image (error if both missing). Key recommended properties are url, address, contact information (contactPoint, telephone, or email), sameAs (social profiles), and description. For multi-location organizations, use subOrganization with each location having its own name, address, and telephone.
Why Organization Schema Matters for SEO and AI Visibility
Organization schema is the primary signal that helps Google distinguish your brand from similarly named entities. Without it, Google must infer your identity from unstructured content — a process that is error-prone and often results in incorrect Knowledge Panel information.
For AI search systems in 2026, entity recognition is critical. When a user asks "Who is [your company]?" or "Does [your company] have a location in [city]?", AI assistants like Google AI Overviews and Perplexity draw on your Organization schema to construct accurate answers. Research from the Princeton/Georgia Tech GEO study (ACM KDD 2024) found that pages with complete entity markup are cited by AI engines at significantly higher rates than pages relying solely on unstructured text.
Organization Subtypes: Use the Most Specific Type
The generic Organization type works, but Greadme and Google both benefit from the most specific subtype that describes your entity. Common subtypes include:
| Subtype | Use for |
|---|---|
Corporation | Incorporated businesses |
EducationalOrganization | Schools, universities, training providers |
GovernmentOrganization | Government bodies and agencies |
NGO | Non-governmental organizations, charities |
MedicalOrganization | Hospitals, clinics, health systems |
SportsOrganization | Sports teams and leagues |
Greadme Required Properties
Google's official structured data documentation states there are no required properties for Organization schema — all properties are recommended. The following properties are required by Greadme's validator, because their absence significantly reduces Knowledge Panel eligibility and entity understanding:
| Property | Greadme rule |
|---|---|
name | Greadme errors if missing (−20 pts). legalName does not substitute for name — Greadme errors if legalName is present but name is absent |
logo or image | Greadme errors if both are missing (−15 pts). Google's logo guidelines require a minimum 112×112 px image for Knowledge Panel eligibility |
Recommended Properties
| Property | Notes |
|---|---|
url | Your organization's website URL. Helps Google uniquely identify your entity. Greadme warns and deducts 10 points if missing |
address | PostalAddress with as many fields as possible. Greadme warns if absent (single-location organizations only) |
contactPoint | Include telephone, contactType, and optionally areaServed |
telephone | Can be top-level or inside contactPoint |
email | Contact email address |
sameAs | Array of URLs to your social media profiles (LinkedIn, Twitter/X, Facebook, Wikipedia page, Wikidata). Critical for entity disambiguation |
description | A clear description of what your organization does. Greadme warns if missing |
legalName | Official registered name if different from name |
subOrganization | Array of child organization/location objects. Used for multi-location setups |
Organization Schema Code Example
A complete single-location organization schema:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Acme Corp",
"url": "https://acmecorp.com",
"logo": "https://acmecorp.com/logo.png",
"description": "Acme Corp makes industrial tools.",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Main St",
"addressLocality": "Chicago",
"addressRegion": "IL",
"postalCode": "60601",
"addressCountry": "US"
},
"telephone": "+1-312-555-0100",
"email": "info@acmecorp.com",
"sameAs": [
"https://www.linkedin.com/company/acmecorp",
"https://twitter.com/acmecorp"
]
}Multi-Location Organizations: Using subOrganization
When an organization operates multiple locations, place each location as a child object inside subOrganization. Each child should have its own name, address, and telephone. The parent organization acts as the brand identity; the children describe physical locations.
Greadme counts the number of locations and warns if any subOrganization is missing critical fields. For large chains with many locations, this deduction is scaled to a maximum of 10 points so the overall score remains meaningful.
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Sunrise Bakery",
"url": "https://sunrisebakery.com",
"logo": "https://sunrisebakery.com/logo.png",
"subOrganization": [
{
"@type": "Organization",
"name": "Sunrise Bakery — Downtown",
"address": {
"@type": "PostalAddress",
"streetAddress": "10 Baker St",
"addressLocality": "New York",
"postalCode": "10001",
"addressCountry": "US"
},
"telephone": "+1-212-555-0101"
},
{
"@type": "Organization",
"name": "Sunrise Bakery — Brooklyn",
"address": {
"@type": "PostalAddress",
"streetAddress": "55 Atlantic Ave",
"addressLocality": "Brooklyn",
"postalCode": "11201",
"addressCountry": "US"
},
"telephone": "+1-718-555-0102"
}
]
}The sameAs Property: Your Most Important Entity Signal
The sameAs property is an array of URLs that point to other authoritative pages describing the same organization. Google and AI systems use these links to merge information from multiple sources into a single entity record.
The most valuable sameAs targets are:
- Your LinkedIn company page
- Your Twitter/X profile
- Your Facebook page
- Your Wikipedia article (if one exists)
- Your Wikidata entry (e.g.,
https://www.wikidata.org/wiki/Q12345) - Your Crunchbase profile (for businesses)
- Industry registry pages
Greadme warns and deducts 5 points when sameAs is absent. In practice, organizations with complete sameAs arrays are far more likely to have correct Knowledge Panel information and higher AI citation rates.
The legalName vs. name Distinction
legalName is the organization's official registered legal name (e.g., "Acme Corporation, LLC"). name is what you are commonly known as (e.g., "Acme Corp"). Always include name — legalName alone is not a sufficient substitute for entity identification.
Greadme issues an error when legalName is present but name is missing, with the message: "Organization uses legalName but missing required name property." Always provide both if your legal name differs from your trading name.
Common Mistakes to Avoid
- Missing logo or image: Greadme errors when both are absent. The logo should be a stable URL accessible to Googlebot, minimum 112×112 px.
- Using legalName instead of name: Always include
name— Greadme errors whenlegalNameis present butnameis absent, becauselegalNamedoes not substitute for the primary entity name. - Empty sameAs array: An empty array
[]is treated the same as missing. Include at least 2–3 external profile URLs. - Multi-location organizations without subOrganization: Listing a generic address on a parent org schema when you have 10 locations confuses Google. Use
subOrganizationto represent each distinct location. - Wrong case for property names:
sameAsnotsameas,contactPointnotcontactpoint. Greadme deducts 8 points per case-sensitive property name error.
How Greadme Validates Organization Schema
Greadme runs a dedicated Organization validator that checks both required and recommended properties. The score starts at 100 and deductions include:
| Issue | Points lost |
|---|---|
Missing name | −20 |
Missing logo and image | −15 |
Missing url | −10 |
Missing address (single-location) | −8 |
| Missing contact information | −8 |
Missing or empty sameAs | −5 |
Missing description | −5 |
| subOrganization locations with missing fields | Up to −10 |
| Case-sensitive property name error | −8 per field |
Audit your Organization schema with Greadme to see exactly which fields are missing and how to maximize your score before Google indexes your next update.
Frequently Asked Questions
Where should Organization schema be placed on the website?
Place Organization schema on your homepage and your About page. These are the pages Google most commonly associates with organizational identity. The schema can be included in the global layout file so it appears on every page — this is fine and does not cause duplication issues.
Is Organization schema the same as LocalBusiness schema?
LocalBusiness is a subtype of Organization, optimized for businesses with a physical address that serves local customers. If your organization has a physical storefront or office that customers visit, use LocalBusiness (or an even more specific subtype like Restaurant or Dentist) instead of the generic Organization type.
Can I have multiple Organization schemas on one site?
Yes. Use a parent Organization schema on the homepage/about page for brand identity, and use LocalBusiness schemas on individual location pages. Google processes them as separate entities in its Knowledge Graph.
