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

      Nonprofit / Campaign Stack

      Donation or campaign pages with org identity, event tie-in, reviews/testimonials, FAQs, and breadcrumb context.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Nonprofit campaign or donation landing pages needing org identity and campaign details
      • Event-driven fundraising pages (galas, runs) that need structured event context
      • Pages where FAQs and testimonials help donor confidence and clarity

      What's included

      • Anchors nonprofit identity, mission, and donation URL.

      • Represents the related event or campaign milestone (optional but powerful for event-driven fundraising).

      • Shows testimonials or impact quotes tied to the organization/campaign.

      • Frequently Asked Questions
        Open generator

        Answers donation, tax-deductibility, matching gifts, and impact questions.

      • Breadcrumb
        Open generator

        Provides navigation context within the site.

      Required properties (stack union)

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

      author.name
      eventAttendanceMode
      itemListElement[].name
      itemReviewed.@id
      location.name
      logo
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      reviewBody
      reviewRating.ratingValue
      startDate
      url

      Recommended properties (stack union)

      address.addressCountry
      datePublished
      description
      eventStatus
      foundingDate
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      name
      offers.price
      offers.priceCurrency
      offers.url
      reviewRating.bestRating
      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": "NGO",
          "@id": "https://www.example.org/donate/clean-water#org",
          "name": "Clean Water Now",
          "url": "https://www.example.org/donate/clean-water",
          "logo": "https://www.example.org/images/logo-120x60.png",
          "sameAs": [
            "https://www.linkedin.com/company/clean-water-now",
            "https://twitter.com/cleanwaternow"
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Event",
          "@id": "https://www.example.org/donate/clean-water#event",
          "name": "Clean Water Spring Campaign 2026",
          "description": "Fundraising drive to build 50 wells across rural communities.",
          "startDate": "2026-03-15",
          "eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
          "eventStatus": "https://schema.org/EventScheduled",
          "location": {
            "@type": "VirtualLocation",
            "name": "Online"
          },
          "offers": {
            "@type": "Offer",
            "price": "0.00",
            "priceCurrency": "USD",
            "url": "https://www.example.org/donate/clean-water#donate"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "Review",
          "@id": "https://www.example.org/testimonials/anna#review",
          "name": "Impactful and transparent",
          "reviewBody": "I visited a community well built last year—seeing the impact firsthand made me a recurring donor.",
          "datePublished": "2026-02-10",
          "reviewRating": {
            "@type": "Rating",
            "ratingValue": 5,
            "bestRating": 5
          },
          "author": { "@type": "Person", "name": "Anna K." },
          "itemReviewed": { "@id": "https://www.example.org/donate/clean-water#org" }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Are donations tax-deductible?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Clean Water Now is a 501(c)(3) nonprofit. Receipts are emailed after each donation."
              }
            },
            {
              "@type": "Question",
              "name": "Do you offer employer matching?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. We provide a matching gift lookup and will supply verification letters for employers."
              }
            },
            {
              "@type": "Question",
              "name": "How are funds used?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "75% funds field projects, 20% training/maintenance, 5% administration. Quarterly impact reports are published on the campaign page."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.org" },
            { "@type": "ListItem", "position": 2, "name": "Donate", "item": "https://www.example.org/donate" },
            { "@type": "ListItem", "position": 3, "name": "Clean Water Campaign", "item": "https://www.example.org/donate/clean-water" }
          ]
        }
      ]

      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

      Is the Event object required?

      Optional but recommended for campaign drives tied to dates. For evergreen donation pages, omit Event and keep NGO + FAQ + Breadcrumb.

      How should I link to the donation CTA?

      Use the NGO or Event URL for the donation target; ensure the JSON-LD matches the visible CTA link on the page.

      References