The mission page is where AI learns what your NGO actually does and why it exists. This blueprint structures your purpose, geographic focus, and cause keywords so AI systems can match your organization to relevant queries and cite you when people ask about the issues you address.
Your mission page answers the most fundamental question AI has about your NGO: what do you do and who do you serve? Without structured data here, AI has to infer your cause from unstructured text, which leads to misclassification or being overlooked entirely.
description field tells AI your mission statement in machine-readable form. This is the text AI may quote when explaining what your NGO does.areaServed property tells AI where your NGO operates, whether that is a single city, a country, or a global scope. This is critical for location-based queries.keywords property provides explicit topic signals. When someone asks AI about clean water, refugee support, or climate action, these keywords help AI connect the question to your organization.WebPage node links this page back to the site graph and provides the breadcrumb chain for navigation context.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
nameurldescriptionareaServedCopy 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 Mission 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. City 2. Country 3. Domain 4. Faq answer 5. Faq question 6. Keyword 7. Mission statement 8. Organization name 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 Mission" - 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 mission page.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "NGO",
"@id": "https://YOUR_DOMAIN.com/#organization",
"name": "YOUR_ORGANIZATION_NAME",
"url": "https://YOUR_DOMAIN.com",
"description": "YOUR_MISSION_STATEMENT",
"areaServed": [
{
"@type": "Country",
"name": "YOUR_COUNTRY"
},
{
"@type": "City",
"name": "YOUR_CITY"
}
],
"keywords": [
"YOUR_KEYWORD_1",
"YOUR_KEYWORD_2",
"YOUR_KEYWORD_3"
]
},
{
"@type": "WebPage",
"@id": "https://YOUR_DOMAIN.com/mission/#webpage",
"url": "https://YOUR_DOMAIN.com/mission/",
"name": "Our Mission — YOUR_ORGANIZATION_NAME",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"about": {
"@id": "https://YOUR_DOMAIN.com/#organization"
},
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/mission/#breadcrumb"
}
},
{
"@type": "BreadcrumbList",
"@id": "https://YOUR_DOMAIN.com/mission/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://YOUR_DOMAIN.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Mission",
"item": "https://YOUR_DOMAIN.com/mission/"
}
]
},
{
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "YOUR_FAQ_QUESTION_1",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_FAQ_ANSWER_1"
}
},
{
"@type": "Question",
"name": "YOUR_FAQ_QUESTION_2",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_FAQ_ANSWER_2"
}
},
{
"@type": "Question",
"name": "YOUR_FAQ_QUESTION_3",
"acceptedAnswer": {
"@type": "Answer",
"text": "YOUR_FAQ_ANSWER_3"
}
}
]
}
]
}
Aim for two to four sentences that clearly state your cause, who you serve, and your primary approach. AI systems use this as a summary they can quote directly. Avoid internal jargon and write in plain language that someone unfamiliar with your organization would understand.
Yes. The areaServed property accepts an array of places. You can mix types such as City, State, Country, or AdministrativeArea. List every region where your NGO actively operates so AI can match you to location-specific queries.
Include three to eight keywords that directly describe your cause and focus areas. Think about the terms someone would use when asking AI for organizations working on your issue. Quality matters more than quantity — each keyword should be a distinct concept, not a synonym of another.