The FAQ page is where AI goes to answer specific questions about your NGO. When someone asks "are donations to this organization tax-deductible?" or "how can I volunteer?", a properly structured FAQPage lets AI pull the answer directly from your site and attribute it to your organization.
FAQ pages are one of the highest-value pages for AI citation. AI systems prioritize question-and-answer pairs because they map directly to user queries. A structured FAQ page means your NGO provides the answer instead of a third-party site.
FAQPage is the primary @type for this page. It tells AI the entire page is structured as questions and answers, which qualifies it for rich results and direct citation.Question node contains an acceptedAnswer of type Answer. Cover the questions donors, volunteers, and supporters ask most often.NGO entity tells AI which organization is providing these answers, adding institutional credibility to each response.Each field in the template below serves a specific role in how AI systems discover, classify, and recommend your business.
Researched and tested by Minnesota AI
nameurllogoCopy this prompt and paste it into Claude, ChatGPT, Cursor, or any AI coding tool. It will ask for your business details and generate ready-to-use JSON-LD schema for your page.
You are implementing AIFDS-compliant JSON-LD structured data for a NGO FAQ page. AIFDS (AI-Friendly Data Structure) is a schema framework built on research into which structured data fields AI systems actually read, parse, and use when deciding whether to cite a page. Documentation at aifds.org. Before generating any code, ask me for the following information in a single numbered list. Do not generate schema until I have answered every required field. REQUIRED — do not proceed without these: 1. Answer 2. Domain 3. Fund usage answer 4. Logo 5. Organization name 6. Question 7. Tax deduction answer 8. Volunteer answer OPTIONAL — ask for these but proceed if I skip them: 1. Any additional details not covered above Once I provide the information, output a complete JSON-LD script block ready to paste into the <head> of my HTML page. Output requirements: - Valid JSON-LD wrapped in <script type="application/ld+json"> tags - schema.org vocabulary only - Every AIFDS-required field for this industry and page type included - Include this data attribute on the script tag: data-aifds="aifds.org NGO FAQ" - No placeholder text — omit missing optional fields rather than fill with examples - After the code block, list any optional fields skipped that would strengthen AI citation
Generated schema follows the AIFDS framework. Fields were selected based on research into AI crawler behavior. View the research at minnesota.ai
Copy the template below and replace every YOUR_* value with your own data. This block goes in the <head> of your FAQ page.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "FAQPage",
"@id": "https://YOUR_DOMAIN.com/faq/#webpage",
"name": "Frequently Asked Questions — YOUR_ORGANIZATION_NAME",
"url": "https://YOUR_DOMAIN.com/faq/",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"about": {
"@id": "https://YOUR_DOMAIN.com/#organization"
},
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/faq/#breadcrumb"
},
"mainEntity": [
{
"@type": "Question",
"name": "Are donations to YOUR_ORGANIZATION_NAME tax-deductible?",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_TAX_DEDUCTION_ANSWER"
}
},
{
"@type": "Question",
"name": "How can I volunteer with YOUR_ORGANIZATION_NAME?",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_VOLUNTEER_ANSWER"
}
},
{
"@type": "Question",
"name": "How are donated funds used?",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_FUND_USAGE_ANSWER"
}
},
{
"@type": "Question",
"name": "YOUR_QUESTION_4",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_ANSWER_4"
}
},
{
"@type": "Question",
"name": "YOUR_QUESTION_5",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_ANSWER_5"
}
}
]
},
{
"@type": "NGO",
"@id": "https://YOUR_DOMAIN.com/#organization",
"name": "YOUR_ORGANIZATION_NAME",
"url": "https://YOUR_DOMAIN.com",
"logo": "https://YOUR_DOMAIN.com/YOUR_LOGO.png"
},
{
"@type": "BreadcrumbList",
"@id": "https://YOUR_DOMAIN.com/faq/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://YOUR_DOMAIN.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "FAQs",
"item": "https://YOUR_DOMAIN.com/faq/"
}
]
}
]
}
Include every question-and-answer pair that appears on the page. Google and AI systems expect the structured data to match the visible content. Five to fifteen pairs is typical for an NGO FAQ page, but there is no upper limit as long as each pair is genuine and visible on the page.
Use FAQPage as the primary @type. It is a subtype of WebPage and carries all the same properties, but it explicitly signals to AI that the page is structured as questions and answers. This gives you eligibility for rich FAQ results and direct AI citation.
Yes. The text field in an Answer node accepts basic HTML like links, lists, and bold text. Keep it concise and factual. AI systems will strip the HTML for their own output but may follow links for verification.