Schedule a demo
Clinical

Allergy record

This scenario captures a common, low-burden environmental allergy that responds well to usual measures. The patient reports predictable seasonal symptoms that remain mild, and the record emphasizes stability rather than anaphylaxis or hospitalization.

11resources / instance
9FHIR types
10instances
allergy_record.py
from zato_fhir.test.r4.v1 import Scenarios, TestData

for record in Scenarios.allergy_record:
    for name in record.patient.name:
        print(name.text)

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

    print(record.organization.name)

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

    print(record.allergy_intolerance.clinicalStatus)
    print(record.clinical_impression.status)
    print(record.risk_assessment.status)
    print(record.condition.clinicalStatus)
    print(record.consent.status)

for ai in TestData.AllergyIntolerance:
    print(ai.clinicalStatus)

About this scenario

This scenario captures a common, low-burden environmental allergy that responds well to usual measures. The patient reports predictable seasonal symptoms that remain mild, and the record emphasizes stability rather than anaphylaxis or hospitalization.

A clinical impression summarizes the benign course, while a risk assessment scores the situation as low concern for severe outcomes. A related condition entry keeps diagnoses coherent for decision support, and consent resources document willing sharing of this portion of the chart with trusted partners.

FHIR resources in this scenario

11 resources per instance, 110 total across 10 instances.

FHIR resource typeRole in this scenario
PatientPerson with seasonal allergic rhinitis
PractitionerDocumenting clinician
OrganizationCare site
EncounterVisit where allergy history is updated
AllergyIntolerancePollen allergy with mild manifestations
ClinicalImpressionSummary that symptoms are well controlled
RiskAssessmentLow risk of severe allergic events
ConditionDiagnostic alignment for workflows
ConsentPermission to share allergy information
FHIR resources per instance11
Total resources (10 instances)110
Distinct resource types9
Scenario identifier`Scenarios.allergy_record`

At a glance

11
FHIR resources per instance
110
Total resources (10 instances)
9
Distinct resource types
Scenarios.allergy_record
Scenario identifier

Ready to build integrations?

Get started with Zato and connect your systems in minutes.

Open source In Python