Organization schema examples work best when the page is built around a clear company or brand identity.
That means the page should tell search systems who the organization is, what it is called, where it lives online, and how it connects to the rest of the site. On Semantec SEO, this type of markup fits company and brand pages far better than broad education pages or mixed intent pages. Google supports Organization markup for details such as name, logo, address, contact information, and company identifiers, and recommends using the most specific Organization subtype that fits the business.
If you want the cluster overview first, start with Schema for SEO. If you need the format basics before the examples, read JSON LD Basics. If you want the entity side of the cluster, pair this page with Entity Markup.
What organization schema is for
Organization schema is for pages that describe the company, brand, or publisher behind the site.
That can include a company page, a brand page, a trust page, or a core product page where the organization behind the offer is clear. The goal is simple: make the organization identity easier to parse across the site. Schema.org defines Organization as the core type, and Google’s Organization documentation focuses on business name, alternate name, address, contact details, logo, and sameAs style identity signals.
On Semantec SEO, the strongest fit pages are pages like MIRENA, Pricing, About Kevin Maguire, and the broader brand layer around Semantec SEO.
When organization schema fits
Use organization schema when the page has:
- a clear company or brand identity
- a visible organization name
- a site or brand URL
- a logo or brand reference on page
- contact or identity details that belong to the organization
Good fit pages include:
- company about pages
- brand pages
- trust pages
- main product pages where the publisher identity is clear
- contact pages
- legal or company overview pages
If the site is tied to a local business, store, or physical location, the better move may be a more specific subtype such as LocalBusiness. Google recommends using the most specific subtype that matches the organization instead of defaulting to generic Organization every time.
When organization schema does not fit
Do not add organization schema as the main page markup just because a page mentions the company name.
Skip it as the lead markup on pages like:
- comparison pages
- broad educational articles
- category pages
- glossary pages
- docs pages with no company identity focus
Those pages can still sit on a site that includes organization markup somewhere else. They just are not the best primary home for it.
That is why it helps to keep page roles clean. A page like MIRENA vs ChatGPT is a comparison page first. A page like Schema for SEO is an education page first. A page like a company about page is where organization markup makes more sense.
Example 1: simple organization schema for a brand page
This is the cleanest starting point for a brand or company page.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Semantec SEO",
"url": "https://semantecseo.com/",
"logo": "https://semantecseo.com/images/semantec-seo-logo.png"
}
</script>
This example is intentionally light. It covers the core identity with only the fields a simple page can support cleanly.
If you are building out the wider implementation layer, the next useful pages are Schema for SEO and Schema Validation Workflow.
Example 2: organization schema with alternate name and contact details
When the page includes support or contact information, the markup can carry that detail too.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Semantec SEO",
"alternateName": "Semantec",
"url": "https://semantecseo.com/",
"logo": "https://semantecseo.com/images/semantec-seo-logo.png",
"contactPoint": {
"@type": "ContactPoint",
"email": "support@semantecseo.com",
"contactType": "customer support"
}
}
</script>
Google’s Organization documentation includes alternateName, contactPoint, and related identity fields as recommended properties when they are useful to users. The key is simple: if the detail is on page and it helps identify or contact the organization, it can belong in the markup too.
This pattern fits nicely on company, contact, trust, or support pages connected to the product path.
Example 3: organization schema with sameAs identity links
For a lot of brands, one of the most useful properties is sameAs.
That is the field used to point to other web profiles that identify the same organization.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Semantec SEO",
"url": "https://semantecseo.com/",
"logo": "https://semantecseo.com/images/semantec-seo-logo.png",
"sameAs": [
"https://www.linkedin.com/company/semantec-seo/",
"https://x.com/semantecseo"
]
}
</script>
Google documents sameAs as a way to point to pages on other sites that provide more information about the organization, and supports multiple sameAs URLs. That makes it one of the clearest identity fields to get right.
If you are planning the identity side of the cluster, this page should sit next to sameAs and Entity Identity and Entity Markup.
Example 4: organization schema with address for a company page
If the organization has a physical or mailing address and that address appears on page, you can include it in the markup.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Semantec SEO",
"url": "https://semantecseo.com/",
"logo": "https://semantecseo.com/images/semantec-seo-logo.png",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Example Street",
"addressLocality": "Manchester",
"addressRegion": "Greater Manchester",
"postalCode": "M1 1AA",
"addressCountry": "GB"
}
}
</script>
Google recommends including all address properties that apply when an address is relevant, and notes that organizations can provide more than one address if they operate across locations.
Use this only when the page supports it. Do not invent location details for markup alone.
Example 5: organization schema for a company with a founder page and a product page
A lot of sites need a simple identity graph across company, founder, and product pages. That does not mean every page should use the same schema block. It means each page should play its role cleanly, and the internal path between them should stay clear.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Semantec SEO",
"url": "https://semantecseo.com/",
"logo": "https://semantecseo.com/images/semantec-seo-logo.png",
"sameAs": [
"https://www.linkedin.com/company/semantec-seo/"
]
}
</script>
On page, this kind of company identity should route readers into pages like MIRENA, Pricing, and About Kevin Maguire. The markup supports that identity layer. The internal links support the user path.
What fields are worth focusing on first
For most organization pages, these are the best fields to start with:
@typenameurllogoalternateNameif the brand has onecontactPointif the page includes support or contact detailssameAsfor external identity referencesaddressif it is relevant and visible on page
Google’s documentation also points to fields such as taxID and employee count in some cases, but not every site needs them. Start with the fields that improve clarity for users and reflect what the page already shows.
A clean way to think about organization markup
Ask one page level question first:
Is this page about the organization, or is it about something else published by the organization?
That question clears up a lot of schema mistakes.
If the page is about the organization, organization schema is often a strong fit.
If the page is about a workflow, a glossary term, a comparison, or a product feature, start with the page role first and then choose markup that matches that role.
That workflow lines up well with Page Types, Workflow Handoffs, and Approval Flow.
Common mistakes
Using organization markup on every page
A site can have organization markup without turning every page into an organization page.
Adding fields the page does not support
If the page does not show a detail, leave it out.
Confusing organization identity with product identity
A product page and a company page are connected, but they do not do the same job. That is why pages like Product Schema for SaaS live beside this page, not inside it.
Forgetting sameAs
Identity links are one of the clearest fields to maintain well across a company or brand page. Google includes sameAs as a recommended property for Organization markup.
Defaulting to generic Organization when a more specific subtype fits
Google recommends choosing the most specific subtype that matches the business, such as LocalBusiness for local business pages instead of falling back to generic Organization.
Validation flow
A clean validation flow looks like this:
- write the page first
- add the JSON LD after the visible page structure is set
- check the fields against the page content
- test the page in your schema review flow
- publish and review the live page
Google’s general structured data guidelines still apply here: JSON LD is recommended, structured data should match the visible page, and hidden or misleading markup can block eligibility for rich result appearance.
If you want the implementation path after this page, pair it with Schema Validation Workflow, Docs Outputs, and Publish Readiness Checks.
Best fit pages for organization schema on semantecseo.com
The strongest candidates on this site are pages like:
- the brand homepage
- company about pages
- founder and team trust pages
- contact pages
- product pages where publisher identity is clear
That means organization markup supports the brand layer around MIRENA, Pricing, and the wider company path around Semantec SEO.
Final take
Organization schema examples are most useful when they stay tied to brand identity, company pages, and clean publisher signals.
Start small. Use fields the page can support. Keep the page role clear. Then connect that identity layer to the rest of the site through strong internal links and clean schema implementation.
For the cleanest next path through this cluster, read Schema for SEO, JSON LD Basics, sameAs and Entity Identity, and Entity Markup.
FAQ
What is the best page for organization schema?
The best fit is a page centered on the company, brand, or publisher identity.
Should I use organization schema on a product page?
You can, if the page clearly presents the organization behind the product. But keep the page role clean and do not let company markup replace product markup where product markup fits better.
Is sameAs worth adding?
Yes. It is one of the clearest identity fields for connecting the organization to other web profiles.
Should every site use generic Organization?
No. Google recommends using the most specific subtype that matches the organization when a more specific type fits.