SchemaFree

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

Organization schema establishes your brand as a recognized entity for AI engines. When ChatGPT or Perplexity cites your content, Organization schema helps them attribute it to your brand by name, with your logo and official links. Without it, AI engines treat your content as coming from an anonymous website rather than a known publisher. AI engines build knowledge graphs that connect content to publishers. Organization schema is how you declare: this content is published by a specific company, which exists at a specific URL, with a verified presence on LinkedIn, Twitter, and other platforms. The `sameAs` field is particularly valuable -- it links your brand entity across platforms, helping AI verify your organization's legitimacy and authority. For local businesses, LocalBusiness schema (also detected by the analyzer) adds physical location context. Both schema types feed into the same entity recognition system that AI engines use to evaluate publisher trustworthiness. A well-defined Organization schema helps your content compete against anonymous sources for citations in AI-generated answers.

How We Score It

The analyzer checks for Organization or LocalBusiness schema in JSON-LD, then evaluates four fields: `name`, `url`, `logo`, and `sameAs`. Each field present contributes equally -- having all four earns a perfect 10, three earns 8, two earns 5, one earns 3, and no Organization schema at all scores 0. The analyzer also counts `sameAs` links. Fewer than 2 social profile links triggers a recommendation to strengthen your brand identity with additional platform links. Since Organization schema is typically identical across your entire site, adding it to your global layout template means every page carries your brand identity. A score of 7 or above passes, 4-6 is partial, and 0-3 fails.
See how your site scores on this factorAnalyze My Site

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

Before
<!-- No Organization schema anywhere on the site -->
<!-- Score: 0 -->
After
{
  "@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.

Related Factors

Check Your GEO Score

Run a free analysis on your website and see how you score across all 52 factors.

Analyze My Site