FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example List/current-allergies (Turtle)

FHIR Infrastructure Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Patient, Practitioner

Raw Turtle (+ also see Turtle/RDF Format Specification)

Example of current allergies list and List For extension

@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

[a fhir:List ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "current-allergies"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p>List prepared for Dr Adam Careful</p>\n      <p>Patient Peter Chalmers, DOB = Dec 25, 1974, MRN = 12345 (Acme Healthcare) has the following allergies</p>\n      <ul>\n        <li>cashew nut allergenic extract Injectable Product (<b>High</b>)</li>\n        <li>Allergenic extract, penicillin (high)</li>\n      </ul>\n    </div>"
  ] ; # 
  fhir:extension ( [
     fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/list-for"^^xsd:anyURI ] ;
     fhir:value [
       a fhir:Reference ;
       fhir:reference [ fhir:v "Patient/example" ] ;
       fhir:display [ fhir:v "Dr Adam Careful" ]
     ]
  ] ) ; # 
  fhir:status [ fhir:v "current"] ; # 
  fhir:mode [ fhir:v "working"] ; # 
  fhir:title [ fhir:v "Current Allergy List"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:52472-8 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "52472-8" ] ;
       fhir:display [ fhir:v "Allergies and Adverse Drug Reactions" ]
     ] ) ;
     fhir:text [ fhir:v "Current Allergy List" ]
  ] ; # 
  fhir:date [ fhir:v "2015-07-14T23:10:23+11:00"^^xsd:dateTime] ; # 
  fhir:source [
     fhir:reference [ fhir:v "Patient/example" ]
  ] ; # 
  fhir:orderedBy [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/list-order"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "entry-date" ]
     ] )
  ] ; # 
  fhir:entry ( [
     fhir:item [
       fhir:reference [ fhir:v "AllergyIntolerance/example" ]
     ]
  ] [
     fhir:item [
       fhir:reference [ fhir:v "AllergyIntolerance/medication" ]
     ]
  ] )] . # 

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.