jsonld@web
jsonld@web:/organization$  cat ./organization.jsonld
rich results · passed @type · example

> Organization Schema JSON-LD -- Examples for Brands and Companies

Copy validated Organization schema JSON-LD with logo, sameAs, contactPoint, and address. Useful for brands, companies, agencies, and eCommerce sites.

published
modified
size
2.2K
path
/organization/

Last updated July 4, 2025 by Patrick Coombe

The examples below includes sample data for an organization including phone, address, founders, and social profile links.

As of 2025, the example below now includes "extendedAddress" which is a new schema property within the past year. Use this any time you have a suite number, apartment number of something like that. It is very useful. Sometimes people call it "address2" in fields.

organization.jsonld · 1.0K test
{ "@context": "https://schema.org",
"@type": "Organization",
"name": "Elite Strategies",
"legalName" : "Elite Strategies Llc",
"url": "http://www.elite-strategies.com",
"logo": "http://cdn.elite-strategies.com/img/elitestrategies.png",
"foundingDate": "2009",
"founders": [
{
"@type": "Person",
"name": "Patrick Coombe"
},
{
"@type": "Person",
"name": ""
} ],
"address": {
"@type": "PostalAddress",
"streetAddress": "900 Linton Blvd",
"extendedAddress": "Suite 104",
"addressLocality": "Delray Beach",
"addressRegion": "FL",
"postalCode": "33444",
"addressCountry": "USA"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "customer support",
"telephone": "[+561-526-8457]",
"email": "[email protected]"
},
"sameAs": [ 
"http://www.freebase.com/m/0_h96pq",
"http://www.facebook.com/elitestrategies",
"http://www.twitter.com/delraybeachseo",
"http://pinterest.com/elitestrategies/",
"http://elitestrategies.tumblr.com/",
"http://www.linkedin.com/company/elite-strategies",
"https://plus.google.com/106661773120082093538"
]}
google validated jsonld For larger organizations with multiple points of contact, you may want to add markup for that as well. This is one of a few areas that Google actually specifies may help include information within the Knowledge Graph.
organization.jsonld · 847B test
{ "@context" : "https://schema.org",
  "@type" : "Organization",
  "url" : "http://www.example.com",
  "contactPoint" : [
    { "@type" : "ContactPoint",
      "telephone" : "+1-888-888-9999",
      "contactType" : "customer service",
      "contactOption" : "TollFree",
      "areaServed" : "US"
    } , {
      "@type" : "ContactPoint",
      "telephone" : "+1-888-888-9998",
      "contactType" : "Sales"
    } , 
     {
      "@type" : "ContactPoint",
      "telephone" : "+1-888-888-9997",
      "contactType" : "technical support",
      "contactOption" : "TollFree",
      "areaServed" : "US",
      "availableLanguage" : ["English","French"]
    } , {
      "@type" : "ContactPoint",
      "telephone" : "+1-888-888-9997",
      "contactType" : "bill payment",
      "contactOption" : "TollFree",
      "areaServed" : ["US","GB"]
    } ] }
google validated jsonld

Try this for a more basic example. This snippet includes a "sponsor" as well:

organization.jsonld · 234B test
{
  "@context": "http://schema.org/",
  "@type": "Organization",
  "name": "ASPCA",
  "url": "https://www.aspca.org/",
  "sponsor":
  {
    "@type": "Organization",
    "name": "exampleCorp",
    "url": "http://www.example.com/"
  }
}

Here is an example taken from a Shopify site in 2024:

organization.jsonld · 452B test
  {
    "@context": "http://schema.org",
    "@type": "Organization",
    "name": "Silk \u0026amp; Willow",
      "logo": "https:\/\/www.silkandwillow.com\/cdn\/shop\/files\/sw_logo_banner_3.2021.jpg?v=1616640893\u0026width=1502",
    
    "sameAs": [
      
"https:\/\/www.instagram.com\/silkandwillow\/","https:\/\/www.pinterest.com\/silkandwillow\/","https:\/\/www.threads.net\/@silkandwillow"
    ],
    "url": "https:\/\/www.silkandwillow.com"
  }

It is kind of ugly, but it works.

Results

Organization schema will propagate in the Knowledge Panel of Google's search engine results (photo below). It is important to note that it can be difficult to get information into your businesses' Knowledge Panel. It may also take several months for the information to present.

Organization JSON Results