EN DE

Organization Schema — Make Your Brand Visible to AI

Organization structured data gives AI systems a definitive, machine-readable identity for your brand. It is the foundation of your Knowledge Panel, AI brand recognition, and publisher authority — all in a single JSON-LD block on your homepage.

What is Organization Schema?

Schema.org Organization is a structured data type that describes a company, nonprofit, institution, or other entity. Placed on your homepage (or a dedicated About page), it creates a canonical identity record that AI systems and search engines use to understand who you are.

Subtypes are available for more specific entities: LocalBusiness, Corporation, EducationalOrganization, NGO, and more. If you are a local business, use LocalBusiness for the richest set of applicable properties including address and opening hours.

Why Organization Schema Matters for AI Visibility

AI language models build internal knowledge graphs from structured data they encounter during training and indexing. Organization schema directly populates this graph with reliable data about your brand:

JSON-LD Code Snippet

Add this block to the <head> of your homepage. It should appear on every page that represents your organisation, but the homepage is the most important placement.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Company Name",
  "url": "https://example.com",
  "logo": {
    "@type": "ImageObject",
    "url": "https://example.com/logo.png",
    "width": 200,
    "height": 60
  },
  "description": "A concise description of what your organisation does — 1 to 2 sentences, plain text only.",
  "foundingDate": "2020",
  "contactPoint": {
    "@type": "ContactPoint",
    "telephone": "+49-123-456789",
    "contactType": "customer service",
    "availableLanguage": ["English", "German"]
  },
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Musterstraße 1",
    "addressLocality": "Berlin",
    "postalCode": "10115",
    "addressCountry": "DE"
  },
  "sameAs": [
    "https://www.linkedin.com/company/your-company",
    "https://twitter.com/yourcompany",
    "https://www.facebook.com/yourcompany",
    "https://en.wikipedia.org/wiki/Your_Company"
  ]
}
</script>

The sameAs Property — Your Most Valuable Signal

The sameAs array is the most important property for AI brand recognition. Include every authoritative external profile for your brand:

Each linked profile corroborates your identity. AI systems trained on web data will associate content from all these profiles with the same entity — your brand.

Step-by-Step Implementation

  1. Prepare your logo. The logo must be publicly accessible via HTTPS. A PNG or SVG at 200×60 px or larger works well. Avoid logos that require authentication or redirect.
  2. Collect your sameAs URLs. Gather all authoritative profile URLs for your brand. Use canonical profile URLs (e.g. https://www.linkedin.com/company/your-company not a short link).
  3. Write the JSON-LD. Fill in the template above with your actual data. Remove any properties (like address) that are not applicable to your organisation type.
  4. Place on your homepage. Add the script block to the <head> section of your homepage. In WordPress: use Yoast SEO's Organisation settings or a plugin like Schema Pro.
  5. Validate. Run your homepage URL through the Google Rich Results Test and Schema Markup Validator.
  6. Submit to Google. In Google Search Console, use the URL inspection tool on your homepage and request re-indexing after adding Organization schema for faster processing.

Common Mistakes

Official Sources

Test your website now — free AI Visibility Score Check Organization schema and 18 other AI visibility signals in under 30 seconds

Related Guides