Seoxpert.io
mediumTechnical SEO

Organization Schema Missing Name or URL

Organization schema is missing the required name or url field in your structured data.

By Seoxpert Editorial · Published

Why it matters

Google requires both name and url fields in Organization schema to recognize and display your brand in Knowledge Panels. Without these, your structured data is ignored, and you miss out on enhanced brand visibility in search results.

Impact

Your Organization schema will not contribute to knowledge panels or brand recognition in search results.

How it's detected

Automated crawlers parse JSON-LD or Microdata and flag Organization or WebSite schemas missing the name or url property.

Common causes

  • Omitting the name or url property when implementing Organization schema
  • Using incomplete schema generators or plugins
  • Copy-pasting schema examples without required fields
  • Misunderstanding which fields are mandatory for Organization schema

How to fix it

Edit your Organization JSON-LD structured data to include both the name (your brand name) and url (your canonical homepage URL) fields. For best results, also add logo, contactPoint, and sameAs properties. Validate your schema using Google's Rich Results Test to ensure all required fields are present.

Code examples

Incorrect Organization schema (missing name and url)

{
  "@context": "https://schema.org",
  "@type": "Organization",
  "logo": "https://example.com/logo.png"
}

Correct Organization schema (with name and url)

{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Example Company",
  "url": "https://example.com",
  "logo": "https://example.com/logo.png",
  "contactPoint": [{
    "@type": "ContactPoint",
    "telephone": "+1-800-555-1234",
    "contactType": "customer service"
  }],
  "sameAs": [
    "https://www.facebook.com/example",
    "https://twitter.com/example"
  ]
}

FAQ

What fields are required in Organization schema for Google?

At minimum, the name and url fields are required for Organization schema to be recognized by Google.

Will my Organization schema work if only the logo is present?

No, Google ignores Organization schema missing the required name or url fields.

How do I validate my Organization schema?

Use Google's Rich Results Test or the Schema Markup Validator to check for required fields.

Can I use my homepage URL for the url field?

Yes, the url field should point to your canonical homepage URL.

Found this issue on your site?

Run a scan to see if Organization Schema Missing Name or URL affects your pages.

Scan my website →