Schedule a demo
Clinical

Wellness visit

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.

53resources / instance
16FHIR types
10instances
wellness_visit.py
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)

About this scenario

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.

FHIR resources in this scenario

53 resources per instance, 530 total across 10 instances.

FHIR resource typeRole in this scenario
PatientPerson receiving preventive care across the year
PractitionerClinician performing the wellness assessment
PractitionerRoleRole and specialty context for the clinician
OrganizationCare delivery organization
LocationSite of each wellness encounter
EncounterEach visit instance in the wellness series
ObservationVital signs and other measured findings
DiagnosticReportStructured report grouping laboratory or screening results
SpecimenSample collection tied to ordered tests
ProcedureDocumented screening or in-office procedures
ServiceRequestOrders supporting the wellness workup
EpisodeOfCareContainer linking visits into one wellness episode
CompositionHuman-readable clinical document structure
DocumentReferencePointers to narrative or binary clinical documents
ListCurated collections such as result or problem summaries
ProvenanceRecord of who created or signed key resources
FHIR resources per instance53
Total resources (10 instances)530
Distinct resource types16
Scenario identifier`Scenarios.wellness_visit`

At a glance

53
FHIR resources per instance
530
Total resources (10 instances)
16
Distinct resource types
Scenarios.wellness_visit
Scenario identifier

Ready to build integrations?

Get started with Zato and connect your systems in minutes.

Open source In Python