Entities & Trust
Organisation Schema: Represent the Publisher Accurately
This guide is part of the King of AEO learning library.
The short answer
Organisation schema describes a real organisation through structured properties such as its name, URL and relevant administrative details. Build it from verified public facts and use a stable identifier when referencing the publisher elsewhere. Keep brands, websites and people distinct. Correct markup can clarify identity, but it does not certify reputation or guarantee search features.
In this guide
Identify the organisation before filling fieldsCreate a reusable publisher recordDistinguish the public name from meaningful alternativesUse organisational relationships with their real meaningVerify external identity references and practical detailsCheck the visible page and the emitted record togetherKeep changes tied to real organisational eventsUse a stable publishing organisation recordSourcesIdentify the organisation before filling fields
Decide which organisation the website actually represents. A website name, trading brand, legal entity and parent company may differ. They should not be collapsed automatically into one record. Start with a plain statement of who operates the publication and how the name readers see relates to that operator. If a person publishes independently without a separate organisation, do not invent a company solely because a template expects a publisher object of that type.
An illustrative group called Harbour Learning might operate a publication called Practical Systems. The publication name is useful to readers, while the operating organisation has its own identity. A separate subsidiary may sell training under another brand. Model only the relationships you can confirm. About pages provide the visible place to explain ownership, purpose and commercial relationships. Structured data should match that explanation, so a reader and a machine do not receive competing accounts of who is responsible.
Create a reusable publisher record
Choose a stable organisation identifier and maintain the central facts in one content record. The homepage or an appropriate organisational page can describe that entity, while articles reference the same identifier as publisher. Avoid copying a large hand edited block into every article. Repeated blocks drift when a logo, contact detail or preferred name changes. A shared record lets the public representation update coherently without requiring editors to remember every location where a fact appears.
Google's Organization documentation describes how markup can communicate administrative details and help distinguish an organisation. Include useful supported information rather than treating every example property as mandatory. The organisation's public name, URL and appropriate logo are a sensible starting point. Add contact, address or identifiers when they are confirmed and relevant. A more populated record is not automatically a better record if its extra fields are uncertain or describe a different part of the business.
Keep environment configuration out of identity decisions. A preview deployment may use a temporary host, but that does not create a new organisation or justify a new publisher identifier. Generate the intended public identity from controlled configuration and ensure previews do not become competing public records. During a domain migration, decide explicitly which identifiers remain stable and how old references continue to resolve.
Website: Public publication
Organisation: Responsible operator
Article: Published content
Parent entity: Only when relationship exists
Verified profile: Same organisation reference
Publisher markup distinguishes the organisation from its website and any parent. Relationships must reflect the actual structure.
Distinguish the public name from meaningful alternatives
Use the name the organisation actually presents publicly. A legal name may differ and can be represented where appropriate. An alternate name should be a genuine recognised alternative, such as an established abbreviation or former trading name that still helps identification. It should not be a collection of search phrases. Adding every service and location to alternateName obscures identity because those phrases describe activities or markets, not names by which the organisation is known.
Keep the website's name separate where necessary. A publication can have its own site name while being published by a differently named organisation. Brand consistency explains how to align these facts across visible surfaces without forcing identical prose everywhere. In an illustrative rebrand, preserve the former name with clear context if users still encounter it. Do not imply that unrelated organisations with similar names are alternate identities of yours simply because their names appear in search results.
Use organisational relationships with their real meaning
Schema.org Organization provides properties for organisational relationships. Read the definitions and select a relationship that reflects the actual structure. A department, subsidiary and sponsor are different things. A client is not part of your organisation merely because you worked together. A product brand is not necessarily a separate legal organisation. When the relationship is complex, a clear visible explanation may be more useful than forcing it into an overly simplified structured assertion.
An illustrative holding company with two independently operated subsidiaries should retain distinct organisation identifiers if those are genuinely distinct entities. Their relationship can be represented without merging their names, contacts and profiles. The same applies to a founder: the person and the organisation remain separate even when one owns the other. Person schema covers author identity, while knowledge graphs explains the general rule that related nodes do not become the same entity just because they share a close relationship.
Verify external identity references and practical details
External profiles should identify the organisation itself. A profile for a parent company, a similarly named local business or an individual founder is not interchangeable with the publisher's own profile. The sameAs definition calls for an unambiguous identity reference. Keep the list restrained and check destinations directly. A link to a respected directory's homepage adds little identity information; a specific correct listing is the relevant reference when one exists.
Contact fields should also serve a real purpose. If a phone number is included, confirm which organisation and function it reaches. If an address is published, make clear whether it is an office, registered address or another location when that distinction matters to readers. Do not add an address purely to look local in a market where the business does not operate. The detailed needs of a place based service belong in local business AEO, including keeping operational facts useful to customers.
Check the visible page and the emitted record together
A structured data validator can identify malformed JSON or unsupported arrangements, but it cannot verify your ownership claim. Compare the emitted record with the homepage, footer and about page. Check that the logo loads publicly and represents the intended organisation. Inspect multiple article templates for conflicting publisher identifiers. A plugin may emit one organisation while custom code emits another, creating duplicate descriptions that differ subtly in name, address or profile links.
Resolve those disagreements at their source. Adding a third record with preferred facts does not clean up the existing conflict. Make one component or data layer responsible for the shared publisher information. Where different publications genuinely have different publishers, represent that distinction intentionally. Technical release checks should sample the actual deployed output after a template or plugin change. Testing only a copied JSON example misses mistakes introduced by runtime configuration, environment URLs or inherited defaults.
Keep changes tied to real organisational events
A new contact number, rebrand or ownership change should trigger a coordinated update. Decide which fields change, which historical facts remain useful and which external profiles need correction. Preserve stable identity where the organisation continues, but do not merge newly acquired entities merely to simplify a content file. Record the reason for material relationship changes so future editors can distinguish an intentional model from an accidental inconsistency.
Avoid measuring this work by whether a knowledge panel or another search presentation appears. Those outcomes depend on platform systems beyond the record you publish. The concrete deliverable is an accurate, maintainable account of the publisher and its relationships. Readers should be able to inspect the same facts in ordinary page content. Organisation schema is most useful when it faithfully expresses that public record, with evidence and actual business practice carrying the burden of credibility.
Use a stable publishing organisation record
This example describes the actual publishing brand for this library. Its identifier is reused wherever the Article publisher relationship appears. The founder reference points to the separately described Person record. Neither the name nor the Organization type asserts that King of AEO is an incorporated limited company.
Keep the logo accessible and the profile relationship visible to readers. Add a legal name, registration identifier or postal address only when those facts are known and appropriate for the real organisation. Before publishing, parse the JSON and compare the resulting record with the About and policy pages. Syntax validation cannot detect a plausible but invented registration number or an address copied from an unrelated business.
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://thekingofaeo.com/#publisher",
"name": "King of AEO",
"url": "https://thekingofaeo.com",
"logo": "https://thekingofaeo.com/favicon.svg",
"founder": {
"@id": "https://thekingofaeo.com/king-of-aeo#person"
}
}Sources and further reading
- Google Organization structured dataOrganisation markup can communicate administrative details and support disambiguation.
- Schema.org OrganizationDefines organisations and organisational relationships.
- Schema.org sameAssameAs identifies an unambiguous reference to the same entity.