Organisation schema is structured data markup that tells search engines and AI systems exactly what your brand is, what it does, and how it connects to other platforms and entities across the web. It is the technical foundation of entity SEO and the single most impactful schema implementation for improving AI recognition of your brand. Without it, search systems are interpreting your entity from context clues. With it, you are telling them directly.
Of all the technical implementations I have worked on across fifteen years of search, Organisation schema has the highest signal-to-effort ratio for AI visibility. It takes roughly thirty minutes to write and implement correctly. The signals it provides persist indefinitely and improve how every other piece of entity work you do is interpreted.
I implemented Organisation schema across a set of client accounts in a structured test in 2025, adding it to homepages where it had previously been absent or incorrect. Within eight weeks, the accounts showed measurable improvements in knowledge panel appearance, AI description accuracy, and branded query rich results. The brands that had previously been described inconsistently or incompletely in AI systems began to be described with the language from their schema definitions. The schema had become the canonical source. That outcome confirmed what I had suspected: in the absence of explicit entity signals, AI systems fill the gap with whatever they can find. Organisation schema gives them the right answer directly. This is a great quick win that is often overlooked in SEO & AEO!
What is Organisation schema?
Organisation schema is a structured data implementation using the Schema.org Organisation type that defines your brand as a named entity with specific properties: its name, description, URL, logo, contact information, location, founding date, industry, and links to its presence across other platforms. It is delivered as a JSON-LD script block, typically on the homepage.
The purpose is entity disambiguation. Search systems encounter your brand name across many web pages in many contexts. Without explicit entity signals, they must infer who you are from those contexts — which produces inconsistent, incomplete, or occasionally incorrect interpretations. Organisation schema is your brand’s authoritative self-definition in machine-readable format.
Why is Organisation schema essential for AI visibility?
AI systems must answer a question before they can cite a source: is this entity credible enough to recommend? That evaluation draws on whatever signals are available. Brands with clear Organisation schema provide a structured, verified starting point for that evaluation. Brands without it are evaluated from scattered signals that may be incomplete, inconsistent, or dominated by third-party descriptions over which the brand has no control.
The sameAs property within Organisation schema is particularly significant for AI visibility. It connects your website entity to your LinkedIn company page, your Wikipedia entry, your Wikidata record, your Google Business Profile, and other platform presences. This tells AI systems that all of these profiles are the same entity — consolidating the trust signals from multiple platforms into a single, coherent entity profile rather than leaving the model to figure out whether these profiles are related.
What properties should Organisation schema include?
A complete Organisation schema implementation for maximum AI entity signal should include the following properties.
@type: Organisation (or a more specific subtype if appropriate, such as LocalBusiness, ProfessionalService, or Consulting)
name: Your exact brand name as it should appear everywhere
url: Your homepage URL
logo: Direct URL to your brand logo image
description: A 100 to 200 word description of your organisation. This is the most important field for AI entity recognition. Write it as you would want an AI system to describe you — clear, specific, and consistent with how you describe yourself everywhere else.
foundingDate: Year of founding
areaServed: Geographic markets served
knowsAbout: Array of topics, concepts, and subject areas your organisation is authoritative about. This directly signals topic associations to search systems.
sameAs: Array of URLs for your organisation’s verified presence on other platforms — LinkedIn company page, Twitter/X profile, Wikipedia page, Wikidata entry, Google Business Profile, industry directory listings. This is the technical implementation of cross-platform entity consolidation.
contactPoint: Contact information including email and contact type
founder: A nested Person entity for your founder, connecting the individual expertise to the organisation entity
What does a complete Organisation schema look like?
Here is a correctly structured Organisation schema template with all key properties:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfessionalService",
"name": "Sticky Frog",
"url": "https://stickyfrog.io",
"logo": "https://stickyfrog.io/wp-content/uploads/logo.png",
"description": "Sticky Frog is a search visibility consultancy
specialising in AI retrieval strategy, entity SEO, and
answer engine optimisation. Founded by Jason Morris, with
15 years of enterprise SEO experience across clients including
Toyota Europe, Bupa, EY, and Citi Bank. Sticky Frog helps
marketing teams build brand authority that AI systems
recognise, retrieve, and cite.",
"foundingDate": "2024",
"areaServed": "United Kingdom",
"knowsAbout": [
"Entity SEO",
"AI Retrieval Strategy",
"Answer Engine Optimisation",
"Search Visibility",
"The Human Algorithm",
"The Passage Economy",
"The Authority Graph"
],
"sameAs": [
"https://www.linkedin.com/company/sticky-frog",
"https://x.com/JasonMorrisSEO",
"https://stickyfrog.io"
],
"contactPoint": {
"@type": "ContactPoint",
"email": "jason@stickyfrog.co.uk",
"contactType": "customer service"
},
"founder": {
"@type": "Person",
"name": "Jason Morris",
"url": "https://stickyfrog.io/founder/",
"sameAs": [
"https://www.linkedin.com/in/jason-morris-seo-freelance/"
]
}
}
</script>
Where should Organisation schema be placed and how?
Organisation schema should be implemented on your homepage. This is the canonical location that search systems expect for organisational entity definitions. Placing it on internal pages as well does not hurt, but the homepage implementation is the one search systems prioritise.
In WordPress, the cleanest implementation method is the Code Snippets plugin. Add a new snippet, set it to run on the Frontend, and add a conditional to ensure it only fires on the homepage:
add_action( 'wp_head', function() {
if ( ! is_front_page() ) return;
echo '<script type="application/ld+json">';
echo '{ your schema here }';
echo '</script>';
});
Alternatively, add it via a Custom HTML block in the Elementor or Gutenberg homepage editor, or directly into the theme’s header.php file if you are comfortable with theme editing.
How do you validate Organisation schema?
Use schema.org/validator to validate the JSON-LD structure before publishing. Paste the script block directly and the validator will identify any syntax errors or missing required properties.
After publishing, use Google’s Rich Results Test at search.google.com/test/rich-results with your homepage URL to confirm Google is reading the schema correctly. Organisation schema does not generate traditional rich results in the same way FAQ schema does, but the Rich Results Test will confirm detection and flag any errors.
Monitor Google Search Console for manual actions or structured data errors in the Enhancements section. Check monthly, particularly in the first four to eight weeks after implementation.
For the Person schema that connects your founder’s expertise to the organisation entity, see the How to Write an Entity Definition guide which covers the full Person schema implementation. The Schema Markup Generator tool builds Organisation and FAQ schema automatically. Full framework: Search Visibility Framework.
Frequently Asked Questions
What is Organisation schema in SEO?
Organisation schema is structured data markup that defines your brand as a named entity in a format search engines and AI systems can read directly. It specifies your brand name, description, topics of expertise, contact information, and connections to your presence on other platforms. It is the technical foundation of entity SEO and the most important single schema implementation for improving AI recognition of your brand.
Where should Organisation schema be added on a website?
Organisation schema should be added to the homepage. This is the canonical location search systems expect for organisational entity definitions. In WordPress, implement it via the Code Snippets plugin with a conditional that limits it to the homepage, or via a Custom HTML block in the homepage editor. It should fire in the page head section for optimal processing.
What is the sameAs property in Organisation schema and why is it important?
The sameAs property is an array of URLs for your organisation’s verified presence on other platforms: LinkedIn, Wikipedia, Wikidata, Google Business Profile, X, and industry directories. It tells search systems that all of these profiles represent the same entity as your website. This consolidates trust signals from multiple platforms into a single entity profile rather than leaving AI systems to infer the connection independently.
What should I write in the description field of Organisation schema?
Write your entity definition: a clear, specific description of what your organisation does, who it serves, what it specialises in, and what makes it distinctive. Write it exactly as you want AI systems to describe your brand. This description is often used directly by AI systems when generating answers about your organisation. It should be 100 to 200 words and consistent with how you describe yourself across all other platforms.
Does Organisation schema directly affect Google rankings?
Not directly. Organisation schema is primarily an entity clarity signal rather than a ranking signal. Its most significant impact is on knowledge panel appearance, AI description accuracy, branded query rich results, and the overall coherence of your entity profile across the web. These improvements compound over time into stronger E-E-A-T signals, which do influence rankings indirectly through the quality evaluation systems Google applies.

Founder & Author within Sticky Frog and creator of The Human Algorithm. 15 years of SEO experience spanning early-stage startups, scale-ups, and enterprise brands including Toyota Europe, Bupa, EY, Citibank, Deliveroo, and American Express, he specialises in AI search visibility, entity SEO, and search strategy for the era where clicks are declining but influence is not. Get found for what you do best.