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.
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)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.
11 resources per instance, 110 total across 10 instances.
| FHIR resource type | Role in this scenario |
|---|---|
Patient | Person in ankle sprain rehabilitation |
Practitioner | Physical therapist or supervising clinician |
Organization | Therapy clinic or department |
Encounter | Each physical therapy visit in the series |
Procedure | Therapeutic activities performed in session |
CarePlan | Structured rehabilitation plan across visits |
Goal | Targets reflecting progressive functional improvement |
Questionnaire | Standardized progress or outcome instrument |
QuestionnaireResponse | Completed responses showing favorable trends |
FHIR resources per instance | 11 |
Total resources (10 instances) | 110 |
Distinct resource types | 9 |
Scenario identifier | `Scenarios.physical_therapy` |
Get started with Zato and connect your systems in minutes.