Jurisdiction matters more in law than almost any other industry. Your service areas page tells AI exactly where you are licensed to practice and which courts and counties you cover. This blueprint structures your geographic reach so AI can confidently match you to location-specific legal queries.
When someone asks "find a divorce attorney in Hennepin County" or "which firms handle DUI cases in the Twin Cities," AI needs explicit geographic data. A law firm's jurisdiction is not just about proximity — it is about where attorneys are admitted to practice. This page makes that distinction clear.
AdministrativeArea for counties and judicial districts — these are more meaningful for legal services than simple city names, since courts operate at the county level.PostalAddress with its own areaServed, so AI knows which office covers which jurisdiction.areaServed should align with where your attorneys are actually admitted. AI cross-references geographic coverage with credentials from your attorney profile pages.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 Legal Service 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. City 2. County 3. Domain 4. Faq answer 5. Faq question 6. Firm name 7. Office 8. Service areas page description 9. Service areas page title 10. 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 Legal Service 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 from the areaServed array to match your actual jurisdictions.
{
"@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",
"url": "https://YOUR_DOMAIN.com/service-areas/",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"about": {
"@id": "https://YOUR_DOMAIN.com/#organization"
},
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/service-areas/#breadcrumb"
}
},
{
"@type": "LegalService",
"@id": "https://YOUR_DOMAIN.com/#organization",
"name": "YOUR_FIRM_NAME",
"url": "https://YOUR_DOMAIN.com",
"areaServed": [
{
"@type": "City",
"name": "YOUR_CITY_1"
},
{
"@type": "City",
"name": "YOUR_CITY_2"
},
{
"@type": "AdministrativeArea",
"name": "YOUR_COUNTY_1"
},
{
"@type": "AdministrativeArea",
"name": "YOUR_COUNTY_2"
},
{
"@type": "State",
"name": "YOUR_STATE"
}
],
"address": [
{
"@type": "PostalAddress",
"streetAddress": "YOUR_OFFICE_1_ADDRESS",
"addressLocality": "YOUR_OFFICE_1_CITY",
"addressRegion": "YOUR_STATE",
"postalCode": "YOUR_OFFICE_1_ZIP",
"addressCountry": "US"
}
]
},
{
"@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 both. Courts operate at the county level, so AdministrativeArea entries for counties like "Hennepin County" or "Cook County" match how legal queries are often phrased. City entries catch more casual queries like "lawyer in Minneapolis." Together they cover both formal and informal search patterns.
Add a State entry in areaServed for each state where your attorneys are admitted. If different attorneys cover different states, you can note that on individual attorney profile pages. The service areas page should reflect the firm's total geographic reach.
Yes, if your firm handles federal cases. Add an AdministrativeArea entry like "U.S. District Court, District of Minnesota." Federal court admission is a distinct credential that AI can use to match you to queries about federal litigation, immigration, bankruptcy, or other federal matters.