Organization – Structured Data for Businesses with schema.org
The Organization type from schema.org is used to mark up information about companies, brands, or institutions in a machine-readable way. It helps search engines understand core details like company name, website, logo, founding year, and contact information.
Organization serves as the parent class for more specific types such as LocalBusiness, Corporation, or EducationalOrganization.
Key Features of Organization:
- Describes legal entities, brands, institutions
- Recognized by search engines (e.g. Google) for brand knowledge panels
- Supports linking to official profiles, logos, and contact points
Common Use Cases:
- Homepage and About Us pages
- Business directories or organization profiles
- Legal notice and company info pages
Example: Organization (Fictional Bakery)
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Bakery Ltd.",
"url": "https://www.examplebakery.com",
"logo": "https://www.examplebakery.com/logo.png",
"description": "A mid-sized, family-run bakery known for handcrafted sourdough and regional bread specialties.",
"sameAs": [
"https://www.facebook.com/examplebakery",
"https://www.instagram.com/examplebakery"
],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-202-555-0147",
"contactType": "Customer Support",
"areaServed": "US",
"availableLanguage": ["en"]
},
"foundingDate": "1950",
"founder": {
"@type": "Person",
"name": "Anna Example"
}
}
</script>
Best Practices:
- Use sameAs only for verified social media or public profiles
- Ensure the logo is a direct image link (recommended: 112×112px)
- Add founder and foundingDate to enhance brand context and trust
Learn more about our services in structured data & technical SEO here.