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

      Charitable Matching Gifts Hub Stack

      Matching gifts hub pages with CollectionPage + Offer context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Corporate matching gift program hubs
      • Nonprofit matching gift lookup pages
      • Pages where FAQs clarify eligibility, ratios, and submission steps

      What's included

      • Collection Page
        Open generator

        Represents the hub listing matching gift programs or employer details.

      • Describes the matching gift offer and submission URL.

      • Frequently Asked Questions
        Open generator

        Answers questions about eligibility, ratios, and timelines.

      • Breadcrumb
        Open generator

        Provides navigation context for the matching gifts 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`).

      availability
      description
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      price
      priceCurrency
      url

      Recommended properties (stack union)

      description
      eligibleRegion
      hasPart.@id
      inLanguage
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      priceValidUntil

      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": "CollectionPage",
          "@id": "https://www.example.com/giving/matching-gifts#page",
          "name": "Matching Gifts Program",
          "description": "Find employer matching gift policies and submit your match request.",
          "url": "https://www.example.com/giving/matching-gifts",
          "inLanguage": "en",
          "hasPart": [
            { "@id": "https://www.example.com/giving/matching-gifts#offer" }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/giving/matching-gifts#offer",
          "name": "Employer Matching Gift Submission",
          "price": "0.00",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/giving/matching-gifts/submit",
          "eligibleRegion": "US",
          "description": "Submit a matching gift request for your employer to review."
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Who is eligible for matching gifts?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Eligibility depends on your employer’s program. Most full-time employees are eligible to submit a match."
              }
            },
            {
              "@type": "Question",
              "name": "What is the typical match ratio?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Many employers match 1:1, but ratios can vary. Check your employer’s policy for details."
              }
            },
            {
              "@type": "Question",
              "name": "How long does approval take?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Most matches are approved within 2-4 weeks after submission."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Giving", "item": "https://www.example.com/giving" },
            { "@type": "ListItem", "position": 3, "name": "Matching Gifts", "item": "https://www.example.com/giving/matching-gifts" }
          ]
        }
      ]

      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 list multiple employers on this page?

      If you list employers, add a section for each and keep the CollectionPage.hasPart links aligned to those sections.

      Do I need to include minimum and maximum match amounts?

      Yes. Include any minimums or caps in the page content and FAQ answers so donors see accurate limits.

      References