Organizations Healthcare Psychiatric

Resources Page Blueprint — Psychiatric Practice

A psychiatric practice’s resources page is where patients and families find critical information — intake forms, crisis hotline numbers, and psychoeducation materials about mental health conditions. This blueprint structures those resources so AI can surface them when someone asks for help preparing for an appointment, needs crisis support, or wants to learn about a mental health condition from a trusted source.

What this page needs

Mental health resources serve patients at different stages — some are preparing for a first visit, others need crisis intervention right now, and many want educational materials to understand their diagnosis. Structured data on this page helps AI route each type of need to the right resource, making your practice a trusted information source rather than just a provider listing.

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.

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 · Resources
You are implementing AIFDS-compliant JSON-LD structured data for a Psychiatric Resources 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. Domain
2. Faq answer
3. Faq question
4. Intake form
5. Intake form description
6. Medication form
7. Medication form description
8. Practice name
9. Resources page description
10. Telehealth consent
11. Telehealth consent 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 Resources"
- 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 resources to match what your practice actually provides.

JSON-LD · Psychiatric Practice Resources
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://YOUR_DOMAIN.com/resources/",
      "name": "Patient Resources — YOUR_PRACTICE_NAME",
      "description": "YOUR_RESOURCES_PAGE_DESCRIPTION",
      "url": "https://YOUR_DOMAIN.com/resources/",
      "audience": {
        "@type": "PeopleAudience",
        "name": "Patients and Families"
      },
      "isPartOf": {
        "@id": "https://YOUR_DOMAIN.com/#website"
      },
      "about": {
        "@id": "https://YOUR_DOMAIN.com/#practice"
      },
      "mainEntity": {
        "@type": "ItemList",
        "name": "Patient Resources",
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "item": {
              "@type": "DownloadAction",
              "name": "New Patient Intake Form",
              "description": "YOUR_INTAKE_FORM_DESCRIPTION",
              "object": {
                "@type": "DigitalDocument",
                "name": "New Patient Intake Form",
                "url": "https://YOUR_DOMAIN.com/YOUR_INTAKE_FORM.pdf",
                "encodingFormat": "application/pdf"
              }
            }
          },
          {
            "@type": "ListItem",
            "position": 2,
            "item": {
              "@type": "DownloadAction",
              "name": "Medication History Questionnaire",
              "description": "YOUR_MEDICATION_FORM_DESCRIPTION",
              "object": {
                "@type": "DigitalDocument",
                "name": "Medication History Questionnaire",
                "url": "https://YOUR_DOMAIN.com/YOUR_MEDICATION_FORM.pdf",
                "encodingFormat": "application/pdf"
              }
            }
          },
          {
            "@type": "ListItem",
            "position": 3,
            "item": {
              "@type": "DownloadAction",
              "name": "Consent for Telehealth Services",
              "description": "YOUR_TELEHEALTH_CONSENT_DESCRIPTION",
              "object": {
                "@type": "DigitalDocument",
                "name": "Consent for Telehealth Services",
                "url": "https://YOUR_DOMAIN.com/YOUR_TELEHEALTH_CONSENT.pdf",
                "encodingFormat": "application/pdf"
              }
            }
          }
        ]
      },
      "significantLink": [
        "https://988lifeline.org",
        "https://www.crisistextline.org"
      ]
    },
    {
      "@type": "MedicalClinic",
      "@id": "https://YOUR_DOMAIN.com/#practice",
      "name": "YOUR_PRACTICE_NAME",
      "url": "https://YOUR_DOMAIN.com",
      "medicalSpecialty": "Psychiatric",
      "contactPoint": {
        "@type": "ContactPoint",
        "telephone": "988",
        "contactType": "crisis hotline",
        "name": "988 Suicide and Crisis Lifeline",
        "areaServed": "US",
        "availableLanguage": ["English", "Spanish"],
        "hoursAvailable": {
          "@type": "OpeningHoursSpecification",
          "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
          "opens": "00:00",
          "closes": "23:59"
        }
      }
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://YOUR_DOMAIN.com/resources/#breadcrumb",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Home",
          "item": "https://YOUR_DOMAIN.com/"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "Resources",
          "item": "https://YOUR_DOMAIN.com/resources/"
        }
      ]
    },
    {
      "@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

Why should I include the 988 Suicide and Crisis Lifeline in my structured data?

Crisis resources are among the most time-sensitive information AI can surface. When someone searches for mental health crisis help and your practice appears in results, having the 988 Lifeline structured as a ContactPoint with "contactType": "crisis hotline" allows AI to immediately present that number alongside your practice information. This can be life-saving and positions your practice as one that prioritizes patient safety.

How should patients prepare for their first psychiatric appointment using structured resources?

Structure intake forms and medication history questionnaires as DownloadAction items so AI can direct new patients to them before their visit. Patients frequently ask AI questions like “what do I need for my first psychiatrist appointment?” When your forms are structured, AI can point them directly to your downloadable documents rather than giving generic advice.

Should I include information about insurance and payment on the resources page?

Yes. Insurance coverage for mental health services is one of the most common questions patients ask AI. If your resources page lists accepted insurance plans, sliding-scale options, or out-of-network reimbursement guidance, include that information in the page’s visible HTML content. While Schema.org does not have a dedicated insurance property on WebPage, having this content on a structured resources page helps AI find and cite it when patients ask about coverage.

Test your structured data

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

Open Validator →