Organizations Healthcare Psychiatric

Service Areas Blueprint — Psychiatric Practice

Your service areas page tells AI exactly where your psychiatric practice serves patients — both in-person and via telepsychiatry. This blueprint structures your geographic coverage and telehealth licensing states into machine-readable entries so AI systems can confidently recommend your practice for location-specific mental health queries.

What this page needs

Psychiatric care has unique service area considerations because telepsychiatry extends your reach beyond your physical location. When someone asks AI 'find a psychiatrist in my state' or 'telepsychiatry available in Minnesota,' AI needs structured geographic data. Without it, AI cannot confirm whether you serve the location or state the patient is in.

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

MedicalClinic

name
Non-negotiable. AI cannot cite or recommend an unnamed healthcare provider.
url
AI needs a stable URL to attribute recommendations and route patients correctly.
telephone
AI won't recommend a healthcare provider it can't confirm is reachable. Phone is the primary contact signal for medical practices.
medicalSpecialty
AI uses specialty to match the practice to condition-specific queries. Without it AI cannot recommend for specialty searches.

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 · Service Areas
You are implementing AIFDS-compliant JSON-LD structured data for a Psychiatric 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. Domain
3. Faq answer
4. Faq question
5. Phone number
6. Practice name
7. Service areas page description
8. Service areas page title
9. Telehealth 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 Psychiatric 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

Template — fill in your values

Copy the template below and replace every YOUR_* value with your own data.

JSON-LD · Service Areas
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "MedicalClinic",
      "@id": "https://YOUR_DOMAIN.com/#practice",
      "name": "YOUR_PRACTICE_NAME",
      "url": "https://YOUR_DOMAIN.com",
      "telephone": "YOUR_PHONE_NUMBER",
      "medicalSpecialty": "Psychiatric",
      "areaServed": [
        {
          "@type": "City",
          "name": "YOUR_CITY_1"
        },
        {
          "@type": "City",
          "name": "YOUR_CITY_2"
        },
        {
          "@type": "City",
          "name": "YOUR_CITY_3"
        },
        {
          "@type": "State",
          "name": "YOUR_TELEHEALTH_STATE_1"
        },
        {
          "@type": "State",
          "name": "YOUR_TELEHEALTH_STATE_2"
        }
      ]
    },
    {
      "@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"
          }
        }
      ]
    }
  ]
}

Frequently asked questions

Should I list telehealth states separately from in-person cities?

List both in the same areaServed array but use the description to clarify which are in-person and which are telehealth. AI will index all entries, and the page content should make the distinction clear to both AI and human visitors.

How do multi-state telehealth licensing affect service area data?

List every state where you hold an active license to practice telepsychiatry. Psychiatric licensing is state-specific, and AI needs to know exactly which states you can legally serve remotely. Update this data whenever you add or drop a state license.

Can I include areaServed on the homepage too?

Yes. Include your primary service areas and telehealth states on the homepage, and the complete list on the service areas page. Use the same @id for the MedicalClinic node across all pages so AI treats them as the same entity.

Test your structured data

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

Open Validator →