Organization Schema for Brand: The Complete 2026 Guide
Organization schema is a structured data vocabulary that describes a company, brand, or institution on the web. When implemented on your website's homepage,...
- Organization schema is a structured data vocabulary that describes a company, brand, or institution on the web.
- Organization schema is the foundation of your brand's structured identity.
- The core properties for Organization schema include: @type : Use Organization .
- Below is a complete JSON-LD block for a brand's homepage or about page.
- Place Organization schema on every page that represents your brand.
- Validate the Organization schema with Google's Rich Results Test.
- Google Search Central.
Organization schema is a structured data vocabulary that describes a company, brand, or institution on the web. When implemented on your website's homepage, about page, or contact page, it helps search engines understand your brand identity, enables organization knowledge panels, and supports...
Overview
Organization schema is a structured data vocabulary that describes a company, brand, or institution on the web. When implemented on your website's homepage, about page, or contact page, it helps search engines understand your brand identity, enables organization knowledge panels, and supports rich result eligibility across multiple schema types. This guide covers the on-page application of Organization schema for brand pages, distinguishing it from internal entity schema strategies covered elsewhere.
Why Organization Schema Matters On-Page
Organization schema is the foundation of your brand's structured identity. Google uses it to populate knowledge panels that display your logo, social profiles, contact information, and a description directly in search results. It also serves as the publisher object referenced by Article schema, making it a prerequisite for article rich results. Without Organization schema, Google must infer your brand identity from unstructured signals.
Google's documentation confirms that Organization schema is used for corporate contact and knowledge panel information. When combined with other schema types like Article and Product, it creates a network of entity relationships that strengthen your site's overall structured data footprint.
The Standard Properties
The core properties for Organization schema include:
@type: UseOrganization.name: The official organization name.url: The homepage URL.logo: AnImageObjectwith aurlproperty pointing to the brand logo.description: A short brand description.sameAs: An array of official social profile URLs.address: APostalAddressobject with physical location details.contactPoint: AContactPointobject with phone, email, and contact type.foundingDate: Optional. The year the organization was founded.
Practical JSON-LD Example
Below is a complete JSON-LD block for a brand's homepage or about page. Place it inside a <script type="application/ld+json"> tag.
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Media Inc.",
"url": "https://example.com",
"logo": {
"@type": "ImageObject",
"url": "https://example.com/images/logo.webp",
"width": "600",
"height": "200"
},
"description": "Example Media is a leading digital publisher specializing in technology tutorials, SEO guides, and web development resources.",
"sameAs": [
"https://www.facebook.com/examplemedia",
"https://www.twitter.com/examplemedia",
"https://www.linkedin.com/company/examplemedia",
"https://www.youtube.com/@examplemedia",
"https://github.com/examplemedia"
],
"address": {
"@type": "PostalAddress",
"streetAddress": "100 Tech Park Drive Suite 300",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94105",
"addressCountry": "US"
},
"contactPoint": [
{
"@type": "ContactPoint",
"telephone": "+1-800-555-0199",
"contactType": "customer service",
"email": "[email protected]",
"availableLanguage": ["English", "Spanish"]
},
{
"@type": "ContactPoint",
"telephone": "+1-800-555-0100",
"contactType": "press inquiries",
"email": "[email protected]"
}
],
"foundingDate": "2018",
"numberOfEmployees": {
"@type": "QuantitativeValue",
"minValue": "50",
"maxValue": "200"
}
}
On-Page Implementation Tips
Place Organization schema on every page that represents your brand. The homepage is the most critical location, but the about page and contact page should also include it. For multi-author sites, use the Organization schema as the publisher in Article schema and reference it consistently with the same name and logo values.
Make your logo available as a standalone image file. The logo URL should point to a static image that is at least 112x112px for Google's knowledge panel requirements. Use a PNG or JPG with a transparent or solid background for best results.
Audit Closing
Validate the Organization schema with Google's Rich Results Test. Confirm that logo.url resolves to an accessible image file and that the logo dimensions meet Google's minimum requirements. Check that all sameAs URLs resolve correctly and link to official brand profiles. Verify the organization name matches the visible brand name on the page. Run a site-wide crawl to confirm that the Organization schema is present on all key brand pages and that the publisher reference in Article schema matches.
Citations
- Google Search Central. "Organization structured data." https://developers.google.com/search/docs/appearance/structured-data/organization
- Schema.org. "Organization type definition." https://schema.org/Organization
- Google Developers. "Rich results test." https://search.google.com/test/rich-results