LocalBusiness Schema Missing Telephone or Address
LocalBusiness schema is missing required telephone or address fields, affecting local SEO eligibility.
By Seoxpert Editorial · Published
Why it matters
Google requires both telephone and address fields in LocalBusiness schema for local panel integration and rich results. Without these, your business may not appear in map packs or local knowledge panels, reducing visibility for local searches.
Impact
Missing telephone or address fields in LocalBusiness schema prevents eligibility for local SEO features in Google search.
How it's detected
An automated crawler parses structured data and flags LocalBusiness entities missing either the telephone or address (PostalAddress) property.
Common causes
- Omitting telephone or address when generating LocalBusiness schema markup
- Using incomplete address objects lacking required subfields
- Copying schema templates without customizing contact details
- Relying on plugins or CMS tools that do not include all required fields
How to fix it
Code examples
Incorrect LocalBusiness schema (missing telephone and addres
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Example Business"
}Correct LocalBusiness schema (with telephone and address)
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Example Business",
"telephone": "+1-555-555-5555",
"address": {
"@type": "PostalAddress",
"streetAddress": "123 Main St",
"addressLocality": "Anytown",
"addressRegion": "CA",
"postalCode": "90210",
"addressCountry": "US"
}
}FAQ
Is it enough to include only the telephone or only the address in LocalBusiness schema?
No, both telephone and a complete address are required for full eligibility in local SEO features.
What fields must be included in the PostalAddress object?
Include streetAddress, addressLocality, addressRegion, postalCode, and addressCountry.
Will missing these fields affect my appearance in Google Maps or local panels?
Yes, missing telephone or address fields can prevent your business from appearing in map packs and local knowledge panels.
Do I need to use JSON-LD, or can I use Microdata for LocalBusiness schema?
Both JSON-LD and Microdata are supported, but all required fields must be present regardless of format.
Found this issue on your site?
Run a scan to see if LocalBusiness Schema Missing Telephone or Address affects your pages.
Scan my website →