AllergyIntolerance Resource #
This resource will be available only for registered Smart Health users.
Standards/Exceptions/Profiles in use #
Attributes #
Attribute | Comment | Reference |
---|---|---|
clinicalStatus | The clinical status of the allergy or intolerance (active, inactive, resolved) | AllergyIntolerance.clinicalStatus and ValueSet |
verificationStatus | Assertion about certainty associated with the propensity, or potential risk, of a reaction to the identified substance (unconfirmed, confirmed, refuted, entered-in-error) | AllergyIntolerance.verificationStatus and ValueSet |
type | Identification of the underlying physiological mechanism for the reaction risk (allergy, intolerance) | AllergyIntolerance.type and ValueSet |
category | Category of the identified substance (food, medication, environment, biologic) | AllergyIntolerance.category and ValueSet |
criticality | Estimate of the potential clinical harm, or seriousness, of the reaction to the identified substance (low, high, unable-to-assess) | AllergyIntolerance.criticality and ValueSet |
code | display is used to present name of the allergy | AllergyIntolerance.code and CodeSet |
patient | reference to patient found in contained |
|
asserter | reference to Source of the information about the allergy found in contained . Typically this is the patient |
|
contained | Patient name information | DomainResource.contained |
onsetDateTime | When allergy or intolerance was identified | AllergyIntolerance.onset_x_ |
Example #
{
"resourceType": "Bundle",
"id": "bundle-references",
"type": "collection",
"entry": [
{
"fullUrl": "resource:1",
"resource": {
"resourceType": "AllergyIntolerance",
"id": "7d212786-378f-492a-afe1-429d1e8eac04",
"contained": [
{
"resourceType": "Patient",
"id": "f6173d13-6844-4128-8fcb-fecebadbbb00",
"name": [
{
"family": "Doe",
"given": [
"Jane"
]
}
]
}
],
"clinicalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
"code": "active",
"display": "Active"
}
]
},
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
"code": "confirmed",
"display": "Confirmed"
}
]
},
"type": "allergy",
"category": [
"medication"
],
"criticality": "high",
"code": {
"coding": [
{
"display": "Penicillin"
}
]
},
"patient": {
"reference": "#f6173d13-6844-4128-8fcb-fecebadbbb00"
},
"asserter": {
"reference": "#f6173d13-6844-4128-8fcb-fecebadbbb00"
},
"onsetDateTime": "2004"
}
}
]
}