Organizations Nonprofit NGO

Mission Page Blueprint — NGO

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.

What this page needs

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.

Why these fields matter to AI

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

NGO

name
Non-negotiable. AI cannot cite or recommend an unnamed organization.
url
AI needs a stable URL to attribute recommendations and route users correctly.
description
AI uses this to match the nonprofit to cause-related queries. Must describe the mission, not the website.
areaServed
AI uses this to match the nonprofit to location-specific queries. Local, national, or international — specify it.

Use This Prompt to Implement Your Schema

Copy 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.

Implementation Prompt · Mission
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

Template — fill in your values

Copy the template below and replace every YOUR_* value with your own data. This block goes in the <head> of your mission page.

JSON-LD · NGO Mission
{
  "@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"
          }
        }
      ]
    }
  ]
}

Frequently asked questions

How detailed should the description field be?

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.

Can I list multiple areas served?

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.

How many keywords should I include?

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.

Test your structured data

Paste your URL and see exactly what AI systems can read from your site.

Open Validator →