Your service areas page tells AI exactly where your agency places talent. This blueprint structures your geographic coverage into machine-readable location data so AI systems can match your agency to location-specific staffing queries instead of guessing from your office address alone.
When someone asks AI "find a staffing agency in Dallas" or "who places workers across the Midwest," your service areas page is the answer. Without structured geographic data, AI can only infer your coverage from your office address, which often underrepresents agencies that serve multiple cities, states, or regions.
areaServed array on your EmploymentAgency node lists every city and state where you place talent, giving AI an explicit geographic footprint instead of a single office location.areaServed should use the appropriate schema type — City for individual cities, State for statewide coverage — so AI can match queries at the right geographic level.address as a PostalAddress anchors your agency to a physical location, which AI uses to determine proximity and regional relevance.WebPage node with an about reference back to your agency tells AI that this page is specifically about your geographic coverage, not just a general page that mentions locations.If your service areas page only lists cities in paragraph form, AI may miss locations or fail to associate them with your agency as actual coverage areas.
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
nameurladdressareaServedCopy 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 Employment Agency 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. Agency name 2. City 3. Domain 4. Faq answer 5. Faq question 6. Service areas page description 7. Service areas page title 8. State 9. State abbreviation 10. Street address 11. Zip code 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 Employment Agency 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 inside areaServed to match the cities and states where your agency actually places talent.
{
"@context": "https://schema.org",
"@graph": [
{
"@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"
},
"about": {
"@id": "https://YOUR_DOMAIN.com/#organization"
},
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/service-areas/#breadcrumb"
}
},
{
"@type": "EmploymentAgency",
"@id": "https://YOUR_DOMAIN.com/#organization",
"name": "YOUR_AGENCY_NAME",
"url": "https://YOUR_DOMAIN.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "YOUR_STREET_ADDRESS",
"addressLocality": "YOUR_CITY",
"addressRegion": "YOUR_STATE_ABBREVIATION",
"postalCode": "YOUR_ZIP_CODE",
"addressCountry": "US"
},
"areaServed": [
{
"@type": "City",
"name": "YOUR_CITY_1"
},
{
"@type": "City",
"name": "YOUR_CITY_2"
},
{
"@type": "City",
"name": "YOUR_CITY_3"
},
{
"@type": "State",
"name": "YOUR_STATE_1"
},
{
"@type": "State",
"name": "YOUR_STATE_2"
}
]
},
{
"@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"
}
}
]
}
]
}
List the cities where you actively place talent and add the state for broader coverage. If you staff across an entire state, a State entry covers it. If you only serve specific metro areas, list those as City entries. AI uses this to match your agency to queries at whatever geographic level the user specifies.
No. Your office address (as a PostalAddress) tells AI where your agency is physically located. The areaServed array tells AI where you place talent, which is often much broader. An agency headquartered in Minneapolis might serve the entire Midwest. Both fields work together to give AI a complete geographic picture.
You can add a Country entry to areaServed with "name": "United States" for national coverage. However, also listing your strongest metro areas as individual City entries helps AI recommend you for local queries. National coverage plus city-level specificity gives AI the most useful data to work with.