Organization
Schema for companies and organizations
Organization Schema
Ideal for: Company pages, about us pages and corporate websites.
Rich Result Features: Company name, logo and social profiles in the Google Knowledge Panel.
Key Fields
- Website name and URL
- Logo
- Description
- Phone and email
- Full address
- Contact point (support, sales, etc.)
- Social media profiles (unlimited, repeatable)
Templates
- Basic Organization: Name, URL, logo and description
- Complete Organization: All fields including contact and social
- Corporation: Specialized for corporations
Code Examples
Organization Schema Example
json
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Mi Empresa",
"url": "https://miempresa.com",
"logo": "https://miempresa.com/logo.png",
"description": "Empresa líder en soluciones digitales",
"telephone": "+34 91 123 4567",
"email": "[email protected]",
"address": {
"@type": "PostalAddress",
"streetAddress": "Calle Innovación 42",
"addressLocality": "Madrid",
"postalCode": "28001",
"addressCountry": "ES"
},
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+34 91 123 4567",
"contactType": "customer service"
},
"sameAs": [
"https://facebook.com/miempresa",
"https://twitter.com/miempresa",
"https://linkedin.com/company/miempresa"
]
}