Schema stack

    Conference Sponsor Page Stack

    Conference sponsorship pages with Organization + Event + Offer, FAQs, and breadcrumb navigation.

    Included schema
    Organization
    Event
    Offer
    Frequently Asked Questions
    Breadcrumb
    Fit

    When to use this stack

    • Conference sponsorship prospectus pages with tiered packages
    • Event pages listing sponsor benefits and pricing
    • Pages where FAQs clarify deliverables, deadlines, and logistics
    Composition

    What is included

    • 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.

    Data contract

    Properties across the bundle

    Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.

    Required properties

    • availability
    • eventAttendanceMode
    • itemListElement[].name
    • location.name
    • logo
    • mainEntity[].@type=Question
    • mainEntity[].acceptedAnswer.text
    • name
    • price
    • priceCurrency
    • startDate
    • url

    Recommended properties

    • category
    • contactPoint.contactType
    • contactPoint.telephone
    • description
    • eligibleRegion
    • endDate
    • eventStatus
    • itemListElement[].item
    • location.address
    • mainEntity[].acceptedAnswer.text
    • mainEntity[].author.name
    • mainEntity[].name
    • organizer.name
    • sameAs[]
    • url
    Copy-ready example

    Combined JSON-LD

    Paste this as one script tag, then replace every example value with data from the live 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" }
        ]
      }
    ]
    Workflow

    Implement and verify

    1. 01

      Start with the live page

      Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.

    2. 02

      Add one JSON-LD script

      Use the combined example as a template in the document head or before the closing body tag.

    3. 03

      Complete regional details

      Fill shipping destinations and timing for every region the page actually serves.

    4. 04

      Link the return policy

      Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.

    5. 05

      Match visible answers

      Add only FAQs that users can read on the same page, with identical answers.

    6. 06

      Validate after changes

      Run Rich Results Test after implementation and whenever price, availability, or policy data changes.

    Quality check

    Common errors and fixes

    • Missing currency or availability

      Use ISO currency codes and complete schema.org availability URLs in Offer data.

    • Incomplete shipping details

      Include shippingDestination.addressCountry and deliveryTime.transitTime with units.

    • Return policy is not connected

      Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.

    • FAQ answers differ from the page

      Keep structured FAQ answers identical to visible answers.

    Questions

    Stack FAQs

    Should I list multiple sponsor tiers?

    Yes. Add one Offer per tier shown on the page with distinct @id values and URLs.

    Do I need Event and Organization?

    Yes. Event describes the conference, while Organization identifies the host.

    Primary sources

    References