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

      Crowdfunding Campaign Stack

      Crowdfunding/pledge pages with Organization + Offer context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Crowdfunding/pledge campaign landing pages
      • Fundraising pages that need clear offer tiers and org context
      • Pages where FAQs clarify eligibility, timelines, and fulfillment

      What's included

      • Organization
        Open generator

        Anchors the campaign’s organization with logo and URL.

      • Expresses the pledge/offer tier with pricing and URL.

      • Frequently Asked Questions
        Open generator

        Answers campaign timing, fulfillment, and eligibility questions.

      • Breadcrumb
        Open generator

        Provides navigation context to the campaign page.

      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
      itemListElement[].name
      logo
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      price
      priceCurrency
      url

      Recommended properties (stack union)

      address.addressCountry
      category
      description
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      priceValidUntil
      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/crowdfunding/clean-water#org",
          "name": "Clean Water Initiative",
          "url": "https://www.example.com",
          "logo": "https://www.example.com/assets/logo.svg",
          "sameAs": [
            "https://www.linkedin.com/company/clean-water-initiative"
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/crowdfunding/clean-water#offer",
          "name": "Pledge — Provide Clean Water",
          "description": "Fund a household water filtration kit.",
          "price": "50.00",
          "priceCurrency": "USD",
          "availability": "https://schema.org/PreOrder",
          "url": "https://www.example.com/crowdfunding/clean-water#donate",
          "priceValidUntil": "2025-12-31"
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "When will funds be deployed?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Projects deploy quarterly. We publish impact updates after each deployment."
              }
            },
            {
              "@type": "Question",
              "name": "Is my pledge tax-deductible?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes, if applicable in your country. You’ll receive a receipt after donating."
              }
            },
            {
              "@type": "Question",
              "name": "What happens if the campaign is underfunded?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "We reallocate to the next highest-priority clean water projects or refund upon request."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Campaigns", "item": "https://www.example.com/crowdfunding" },
            { "@type": "ListItem", "position": 3, "name": "Clean Water Initiative", "item": "https://www.example.com/crowdfunding/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

      Should I list multiple tiers?

      Include one Offer per tier shown on the page with distinct @id and URLs matching the visible buttons.

      Can I include stretch goals?

      Mention them in the Article body; keep Offer objects focused on pledge tiers that can be selected.

      References