address
address · Required
Appears in
What is it?
The physical street address of a business or organization. This field tells search engines and AI assistants exactly where a business is located so they can display it in local search results, map packs, and knowledge panels.
For LocalBusiness schema, address is one of only two Required fields (alongside name) per Google's structured data documentation. Without it, Google cannot validate or display your local business rich result.
Why this matters for AEO
When a user asks an AI assistant "Where is [business name] located?" or "What's the address of [business]?", the AI pulls the address field directly from structured data to construct its answer. A properly formatted PostalAddress object gives the AI each component separately (street, city, state, zip), allowing it to answer partial queries like "What city is [business] in?" without guessing.
What the specs say
Schema.org: PostalAddress, Text. Physical address of the item. schema.org/address
Google: Required. "The physical location of the business. Include as many properties as possible." Google LocalBusiness docs
How to find your value
- streetAddress — Your lease agreement, Google Business Profile, business registration
- addressLocality — City or town name
- addressRegion — State, province, or region abbreviation (e.g., CA, ON, NSW)
- postalCode — ZIP or postal code
- addressCountry — ISO 3166-1 alpha-2 code (e.g., US, CA, GB)
Format and code
Always use a PostalAddress object rather than a plain text string. Google can parse the structured fields but may misinterpret a freeform address string.
{
"@type": "PostalAddress",
"streetAddress": "1901 Lemur Ave",
"addressLocality": "Sunnyvale",
"addressRegion": "CA",
"postalCode": "94086",
"addressCountry": "US"
}
Minimum viable address (for businesses that only list city/state):
{
"@type": "PostalAddress",
"addressLocality": "Mexico Beach",
"addressRegion": "FL",
"addressCountry": "US"
}
Full LocalBusiness example (GreatFood restaurant from schema.org):
{
"@context": "https://schema.org",
"@type": "Restaurant",
"name": "GreatFood",
"address": {
"@type": "PostalAddress",
"streetAddress": "1901 Lemur Ave",
"addressLocality": "Sunnyvale",
"addressRegion": "CA",
"postalCode": "94086"
},
"telephone": "(408) 714-1489",
"url": "http://www.greatfood.com"
}
Webflow implementation
Static pages
Paste the full JSON-LD block in Page Settings > Custom Code > Before