Schedule a demo
Clinical

Lab panel

This scenario orders a standard fasting lipid panel for cardiovascular risk monitoring. The patient receives plain-language fasting instructions through nutrition-order content, arrives prepared, and completes phlebotomy without incident. Specimen metadata matches the collection protocol so laboratories and interfaces can validate handling steps.

23resources / instance
10FHIR types
10instances
lab_panel.py
from zato_fhir.test.r4.v1 import Scenarios, TestData

for panel in Scenarios.lab_panel:
    for name in panel.patient.name:
        print(name.text)

    for name in panel.practitioner.name:
        print(name.text)

    print(panel.organization.name)

    for enc in panel.encounters:
        print(enc.status)

    for obs in panel.observations:
        for coding in obs.code.coding:
            print(coding.display)

    print(panel.observation_definition.code)
    print(panel.media.status)
    print(panel.specimen.status)
    print(panel.specimen_definition.identifier)
    print(panel.nutrition_order.status)

for obs in TestData.Observation:
    for coding in obs.code.coding:
        print(coding.display)

About this scenario

This scenario orders a standard fasting lipid panel for cardiovascular risk monitoring. The patient receives plain-language fasting instructions through nutrition-order content, arrives prepared, and completes phlebotomy without incident. Specimen metadata matches the collection protocol so laboratories and interfaces can validate handling steps.

Result observations trend in a favorable direction across the synthetic timeline, reinforcing preventive care messaging. Observation definitions anchor codes and scales, while optional media captures support educational or quality workflows without implying abnormal findings.

FHIR resources in this scenario

23 resources per instance, 230 total across 10 instances.

FHIR resource typeRole in this scenario
PatientPerson undergoing lipid monitoring
PractitionerOrdering clinician
OrganizationLab or health system
EncounterVisit tied to the draw
ObservationIndividual analyte results and interpretations
ObservationDefinitionCanonical definition for each measured analyte
MediaSupplemental visual or document capture
SpecimenBlood specimen for the panel
SpecimenDefinitionExpected collection and handling protocol
NutritionOrderFasting and dietary preparation guidance
FHIR resources per instance23
Total resources (10 instances)230
Distinct resource types10
Scenario identifier`Scenarios.lab_panel`

At a glance

23
FHIR resources per instance
230
Total resources (10 instances)
10
Distinct resource types
Scenarios.lab_panel
Scenario identifier

Ready to build integrations?

Get started with Zato and connect your systems in minutes.

Open source In Python