Cookies & analytics

    We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.

    SwiftSchema Logo

    SwiftSchema

    Intuitive Schema Generation at Your Fingertips

    AboutLearnContact
      Stack

      Volunteer Hub Stack

      Volunteer hubs listing opportunities with CollectionPage + Event + Organization context, FAQs, and breadcrumbs.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Volunteer opportunity hubs for nonprofits
      • Volunteer listings with dates, locations, and sign-up CTAs
      • Pages where FAQs clarify requirements, background checks, and time commitments

      What's included

      • Collection Page
        Open generator

        Represents a hub page aggregating volunteer opportunities.

      • Defines each volunteer opportunity with date/time and location.

      • Organization
        Open generator

        Anchors the nonprofit or organizer identity.

      • Frequently Asked Questions
        Open generator

        Answers questions about eligibility, training, and time commitments.

      • Breadcrumb
        Open generator

        Provides navigation context to the volunteer hub.

      Required properties (stack union)

      Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).

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

      Recommended properties (stack union)

      contactPoint.telephone
      eventAttendanceMode
      eventStatus
      hasPart.@id
      inLanguage
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.url
      organizer.@id
      sameAs

      Combined JSON-LD

      Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.

      Validate
      [
        {
          "@context": "https://schema.org",
          "@type": "Organization",
          "@id": "https://www.example.com/volunteer#org",
          "name": "Northwind Community Outreach",
          "url": "https://www.example.com/volunteer",
          "logo": "https://www.example.com/assets/logo.svg",
          "contactPoint": {
            "@type": "ContactPoint",
            "telephone": "+1-512-555-0164",
            "contactType": "Volunteer Coordinator"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "CollectionPage",
          "@id": "https://www.example.com/volunteer#page",
          "name": "Volunteer Opportunities",
          "description": "Browse upcoming volunteer events and sign up to support local initiatives.",
          "url": "https://www.example.com/volunteer",
          "inLanguage": "en",
          "hasPart": [
            { "@id": "https://www.example.com/volunteer/park-cleanup#event" },
            { "@id": "https://www.example.com/volunteer/food-drive#event" }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Event",
          "@id": "https://www.example.com/volunteer/park-cleanup#event",
          "name": "Riverfront Park Cleanup",
          "startDate": "2025-06-14T09:00:00-05:00",
          "endDate": "2025-06-14T12:00:00-05:00",
          "eventStatus": "https://schema.org/EventScheduled",
          "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
          "url": "https://www.example.com/volunteer/park-cleanup",
          "location": {
            "@type": "Place",
            "name": "Riverfront Park",
            "address": {
              "@type": "PostalAddress",
              "streetAddress": "600 Riverside Dr",
              "addressLocality": "Austin",
              "addressRegion": "TX",
              "postalCode": "78701",
              "addressCountry": "US"
            }
          },
          "organizer": { "@id": "https://www.example.com/volunteer#org" },
          "offers": {
            "@type": "Offer",
            "url": "https://www.example.com/volunteer/park-cleanup#signup"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Do I need experience?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "No experience required. We provide on-site instructions and supplies."
              }
            },
            {
              "@type": "Question",
              "name": "Is there a minimum age?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Volunteers must be 16+ or accompanied by a guardian."
              }
            },
            {
              "@type": "Question",
              "name": "What should I bring?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Wear comfortable clothing and closed-toe shoes. Water and snacks are provided."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Volunteer", "item": "https://www.example.com/volunteer" }
          ]
        }
      ]

      Implementation steps

      1. Start from your live product detail page content; ensure titles, prices, and availability match the page.
      2. Embed one JSON-LD script in the head or just before the closing body tag using the combined example as a template.
      3. Fill shipping details for each region you serve and keep them aligned with on-page shipping tables.
      4. Attach your canonical MerchantReturnPolicy URL and keep the policy text in sync with Merchant Center.
      5. Add 3–6 FAQs that address purchase blockers (shipping, returns, compatibility) and keep answers consistent with visible content.
      6. Validate in the Rich Results Test and revalidate after price/availability/policy changes.

      Common errors and fixes

      FAQs

      Should I include multiple opportunities?

      Yes. Add one Event per opportunity and include each in CollectionPage.hasPart.

      What if opportunities are ongoing?

      Use a wider start/end date range or list recurring events separately with clear dates.

      References