Skip to content

Organization schema generator

Tell Google which logo, name, profiles and contact details belong to your company, usually from the home page or an About page.

Google lists no required properties; name, url, logo and sameAs are the most useful for knowledge panels and logos.
@Organization
Contact
Address
Identifiers

Your entries are saved in this browser only (localStorage). Privacy

Required
none
Recommended
12/23

All Google-required properties present. That makes the page eligible, not guaranteed. Google's docs

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Example Outfitters",
  "alternateName": "ExO",
  "legalName": "Example Outfitters LLC",
  "url": "https://example.com",
  "logo": "https://example.com/logo-512.png",
  "description": "Outdoor footwear and gear made in small batches in Portland, Oregon.",
  "sameAs": [
    "https://www.linkedin.com/company/example-outfitters",
    "https://www.instagram.com/exampleoutfitters"
  ],
  "email": "help@example.com",
  "telephone": "+1-503-555-0110",
  "contactPoint": {
    "@type": "ContactPoint",
    "contactType": "customer support",
    "telephone": "+1-503-555-0110",
    "email": "help@example.com"
  },
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "1200 NW Marshall St",
    "addressLocality": "Portland",
    "addressRegion": "OR",
    "postalCode": "97209",
    "addressCountry": "US"
  },
  "foundingDate": "2014-03-01"
}
</script>
  • ?Recommended for Organization: add vatID if it applies.vatID
  • ?Recommended for Organization: add taxID if it applies.taxID
  • ?Recommended for Organization: add duns if it applies.duns
  • ?Recommended for Organization: add leiCode if it applies.leiCode
  • ?Recommended for Organization: add iso6523Code if it applies.iso6523Code
  • ?Recommended for Organization: add naics if it applies.naics
  • ?Recommended for Organization: add globalLocationNumber if it applies.globalLocationNumber
  • ?Recommended for Organization: add numberOfEmployees if it applies.numberOfEmployees
  • ?Recommended for Organization: add hasMerchantReturnPolicy if it applies.hasMerchantReturnPolicy
  • ?Recommended for Organization: add hasMemberProgram if it applies.hasMemberProgram
  • ?Recommended for Organization: add hasShippingService if it applies.hasShippingService
  • iGoogle lists no required properties; name, url, logo and sameAs are the most useful for knowledge panels and logos.@type

Checked in your browser against the required and recommended properties Google documents for this type. Confirm with Google's Rich Results Test once it's live.

example.comexample.com
Example Outfitters
Portland, OR
Outdoor footwear and gear made in small batches in Portland, Oregon.

An illustration of what the markup can feed. Google decides what actually appears and valid markup never guarantees a rich result.

When to use Organization markup

  • Your home page or About page, once per site.
  • Online stores can also add return policies and shipping services here, instead of on every product.
  • Use LocalBusiness instead for a physical location customers visit.

Getting it right

  • Google lists no required properties; it uses whatever you provide. Name, url, logo and sameAs do most of the work.
  • The logo must be at least 112×112 px and crawlable. Google recommends it looks good on a white background.
  • sameAs should link to official profiles only: LinkedIn, Wikipedia, Crunchbase, social accounts.
  • Identifiers such as vatID, leiCode and duns help Google tell apart companies with similar names.

Source: Google Search Central, Organization structured data documentation, and schema.org/Organization.

Google's property list

PropertyGoogle says
No required properties for this type.
namerecommended
urlrecommended
logorecommended
sameAsrecommended
descriptionrecommended
addressrecommended
alternateNamerecommended
legalNamerecommended
contactPointrecommended
emailrecommended
telephonerecommended
foundingDaterecommended
vatIDrecommended
taxIDrecommended
dunsrecommended
leiCoderecommended
iso6523Coderecommended
naicsrecommended
globalLocationNumberrecommended
numberOfEmployeesrecommended
hasMerchantReturnPolicyrecommended
hasMemberProgramrecommended
hasShippingServicerecommended

Example output

{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Example Outfitters",
  "alternateName": "ExO",
  "legalName": "Example Outfitters LLC",
  "url": "https://example.com",
  "logo": "https://example.com/logo-512.png",
  "description": "Outdoor footwear and gear made in small batches in Portland, Oregon.",
  "sameAs": [
    "https://www.linkedin.com/company/example-outfitters",
    "https://www.instagram.com/exampleoutfitters"
  ],
  "email": "help@example.com",
  "telephone": "+1-503-555-0110",
  "contactPoint": {
    "@type": "ContactPoint",
    "contactType": "customer support",
    "telephone": "+1-503-555-0110",
    "email": "help@example.com"
  },
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "1200 NW Marshall St",
    "addressLocality": "Portland",
    "addressRegion": "OR",
    "postalCode": "97209",
    "addressCountry": "US"
  },
  "foundingDate": "2014-03-01"
}

Organization schema questions

Where should Organization markup go?

Google recommends the home page or a single page describing the organization, such as About. You don't need it on every page.

Will this create a knowledge panel?

It can inform the logo and details in a knowledge panel, but Google decides whether to show one based on many sources.

Organization or LocalBusiness?

LocalBusiness is a subtype of Organization for places with a physical presence. Online-only brands should use Organization (or OnlineStore).

Related generators