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.”
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.
availableService lists each psychiatric service as a structured MedicalTherapy or MedicalProcedure so AI can index your offerings individually and match them to specific patient queries.MedicalTherapy for treatment approaches like Cognitive Behavioral Therapy (CBT), Dialectical Behavior Therapy (DBT), and psychodynamic therapy. Naming the modality explicitly helps AI recommend you for specific therapy types.MedicalProcedure for diagnostic evaluations, which are often the first step in a patient’s care journey and a common search intent.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
nameurlmedicalSpecialtyavailableServiceCopy 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 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
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.
{
"@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"
}
}
]
}
]
}
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.
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.
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.