This scenario models a patient whose vital signs are captured consistently across three clinical visits. At each encounter, the care team records a full panel of ten vital observations, including growth-related measurements such as head circumference where appropriate. Values remain in expected healthy ranges and support workflows for pediatric and adult wellness documentation alike.
from zato_fhir.test.r4.v1 import Scenarios, TestData
for instance in Scenarios.vitals_profiles:
patient = instance.patient
for name in patient.name:
print(name.text)
practitioner = instance.practitioner
for name in practitioner.name:
print(name.text)
for enc in instance.encounters:
print(enc.status)
for obs in instance.observations:
for coding in obs.code.coding:
print(coding.display)This scenario models a patient whose vital signs are captured consistently across three clinical visits. At each encounter, the care team records a full panel of ten vital observations, including growth-related measurements such as head circumference where appropriate. Values remain in expected healthy ranges and support workflows for pediatric and adult wellness documentation alike.
Each visit is tied to an encounter and the responsible practitioner, with observations grouped logically for display in charts and quality reporting. The dataset is suitable for testing profile conformance, longitudinal trending, and interfaces that expect a complete vital-sign bundle per visit without any critical or abnormal flags.
35 resources per instance, 350 total across 10 instances.
| FHIR resource type | Role in this scenario |
|---|---|
Patient | Person whose vitals are measured across visits |
Practitioner | Clinician documenting the vital sign panel |
Encounter | Each visit where the full vital set is recorded |
Observation | Individual vital measurements, ten types per encounter including head circumference |
FHIR resources per instance | 35 |
Total resources (10 instances) | 350 |
Distinct resource types | 4 |
Scenario identifier | `Scenarios.vitals_profiles` |
Get started with Zato and connect your systems in minutes.