@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/us/dapl/AllergyIntolerance/de-identified-example> a fhir:AllergyIntolerance ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "de-identified-example"] ; # 
  fhir:meta [
     fhir:lastUpdated [ fhir:v "2017-05-26T11:56:57.250-04:00"^^xsd:dateTime ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/dapl/StructureDefinition/dapl-deidentified-allergyintolerance"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/dapl/StructureDefinition/dapl-deidentified-allergyintolerance>
     ] )
  ] ; # 
  fhir:clinicalStatus [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical>
       ] ;
       fhir:code [ fhir:v "active" ]
     ] )
  ] ; # 
  fhir:verificationStatus [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/allergyintolerance-verification>
       ] ;
       fhir:code [ fhir:v "confirmed" ]
     ] )
  ] ; # 
  fhir:category ( [ fhir:v "medication"] ) ; # 
  fhir:criticality [ fhir:v "high"] ; # 
  fhir:code [
     fhir:coding ( [
       a sct:387406002 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "387406002" ] ;
       fhir:display [ fhir:v "Sulfonamide (substance)" ]
     ] ) ;
     fhir:text [ fhir:v "sulfonamide antibacterial" ]
  ] ; # 
  fhir:patient [
     fhir:l <http://hl7.org/fhir/us/dapl/Patient/de-identified-example> ;
     fhir:reference [ fhir:v "Patient/de-identified-example" ]
  ] ; # 
  fhir:onset [
     a fhir:DateTime ;
     fhir:v "2015"^^xsd:gYear
  ] ; # 
  fhir:recordedDate [ fhir:v "2017"^^xsd:gYear] ; # 
  fhir:reaction ( [
     fhir:manifestation ( [
       fhir:coding ( [
         a sct:271807003 ;
         fhir:system [
           fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
           fhir:l <http://snomed.info/sct>
         ] ;
         fhir:code [ fhir:v "271807003" ] ;
         fhir:display [ fhir:v "skin rash" ]
       ] ) ;
       fhir:text [ fhir:v "skin rash" ]
     ] ) ;
     fhir:severity [ fhir:v "mild" ]
  ] ) . # 

<http://hl7.org/fhir/us/dapl/Patient/de-identified-example> a fhir:Us .

# -------------------------------------------------------------------------------------

