url · Essential · Required
The url field is your organization's official website address. This is the canonical homepage URL that represents your business online. Together with name, it forms the minimum viable Organization entity. Every other schema field builds on these two.
This should be your primary domain, not a subdomain, landing page, or investor relations site. Use the same URL listed in your Google Business Profile.
AI answer engines use the url field for entity disambiguation. Multiple companies can share the same name, but URLs are unique. When Perplexity retrieves content from your blog post and checks the publisher's url against its entity database, a match to a known domain confirms the source. A missing or inconsistent url forces the AI to rely on name matching alone, which fails for common brand names.
Schema.org defines url as part of the base Thing type, inherited by Organization and every other schema type.
Google uses url to connect your Organization schema to your Knowledge Panel and to verify domain ownership for rich results.
Your organization URL is your homepage. Choose carefully:
| Scenario | URL to use |
|---|---|
| Single domain | https://www.example.com |
| www vs non-www | Whichever your site redirects to (the canonical) |
| Multiple TLDs (.com, .co.uk) | Your primary/global domain |
| Separate corporate site | The main brand site, not investor relations |
Type: URL (string)
Pattern: https://[www.]domain.tld
Valid examples:
"https://www.google.com"
"https://stripe.com"
"https://www.karpi.studio"Invalid examples:
"http://www.example.com" (HTTP, not HTTPS)
"www.example.com" (missing protocol)
"https://www.example.com/about" (includes path)
"https://www.example.com/" (trailing slash inconsistency)Hardcode your canonical URL in the Organization schema on your homepage via Page Settings > Custom Code > Inside <head> tag:
{
"@type": "Organization",
"@id": "https://www.karpi.studio/#organization",
"name": "Karpi Studio",
"url": "https://www.karpi.studio"
}The Organization url does not change per CMS item. Reference the Organization via @id on CMS pages. The url lives in the homepage definition only.
Schema HQ sets your Organization url once and references it across all pages. If you migrate domains, update it in one place.
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://stripe.com/#organization",
"name": "Stripe",
"url": "https://stripe.com"
}{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://www.hubspot.com/#organization",
"name": "HubSpot",
"url": "https://www.hubspot.com"
}Notice Stripe uses no www, HubSpot uses www. Both are correct because they match each brand's canonical domain.
❌ Using HTTP:
"url": "http://www.example.com"✅ Using HTTPS:
"url": "https://www.example.com"❌ Including a page path:
"url": "https://www.example.com/home"✅ Homepage domain only:
"url": "https://www.example.com"❌ Missing the protocol:
"url": "www.example.com"✅ Full URL with protocol:
"url": "https://www.example.com"❌ Mismatched canonical (site redirects www to non-www but schema uses www):
"url": "https://www.example.com" (but site canonical is https://example.com)✅ Matching your actual canonical:
"url": "https://example.com"url, forms the minimum viable Organization entity.url typically forms the base of your @id values (e.g., https://yoursite.com/#organization).url which points only to your own homepage.Schema HQ sets your Organization url as the base for all @id references across your site. Change your domain once in the dashboard, and every reference updates automatically.
Use whichever version your site redirects to. If typing example.com redirects to www.example.com, use the www version. The schema url must match your canonical domain. Check your Webflow hosting settings to confirm which version is canonical.
If you operate separate country domains (example.com, example.co.uk, example.de), each should have its own Organization schema with its own url. For subdirectory localization (example.com/de/), use one Organization with the root domain as url.
Use the primary brand website as the Organization url. Secondary sites (product microsites, event pages, investor portals) can reference the main Organization via @id or define their own entities with their own url values if they represent distinct brands.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
"address": { "@type": "PostalAddress", "streetAddress": "1600 Amphitheatre Parkway", "addressLocality": "Mountain View", "addressRegion": "CA", "postalCode": "94043", "addressCountry": "US"}Block quote
Ordered list
Unordered list
Bold text
Emphasis
Superscript
Subscript