Your service areas page tells AI exactly where your institution operates. This blueprint structures your campus locations, online program reach, and school district boundaries into machine-readable entries so AI systems can confidently recommend you for location-specific education queries.
Location is a primary filter in education searches. When someone asks AI "find a university near me" or "which schools in Minnesota offer online nursing programs," AI needs structured geographic data to match you. A service areas page without structured data forces AI to parse paragraph text for city names — and it misses most of them.
areaServed array on your EducationalOrganization node should list every campus location, district, and region you serve. Each entry should use the appropriate Schema.org type: City, AdministrativeArea, or State.State or Country entries for the regions where online students can enroll. This catches queries like "online degree programs available in California."AdministrativeArea entries for the school district boundaries. This is critical for families searching for schools in their attendance zone.Without structured area data, AI may know your institution exists but cannot confirm whether you serve the location the user is asking about — so it recommends a competitor whose coverage is explicit.
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
nameurlareaServedCopy 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 Educational Organization Service Areas 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. Campus city 2. Domain 3. Faq answer 4. Faq question 5. Online program country 6. Organization name 7. Phone number 8. School district or county 9. Service areas page description 10. Service areas page title 11. State 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 Educational Organization Service Areas" - 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. Add or remove entries in the areaServed array to match every location and region your institution actually serves.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "EducationalOrganization",
"@id": "https://YOUR_DOMAIN.com/#organization",
"name": "YOUR_ORGANIZATION_NAME",
"url": "https://YOUR_DOMAIN.com",
"telephone": "YOUR_PHONE_NUMBER",
"areaServed": [
{
"@type": "City",
"name": "YOUR_CAMPUS_CITY_1"
},
{
"@type": "City",
"name": "YOUR_CAMPUS_CITY_2"
},
{
"@type": "AdministrativeArea",
"name": "YOUR_SCHOOL_DISTRICT_OR_COUNTY"
},
{
"@type": "State",
"name": "YOUR_STATE"
},
{
"@type": "Country",
"name": "YOUR_ONLINE_PROGRAM_COUNTRY"
}
]
},
{
"@type": "WebPage",
"@id": "https://YOUR_DOMAIN.com/service-areas/",
"name": "YOUR_SERVICE_AREAS_PAGE_TITLE",
"description": "YOUR_SERVICE_AREAS_PAGE_DESCRIPTION",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/service-areas/#breadcrumb"
}
},
{
"@type": "BreadcrumbList",
"@id": "https://YOUR_DOMAIN.com/service-areas/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://YOUR_DOMAIN.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Service Areas",
"item": "https://YOUR_DOMAIN.com/service-areas/"
}
]
},
{
"@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"
}
}
]
}
]
}
Add State or Country entries to the areaServed array for every region where online students can enroll. If your online programs are available nationwide, include a single Country entry for "United States." If availability varies by state due to licensing or accreditation requirements, list each eligible state individually so AI can give precise answers about enrollment eligibility.
Yes. Use AdministrativeArea for your school district and City entries for each municipality within the zone. Families frequently ask AI "which school serves my neighborhood" or "am I in the district for this school." The more precisely you define your boundaries, the more accurately AI can answer these questions.
List each satellite campus and extension center as a separate City entry in the areaServed array. You can also add location nodes on the EducationalOrganization with full PostalAddress for each physical location. This tells AI not only which cities you serve but exactly where your campuses are located within those cities.