Organizations Healthcare Psychiatric

Services Page Blueprint — Psychiatric Practice

Your services page is where you detail the psychiatric treatments your practice offers — from medication management and therapy modalities to comprehensive evaluations and substance abuse treatment. This blueprint structures those services into a machine-readable catalog so AI systems can match your practice to specific patient needs, like “psychiatrist that offers CBT and medication management near me.”

What this page needs

Psychiatric care spans a wide range of treatments — talk therapy, medication, diagnostic evaluations, and specialized programs for substance use. When a patient asks AI for help finding a specific type of mental health service, the services page is what answers. Without structured data, AI cannot distinguish between a practice that prescribes medication and one that only offers therapy.

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.
medicalSpecialty
AI uses specialty to match the practice to condition-specific queries. Without it AI cannot recommend for specialty searches.
availableService
AI uses available services to match the practice to specific procedure and treatment queries.

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 · Services
You are implementing AIFDS-compliant JSON-LD structured data for a Psychiatric Services 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. Cbt description
2. Dbt description
3. Domain
4. Evaluation description
5. Faq answer
6. Faq question
7. Medication management description
8. Practice name
9. Services page description
10. Services page title
11. Substance abuse description

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 Services"
- 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. Add or remove services from the availableService array to match your actual offerings.

JSON-LD · Psychiatric Practice Services
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "MedicalClinic",
      "@id": "https://YOUR_DOMAIN.com/#practice",
      "name": "YOUR_PRACTICE_NAME",
      "url": "https://YOUR_DOMAIN.com",
      "medicalSpecialty": "Psychiatric",
      "availableService": [
        {
          "@type": "MedicalTherapy",
          "name": "Medication Management",
          "description": "YOUR_MEDICATION_MANAGEMENT_DESCRIPTION",
          "medicineSystem": "WesternConventional"
        },
        {
          "@type": "MedicalTherapy",
          "name": "Cognitive Behavioral Therapy (CBT)",
          "description": "YOUR_CBT_DESCRIPTION",
          "relevantSpecialty": "Psychiatric"
        },
        {
          "@type": "MedicalTherapy",
          "name": "Dialectical Behavior Therapy (DBT)",
          "description": "YOUR_DBT_DESCRIPTION",
          "relevantSpecialty": "Psychiatric"
        },
        {
          "@type": "MedicalProcedure",
          "name": "Comprehensive Psychiatric Evaluation",
          "description": "YOUR_EVALUATION_DESCRIPTION",
          "procedureType": "Diagnostic"
        },
        {
          "@type": "MedicalTherapy",
          "name": "Substance Abuse Treatment",
          "description": "YOUR_SUBSTANCE_ABUSE_DESCRIPTION",
          "relevantSpecialty": "Psychiatric"
        }
      ]
    },
    {
      "@type": "WebPage",
      "@id": "https://YOUR_DOMAIN.com/services/",
      "name": "YOUR_SERVICES_PAGE_TITLE",
      "description": "YOUR_SERVICES_PAGE_DESCRIPTION",
      "isPartOf": {
        "@id": "https://YOUR_DOMAIN.com/#website"
      },
      "breadcrumb": {
        "@id": "https://YOUR_DOMAIN.com/services/#breadcrumb"
      }
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://YOUR_DOMAIN.com/services/#breadcrumb",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Home",
          "item": "https://YOUR_DOMAIN.com/"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "Services",
          "item": "https://YOUR_DOMAIN.com/services/"
        }
      ]
    },
    {
      "@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 use MedicalTherapy or MedicalProcedure for therapy modalities like CBT and DBT?

Use MedicalTherapy for ongoing treatment modalities like CBT, DBT, psychodynamic therapy, and medication management. Use MedicalProcedure for discrete clinical actions like comprehensive psychiatric evaluations, psychological testing, or diagnostic assessments. The distinction helps AI understand whether the service is a treatment approach or a one-time clinical procedure.

Why should medication management be listed as a separate service?

Medication management is the most common reason patients specifically seek a psychiatrist rather than a therapist or psychologist. Listing it as a distinct MedicalTherapy with its own name and description ensures AI can match your practice to queries like “psychiatrist for medication management” — which is one of the highest-volume search intents in mental health.

How should I handle substance abuse treatment in the services list?

If your practice offers substance abuse treatment, medication-assisted treatment (MAT), or dual-diagnosis care, include it as a MedicalTherapy with a clear description. Many patients search for providers who treat both mental health conditions and substance use disorders together. Declaring this service explicitly helps AI surface your practice for those combined queries.

Test your structured data

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

Open Validator →