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..1 codeBinding
verificationStatus S Σ ?! 1..1 codeBinding
type Σ 0..1 codeBinding
category S Σ 0..* codeBinding
criticality Σ 0..1 codeBinding
coding Σ 0..* Coding
text Σ 1..1 string
patient S Σ 1..1 Reference(Patient)
onsetDateTime dateTime
onsetPeriod Period
assertedDate 0..1 dateTime
recorder 0..1 Reference(Practitioner | Patient)
asserter Σ 0..1 Reference(Patient | RelatedPerson | Practitioner)
lastOccurrence 0..1 dateTime
note 0..* Annotation
substance 0..1 CodeableConcept
manifestation 1..* CodeableConcept
description 0..1 string
onset 0..1 dateTime
severity 0..1 codeBinding
exposureRoute 0..1 CodeableConcept
note 0..* 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>