We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Donation receipt pages with CreativeWork + Organization context, FAQs, and breadcrumb navigation.
Represents the donation receipt or acknowledgment letter.
Anchors the nonprofit or charity issuing the receipt.
Answers questions about tax deductibility and access.
Provides navigation context for the receipt page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://www.example.com/give#org",
"name": "Northwind Giving",
"url": "https://www.example.com/give",
"logo": "https://www.example.com/assets/logo.svg",
"sameAs": [
"https://www.linkedin.com/company/northwind-giving"
]
},
{
"@context": "https://schema.org",
"@type": "CreativeWork",
"@id": "https://www.example.com/give/receipts/2025#receipt",
"name": "2025 Donation Receipt",
"description": "Tax acknowledgment letter confirming your 2025 donation.",
"url": "https://www.example.com/give/receipts/2025",
"datePublished": "2026-01-12",
"author": {
"@type": "Organization",
"name": "Northwind Giving"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Is this receipt tax deductible?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Please consult your tax advisor for guidance on deductibility."
}
},
{
"@type": "Question",
"name": "How do I download my receipt?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Log in to your donor dashboard and select the year you need."
}
},
{
"@type": "Question",
"name": "Can I get a corrected receipt?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Contact donor support to request corrections or updates."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Give", "item": "https://www.example.com/give" },
{ "@type": "ListItem", "position": 3, "name": "Donation Receipt", "item": "https://www.example.com/give/receipts/2025" }
]
}
]Yes. Each donor should have a unique receipt page with its own URL and CreativeWork entry.
Only include donation amounts if they are visible on the page and safe to share.