Search

ZD AllergyIntolerance

Resources conforming to this profile are requested by ZorgDomein when populating the referral letter or request form with data from the source information system.

Queries on the https://[FHIRServerUrl]/AllergyIntolerance endpoint may include the following query parameters:

  • patient=[PatientID]: [PatientID] refers to the patient ID as provided in the Task resource that is requested by ZorgDomein during SSO.
  • category=[food|medication|environment|biologic]: indicates that the result must only contain AlleryIntolerance resources that have the indicated value(s) for AllergyIntolerance.category.

The canonical URL for this profile is:

http://zorgdomein.nl/fhir/StructureDefinition/zd-allergyintolerance

This profile builds on AllergyIntolerance.


identifierΣ0..*Identifier
clinicalStatusΣ ?!0..1codeBinding
verificationStatusS Σ ?!1..1codeBinding
typeΣ0..1codeBinding
categoryS Σ0..*codeBinding
criticalityΣ0..1codeBinding
codingΣ0..*Coding
textΣ1..1string
patientS Σ1..1Reference(Patient)
onsetDateTimedateTime
onsetPeriodPeriod
assertedDate0..1dateTime
recorder0..1Reference(Practitioner | Patient)
asserterΣ0..1Reference(Patient | RelatedPerson | Practitioner)
lastOccurrence0..1dateTime
note0..*Annotation
substance0..1CodeableConcept
manifestation1..*CodeableConcept
description0..1string
onset0..1dateTime
severity0..1codeBinding
exposureRoute0..1CodeableConcept
note0..*Annotation

See the profile on simplifier.net for additional details.

Example resource

Below you find an example of an AllergyIntolerance resource that conforms to the ZD AllergyIntolerance profile.

    {
      "resourceType" : "AllergyIntolerance",
      "id" : "zd-allergyintolerance-1",
      "meta" : {
        "profile" : [
          "http://zorgdomein.nl/fhir/StructureDefinition/zd-allergyintolerance"
        ]
      },
      "clinicalStatus" : "active",
      "verificationStatus" : "confirmed",
      "category" : [
        "food"
      ],
      "criticality" : "high",
      "code" : {
        "coding" : [
          {
            "system" : "http://snomed.info/sct",
            "code" : "227493005",
            "display" : "Cashew nuts"
          }
        ], 
    	"text" : "Cashew nuts"
      },
      "patient" : {
        "reference" : "Patient/zd-patient-1"
      },
      "onsetDateTime" : "2014-10-09T00:00:00+01:00"
    }
    
    <AllergyIntolerance xmlns='http://hl7.org/fhir'>
      <id value='zd-allergyintolerance-1'/>
      <meta>
        <profile value='http://zorgdomein.nl/fhir/StructureDefinition/zd-allergyintolerance'/>
      </meta>
      <clinicalStatus value='active'/>
      <verificationStatus value='confirmed'/>
      <category value='food'/>
      <criticality value='high'/>
      <code>
        <coding>
          <system value='http://snomed.info/sct'/>
          <code value='227493005'/>
          <display value='Cashew nuts'/>
        </coding>
        <text value='Cashew nuts'/>
      </code>
      <patient>
        <reference value='Patient/zd-patient-1'/>
      </patient>
      <onsetDateTime value='2014-10-09T00:00:00+01:00'/>
    </AllergyIntolerance>