This scenario follows a patient through three wellness visits spaced across a single year. At each visit, clinicians capture vital signs, order appropriate screening tests, and record results that stay within healthy ranges or show modest improvement over time. The narrative supports preventive care workflows and longitudinal dashboards without introducing critical alerts or adverse events.
from zato_fhir.test.r4.v1 import Scenarios, TestData
for visit in Scenarios.wellness_visit:
for name in visit.patient.name:
print(name.text)
for name in visit.practitioner.name:
print(name.text)
print(visit.organization.name)
for code in visit.practitioner_role.code:
for coding in code.coding:
print(coding.display)
print(visit.location.status)
for enc in visit.encounters:
print(enc.status)
for obs in visit.observations:
for coding in obs.code.coding:
print(coding.display)
print(visit.diagnostic_report.status)
for coding in visit.specimen.type_.coding:
print(coding.code)
print(visit.procedure.status)
print(visit.service_request.intent)
print(visit.episode_of_care.status)
print(visit.composition.status)
print(visit.document_ref.status)
print(visit.list_resource.status)
print(visit.provenance.recorded)
for practitioner in TestData.Practitioner:
for name in practitioner.name:
print(name.text)This scenario follows a patient through three wellness visits spaced across a single year. At each visit, clinicians capture vital signs, order appropriate screening tests, and record results that stay within healthy ranges or show modest improvement over time. The narrative supports preventive care workflows and longitudinal dashboards without introducing critical alerts or adverse events.
Encounters link to observations, diagnostic reports, specimens, and procedures in a coherent chain. Episode of care context, compositions, document references, and provenance tie the record together so downstream systems can render a complete annual wellness story. Lists help organize problem and result summaries for display or rules engines.
53 resources per instance, 530 total across 10 instances.
| FHIR resource type | Role in this scenario |
|---|---|
Patient | Person receiving preventive care across the year |
Practitioner | Clinician performing the wellness assessment |
PractitionerRole | Role and specialty context for the clinician |
Organization | Care delivery organization |
Location | Site of each wellness encounter |
Encounter | Each visit instance in the wellness series |
Observation | Vital signs and other measured findings |
DiagnosticReport | Structured report grouping laboratory or screening results |
Specimen | Sample collection tied to ordered tests |
Procedure | Documented screening or in-office procedures |
ServiceRequest | Orders supporting the wellness workup |
EpisodeOfCare | Container linking visits into one wellness episode |
Composition | Human-readable clinical document structure |
DocumentReference | Pointers to narrative or binary clinical documents |
List | Curated collections such as result or problem summaries |
Provenance | Record of who created or signed key resources |
FHIR resources per instance | 53 |
Total resources (10 instances) | 530 |
Distinct resource types | 16 |
Scenario identifier | `Scenarios.wellness_visit` |
Get started with Zato and connect your systems in minutes.