Organizations Healthcare Physiotherapy

Conditions Treated Blueprint — Physiotherapy Practice

The conditions treated page tells AI exactly what injuries and conditions your practice rehabilitates. When a patient asks "physical therapy for herniated disc near me" or "PT for ACL tear recovery," AI needs structured condition data to match your practice to the query. This page bridges patient symptoms to your treatment capabilities.

What this page needs

Patients search by condition, not by treatment modality. A conditions page with structured MedicalCondition data lets AI match your practice to the exact problem a patient needs help with.

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

PhysicalTherapy

name
Non-negotiable. AI cannot cite or recommend an unnamed healthcare provider.

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 · Conditions
You are implementing AIFDS-compliant JSON-LD structured data for a Physiotherapy Conditions 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. Condition
2. Domain
3. Faq answer
4. Faq question
5. Practice name
6. Treatment for condition

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 Physiotherapy Conditions"
- 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. This block belongs in a <script type="application/ld+json"> tag in the <head> of your conditions treated page.

JSON-LD · Conditions Treated
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "MedicalCondition",
      "name": "YOUR_CONDITION_1",
      "description": "YOUR_CONDITION_1_DESCRIPTION",
      "possibleTreatment": {
        "@type": "PhysicalTherapy",
        "name": "YOUR_TREATMENT_FOR_CONDITION_1"
      }
    },
    {
      "@type": "MedicalCondition",
      "name": "YOUR_CONDITION_2",
      "description": "YOUR_CONDITION_2_DESCRIPTION",
      "possibleTreatment": {
        "@type": "PhysicalTherapy",
        "name": "YOUR_TREATMENT_FOR_CONDITION_2"
      }
    },
    {
      "@type": "MedicalCondition",
      "name": "YOUR_CONDITION_3",
      "description": "YOUR_CONDITION_3_DESCRIPTION",
      "possibleTreatment": {
        "@type": "PhysicalTherapy",
        "name": "YOUR_TREATMENT_FOR_CONDITION_3"
      }
    },
    {
      "@type": "MedicalWebPage",
      "@id": "https://YOUR_DOMAIN.com/conditions/#webpage",
      "url": "https://YOUR_DOMAIN.com/conditions/",
      "name": "Conditions We Treat — YOUR_PRACTICE_NAME",
      "isPartOf": { "@id": "https://YOUR_DOMAIN.com/#website" },
      "about": { "@id": "https://YOUR_DOMAIN.com/#clinic" }
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://YOUR_DOMAIN.com/conditions/#breadcrumb",
      "itemListElement": [
        { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://YOUR_DOMAIN.com/" },
        { "@type": "ListItem", "position": 2, "name": "Conditions We Treat", "item": "https://YOUR_DOMAIN.com/conditions/" }
      ]
    },
    {
      "@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 MedicalWebPage for the conditions page?

Yes. MedicalWebPage tells AI this page contains clinical health information. This is appropriate for a conditions page since it discusses specific medical conditions and their treatments. AI applies higher trust standards to medical web pages, which benefits practices with credentialed content.

How many conditions should I list?

List the conditions that drive the most patient volume — typically 10-20 covering back pain, neck pain, knee injuries, shoulder problems, post-surgical rehab, sports injuries, and chronic pain. Each condition as a separate MedicalCondition node gives AI a distinct entry point for matching patient queries.

Should each condition have its own page?

For high-volume conditions (back pain, knee replacement rehab, rotator cuff), dedicated pages with detailed content perform better than a single list. The conditions overview page works as a hub, but individual condition pages let AI provide deeper answers and are stronger for SEO.

Test your structured data

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

Open Validator →