sponsor
sponsor · Not mentioned by Google
Appears in
What is it?
sponsor identifies a person or organization that supports your entity through a pledge, promise, or financial contribution. Unlike funder, which implies pure financial backing, sponsorship typically involves a promotional or marketing relationship. A corporate sponsor of an event, a company sponsoring a nonprofit program, or an organization backing a medical study all use this field.
The field accepts Organization or Person objects and can appear on CreativeWork, Event, Grant, MedicalStudy, Organization, and Person types.
Why this matters for AEO
When a user asks "Who sponsors [organization]?" or "What companies sponsor [event]?", AI answer engines look for explicit sponsor relationships in structured data. Declaring sponsors in JSON-LD creates a direct, machine-readable connection between entities that engines can surface immediately. Without structured sponsor data, an engine must scan press releases or partnership pages, which may be incomplete or outdated.
For the sponsoring organization, being named in another entity's sponsor field creates a backlink-like relationship in the knowledge graph, potentially surfacing the sponsor in queries about the sponsored entity.
What the specs say
Schema.org: Expects Organization or Person. "A person or organization that supports a thing through a pledge, promise, or financial contribution. E.g. a sponsor of a Medical Study or a corporate sponsor of an event." Source
Google: Not listed in Google's structured data documentation for Organization. Source
How to find your value
- Sponsorship agreements — Names and URLs of sponsoring organizations
- Event pages — Listed sponsors with logos
- Annual reports — Corporate sponsors and partners
- "Our Partners" page — Named sponsoring entities
Format and code
Single sponsor:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "National Public Radio",
"sponsor": {
"@type": "Organization",
"name": "GloboCorp",
"url": "https://globocorp.example.com"
}
}
Multiple sponsors:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "TED Conferences",
"sponsor": [
{
"@type": "Organization",
"name": "Rolex",
"url": "https://www.rolex.com"
},
{
"@type": "Organization",
"name": "Mailchimp",
"url": "https://mailchimp.com"
}
]
}
Person as sponsor:
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "XPrize Foundation",
"sponsor": {
"@type": "Person",
"name": "Peter Diamandis"
}
}
Webflow implementation
Static pages
Add sponsor data in Page Settings > Custom Code (before </head>):
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Your Organization",
"sponsor": {
"@type": "Organization",
"name": "Sponsor Name",
"url": "https://sponsor-website.com"
}
}
</script>
CMS template pages
For events or programs with varying sponsors, create a multi-reference CMS collection for sponsors and reference it in the template. Since Webflow does not natively output JSON arrays from multi-reference fields, use a plain text field with the sponsor's name and URL for simple cases.
In Schema HQ
Sponsor entities to your organization schema through the ui. enter sponsor names and urls, and schema hq generates the nested organization or person objects. is supported
Real examples
NPR (from schema.org reference):
{
"@type": "Organization",
"name": "National Public Radio",
"sponsor": {
"@type": "Organization",
"name": "GloboCorp",
"url": "https://globocorp.example.com"
}
}
Related fields
- funder — financial backer without promotional element
- funding — grant or funding details (the financial instrument itself)
- member — people or orgs that belong to this organization
- brand — the organization's own brand identity
FAQ
What is the difference between sponsor and funder?
sponsor implies a promotional or marketing relationship: the sponsor gets visibility in exchange for support. funder is a purely financial relationship with no implied promotional benefit. A company that puts its logo on a conference banner is a sponsor. A foundation that provides a research grant is a funder.
Can an organization list itself as a sponsor of another entity?
Yes. If your organization sponsors events, nonprofits, or research, the sponsored entity should include your organization in their sponsor field. Your own Organization schema does not need to list entities you sponsor; that relationship is declared on the sponsored entity's side.
Should I include past sponsors?
Only include current, active sponsors. Structured data represents the present state of an entity. If a sponsorship has ended, remove it from the markup to avoid misleading search engines and AI systems.