We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Conference sponsorship pages with Organization + Event + Offer, FAQs, and breadcrumb navigation.
Identifies the conference organizer and brand.
Describes the conference being sponsored.
Defines the sponsorship package and price.
Answers sponsorship deliverables and timeline questions.
Provides navigation context for the sponsor page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://www.example.com/events/summit#org",
"name": "SummitConf",
"url": "https://www.example.com/events/summit",
"logo": "https://www.example.com/images/summitconf-logo.png",
"sameAs": [
"https://www.linkedin.com/company/summitconf",
"https://www.twitter.com/summitconf"
]
},
{
"@context": "https://schema.org",
"@type": "Event",
"@id": "https://www.example.com/events/summit#event",
"name": "SummitConf 2026",
"description": "Annual product and growth conference with 2,000+ attendees.",
"startDate": "2026-09-18T09:00:00-07:00",
"endDate": "2026-09-19T17:00:00-07:00",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"eventStatus": "https://schema.org/EventScheduled",
"location": {
"@type": "Place",
"name": "Cascade Convention Center",
"address": {
"@type": "PostalAddress",
"streetAddress": "800 Pine St",
"addressLocality": "Seattle",
"addressRegion": "WA",
"postalCode": "98101",
"addressCountry": "US"
}
},
"organizer": { "@type": "Organization", "name": "SummitConf" },
"url": "https://www.example.com/events/summit"
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/events/summit/sponsor#offer",
"name": "Gold Sponsor Package",
"description": "Booth, keynote placement, email inclusion, and lead list.",
"price": "15000.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/events/summit/sponsor#gold",
"category": "Sponsorship"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What assets are included in the Gold package?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Gold sponsors receive a 10x10 booth, stage mention, and a featured logo on the event site."
}
},
{
"@type": "Question",
"name": "When are sponsor materials due?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Artwork and logo files are due 6 weeks before the event for inclusion in print and web assets."
}
},
{
"@type": "Question",
"name": "Can I upgrade later?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, upgrades are available while higher tiers remain open."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "SummitConf", "item": "https://www.example.com/events/summit" },
{ "@type": "ListItem", "position": 3, "name": "Sponsorships", "item": "https://www.example.com/events/summit/sponsor" }
]
}
]Yes. Add one Offer per tier shown on the page with distinct @id values and URLs.
Yes. Event describes the conference, while Organization identifies the host.