Basisprofil Allergie, Unverträglichkeit

Canonical URL: http://fhir.de/StructureDefinition/allergyintolerance-de-basis/0.2

identifierΣ0..*Identifier
clinicalStatusΣ ?!0..1codeBinding
verificationStatusΣ ?!1..1codeBinding
typeΣ0..1codeBinding
categoryΣ0..*codeBinding
criticalityΣ0..1codeBinding
codeΣ0..1CodeableConcept
patientΣ1..1Reference(Patient | Patient, deutsches Basisprofil (Version 0.2))
onsetDateTimedateTime
onsetAgeAge
onsetPeriodPeriod
onsetRangeRange
onsetStringstring
assertedDate0..1dateTime
recorder0..1Reference(Practitioner | Patient)
asserterΣ0..1Reference(Patient | RelatedPerson | Practitioner)
lastOccurrence0..1dateTime
note0..*Annotation
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1code
displayΣ0..1string
userSelectedΣ0..1boolean
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1code
displayΣ0..1string
userSelectedΣ0..1boolean
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
manifestation1..*CodeableConcept
description0..1string
onset0..1dateTime
severity0..1codeBinding
exposureRoute0..1CodeableConcept
note0..*Annotation

Beispiele

XML-Format

<AllergyIntolerance xmlns="http://hl7.org/fhir">
    <meta>
        <profile value="http://fhir.de/StructureDefinition/allergyintolerance-de-basis/0.2" />
    </meta>
    <clinicalStatus value="active" />
    <verificationStatus value="confirmed" />
    <type value="intolerance" />
    <patient>
        <reference value="Patient/12345" />
    </patient>
    <assertedDate value="2012-02-03" />
    <asserter>
        <reference value="Practitioner/9876" />
    </asserter>
    <reaction>
        <substance>
            <coding>
                <system value="http://fhir.de/CodeSystem/ifa/pzn" />
                <code value="87776663" />
            </coding>
        </substance>
    </reaction>
</AllergyIntolerance>

JSON-Format

{
    "resourceType":"AllergyIntolerance",
    "meta":{
        "profile": [
            "http://fhir.de/StructureDefinition/allergyintolerance-de-basis/0.2"
        ]
    },
    "clinicalStatus":"active",
    "verificationStatus":"confirmed",
    "type":"intolerance",
    "patient":{
        "reference":"Patient/12345"
    },
    "assertedDate":"2012-02-03",
    "asserter":{
        "reference":"Practitioner/9876"
    },
    "reaction": [
        {
            "substance":{
                "coding": [
                    {
                        "system":"http://fhir.de/CodeSystem/ifa/pzn",
                        "code":"87776663"
                    }
                ]
            }
        }
    ]
}