FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packageimplementation.guide.nhdr
Resource TypeAllergyIntolerance
IdAllergyIntolerance-.json
FHIR VersionR4

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

No narrative content found in resource


Source1

{
  "resourceType": "AllergyIntolerance",
  "meta": {
    "lastUpdated": "2024-07-18T08:23:58.665+00:00"
  },
  "extension": [
    {
      "url": "https://example.org/fhir/StructureDefinition/Organization",
      "valueReference": {
        "reference": "Organization/example"
      }
    }
  ],
  "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"
  ],
  "code": {
    "coding": [
      {
        "system": "http://snomed.info/sct",
        "code": "7980",
        "display": "Penicillin"
      }
    ],
    "text": "Penicillin"
  },
  "patient": {
    "reference": "Patient/example"
  },
  "onsetDateTime": "2024-07-01T10:00:00+08:00",
  "reaction": [
    {
      "substance": {
        "coding": [
          {
            "system": "http://snomed.info/sct",
            "code": "7980",
            "display": "Penicillin"
          }
        ],
        "text": "Penicillin"
      },
      "manifestation": [
        {
          "coding": [
            {
              "system": "http://snomed.info/sct",
              "code": "271807003",
              "display": "Rash"
            }
          ],
          "text": "Rash"
        }
      ],
      "description": "Patient developed a rash after taking penicillin.",
      "onset": "2024-07-01T11:00:00+08:00",
      "severity": "moderate"
    }
  ]
}