Schema stack

    Nonprofit Annual Meeting Stack

    Nonprofit annual meeting pages with Event + Organization, FAQs, and breadcrumb navigation.

    Included schema
    Event
    Organization
    Frequently Asked Questions
    Breadcrumb
    Fit

    When to use this stack

    • Annual member meeting pages with agendas and logistics
    • Nonprofit board meeting or town hall event pages
    • Pages where FAQs clarify RSVP, voting, and accessibility details
    Composition

    What is included

    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

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

    Recommended properties

    • contactPoint.contactType
    • contactPoint.telephone
    • description
    • 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": "Event",
        "@id": "https://www.example.org/annual-meeting#event",
        "name": "Community Foundation Annual Meeting",
        "description": "Annual meeting covering impact updates, board elections, and member questions.",
        "startDate": "2026-05-12T18:00:00-05:00",
        "endDate": "2026-05-12T20:00:00-05:00",
        "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
        "eventStatus": "https://schema.org/EventScheduled",
        "location": {
          "@type": "Place",
          "name": "Civic Center Hall",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "100 Center Plaza",
            "addressLocality": "Madison",
            "addressRegion": "WI",
            "postalCode": "53703",
            "addressCountry": "US"
          }
        },
        "organizer": { "@type": "Organization", "name": "Community Foundation" },
        "url": "https://www.example.org/annual-meeting"
      },
      {
        "@context": "https://schema.org",
        "@type": "Organization",
        "@id": "https://www.example.org/#org",
        "name": "Community Foundation",
        "url": "https://www.example.org",
        "logo": "https://www.example.org/assets/logo.png",
        "sameAs": [
          "https://www.facebook.com/communityfoundation",
          "https://www.linkedin.com/company/communityfoundation"
        ]
      },
      {
        "@context": "https://schema.org",
        "@type": "FAQPage",
        "mainEntity": [
          {
            "@type": "Question",
            "name": "Do I need to RSVP?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Yes. Please RSVP by May 5 to reserve seating and receive voting materials."
            }
          },
          {
            "@type": "Question",
            "name": "Can members vote online?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Members may vote in person or via the secure portal linked in the RSVP confirmation."
            }
          },
          {
            "@type": "Question",
            "name": "Is the venue accessible?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Yes. The venue has ramps, accessible restrooms, and reserved seating."
            }
          }
        ]
      },
      {
        "@context": "https://schema.org",
        "@type": "BreadcrumbList",
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.org" },
          { "@type": "ListItem", "position": 2, "name": "Events", "item": "https://www.example.org/events" },
          { "@type": "ListItem", "position": 3, "name": "Annual Meeting", "item": "https://www.example.org/annual-meeting" }
        ]
      }
    ]
    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 include hybrid attendance?

    If you offer virtual attendance, set eventAttendanceMode to MixedEventAttendanceMode and add a VirtualLocation.

    Do I need Organization if the Event has organizer?

    Yes. Organization provides richer nonprofit identity signals and can include social profiles and contact points.

    Primary sources

    References