Skip to main content
WP Bulk Publishing
WP Bulk Publishing
People & Org · Must-have

Organization + ContactPoint schema — what it does & how to ship it

Short answer

Organization is the sitewide entity anchor — company name, logo, sameAs links to your social profiles, and ContactPoint sub-nodes for support/sales channels. Essential for Knowledge Panel and brand SERPs.

What it does

Organization carries name, url, logo (ImageObject), sameAs (an array of authoritative profile URLs) and contactPoint. Ship it once sitewide from the root layout; every other schema references it by @id.

SERP / AI benefit

Knowledge Panel eligibility, logo in the SERP, brand entity graph reinforcement across Google, LLMs and social discoverability engines. Without Organization schema, you're an unknown entity to every AI answer engine.

Where to use it

Root of every site (in the root layout, once).

JSON-LD example

{
  "@context": "https://schema.org",
  "@type": "Organization",
  "@id": "https://wbpomniseo.com/#org",
  "name": "WBP Omni SEO Pro",
  "url": "https://wbpomniseo.com",
  "logo": { "@type": "ImageObject", "url": "https://wbpomniseo.com/favicon.png" },
  "sameAs": ["https://www.linkedin.com/company/wbpomniseo", "https://twitter.com/wbpomniseo"],
  "contactPoint": { "@type": "ContactPoint", "contactType": "customer support", "email": "support@wbpomniseo.com" }
}

Copy, edit for your site, and drop into your page head inside a<script type="application/ld+json">block. Validate with Google's Rich Results Test.

In WBP Omni SEO Pro

Injected sitewide from the root layout with logo, canonical URL, and sameAs pointing to LinkedIn, GitHub, Twitter/X, YouTube and product pages.

Ship Organization + ContactPoint without touching code

Frequently asked

How many sameAs links should Organization have?

5-10 authoritative profiles (LinkedIn, X, YouTube, GitHub, Crunchbase, product listings). Quality over quantity.

Organization vs LocalBusiness?

Organization is the top-level company; LocalBusiness is a physical branch. Multi-location sites use both.

Does Organization need to be on every page?

Yes — either fully or by @id reference. It's the anchor other schemas hang off.

Related schemas

Keep learning