- Home
- GEO Factors
- Schema
- Organization Schema
Organization Schema
Checks for Organization schema with name, url, logo, and sameAs (social links). Helps AI engines identify and trust your brand entity.
Why It Matters for AI Visibility
How We Score It
How to Improve
- 1
Include all four Organization fields
Add `name` (your company name), `url` (homepage URL), `logo` (logo image URL), and `sameAs` (array of social profile URLs) to your Organization schema. All four fields present earns a perfect 10. Missing even one drops you to 8.
- 2
Add at least two sameAs social links
The analyzer flags fewer than 2 social links. Include your LinkedIn company page, Twitter/X profile, Facebook page, and any other official profiles. More links strengthen the entity graph that AI engines build around your brand, improving recognition and trust.
- 3
Add Organization schema to your site template
Unlike Article schema which varies per page, Organization schema stays the same site-wide. Add it to your global layout or template so every page carries your brand identity. AI engines may crawl any page first, so consistent Organization schema maximizes discovery.
- 4
Use LocalBusiness for physical locations
If you have a physical storefront or office, use LocalBusiness instead of Organization and add address and telephone fields. The analyzer recognizes both types equally, and LocalBusiness provides additional location context that AI engines use for local queries.
Before & After
<!-- No Organization schema anywhere on the site --> <!-- Score: 0 -->
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Acme Software",
"url": "https://acme.com",
"logo": "https://acme.com/logo.png",
"sameAs": [
"https://linkedin.com/company/acme",
"https://twitter.com/acme"
]
}Code Examples
Organization schema with all four fields
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Company Name",
"url": "https://yourcompany.com",
"logo": "https://yourcompany.com/images/logo.png",
"sameAs": [
"https://www.linkedin.com/company/yourcompany",
"https://twitter.com/yourcompany",
"https://www.facebook.com/yourcompany",
"https://github.com/yourcompany"
]
}LocalBusiness variant
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Acme Coffee Shop",
"url": "https://acmecoffee.com",
"logo": "https://acmecoffee.com/logo.png",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Main St",
"addressLocality": "San Francisco",
"addressRegion": "CA"
},
"telephone": "+1-415-555-0100",
"sameAs": ["https://instagram.com/acmecoffee", "https://yelp.com/biz/acmecoffee"]
}Frequently Asked Questions
Should I use Organization or LocalBusiness?
Use Organization for online businesses, SaaS companies, and brands without physical storefronts. Use LocalBusiness for physical locations like restaurants, shops, or offices -- it inherits all Organization fields and adds location-specific ones. The analyzer scores both types equally.
Does Organization schema need to be on every page?
It is recommended. Adding it to your site template ensures every page carries your brand identity. AI engines may crawl any page first, so consistent Organization schema across your site maximizes the chance that your brand is properly recognized regardless of which page is indexed.
How many sameAs links should I include?
At minimum 2 to avoid the analyzer's recommendation. Include all official social profiles -- LinkedIn, Twitter/X, Facebook, Instagram, GitHub, YouTube. More links help AI engines build a more complete picture of your brand entity and verify your organization across platforms.
Check Your GEO Score
Run a free analysis on your website and see how you score across all 52 factors.
Analyze My SiteAuthor Schema
NextBreadcrumbList Schema