Schedule a demo
Clinical

Physical therapy

This scenario follows a patient recovering from a straightforward ankle sprain through three physical therapy sessions. Each visit builds on the last, with mobility and strength trending in a favorable direction and symptoms easing in a clinically plausible way. The story supports scheduling, billing, and care coordination views without complications or setbacks.

11resources / instance
9FHIR types
10instances
physical_therapy.py
from zato_fhir.test.r4.v1 import Scenarios, TestData

for episode in Scenarios.physical_therapy:
    patient = episode.patient
    for name in patient.name:
        print(name.text)

    practitioner = episode.practitioner
    for name in practitioner.name:
        print(name.text)

    organization = episode.organization
    print(organization.name)

    for encounter in episode.encounters:
        print(encounter.status)

    procedure = episode.procedure
    print(procedure.status)

    plan = episode.care_plan
    print(plan.status)

    goal = episode.goal
    print(goal.lifecycleStatus)

    questionnaire = episode.questionnaire
    print(questionnaire.status)

    response = episode.questionnaire_response
    print(response.status)

About this scenario

This scenario follows a patient recovering from a straightforward ankle sprain through three physical therapy sessions. Each visit builds on the last, with mobility and strength trending in a favorable direction and symptoms easing in a clinically plausible way. The story supports scheduling, billing, and care coordination views without complications or setbacks.

Structured data captures the therapeutic procedures performed, a care plan that organizes the rehabilitation pathway, and measurable goals that reflect steady progress. Standardized questionnaires and their responses document patient-reported improvement, giving quality and outcomes tooling realistic inputs tied to the same encounter thread.

FHIR resources in this scenario

11 resources per instance, 110 total across 10 instances.

FHIR resource typeRole in this scenario
PatientPerson in ankle sprain rehabilitation
PractitionerPhysical therapist or supervising clinician
OrganizationTherapy clinic or department
EncounterEach physical therapy visit in the series
ProcedureTherapeutic activities performed in session
CarePlanStructured rehabilitation plan across visits
GoalTargets reflecting progressive functional improvement
QuestionnaireStandardized progress or outcome instrument
QuestionnaireResponseCompleted responses showing favorable trends
FHIR resources per instance11
Total resources (10 instances)110
Distinct resource types9
Scenario identifier`Scenarios.physical_therapy`

At a glance

11
FHIR resources per instance
110
Total resources (10 instances)
9
Distinct resource types
Scenarios.physical_therapy
Scenario identifier

Ready to build integrations?

Get started with Zato and connect your systems in minutes.

Open source In Python