@prefix fhir: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:AllergyIntolerance ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example-01"] ; # fhir:meta [ fhir:profile ( [ fhir:v "https://nrces.in/ndhm/fhir/r4/StructureDefinition/AllergyIntolerance"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: AllergyIntolerance example-01

clinicalStatus: Active

verificationStatus: Confirmed

code: NKA

patient: ABC Male, DoB: 1981-01-12 ( Medical record number: 22-7225-4829-5255)

recordedDate: 2020-07-09 15:37:31-0600

recorder: Practitioner Dr. DEF

note: The patient reports no other known allergy.

"^^rdf:XMLLiteral ] ; # fhir:clinicalStatus [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical"^^xsd:anyURI ] ; fhir:code [ fhir:v "active" ] ; fhir:display [ fhir:v "Active" ] ] ) ] ; # fhir:verificationStatus [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification"^^xsd:anyURI ] ; fhir:code [ fhir:v "confirmed" ] ; fhir:display [ fhir:v "Confirmed" ] ] ) ] ; # fhir:code [ fhir:coding ( [ a sct:716186003 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "716186003" ] ; fhir:display [ fhir:v "No known allergy" ] ] ) ; fhir:text [ fhir:v "NKA" ] ] ; # fhir:patient [ fhir:link ; fhir:reference [ fhir:v "Patient/example-01" ] ] ; # fhir:recordedDate [ fhir:v "2020-07-09T15:37:31-06:00"^^xsd:dateTime] ; # fhir:recorder [ fhir:link ; fhir:reference [ fhir:v "Practitioner/example-01" ] ] ; # fhir:note ( [ fhir:text [ fhir:v "The patient reports no other known allergy." ] ] ) . # # -------------------------------------------------------------------------------------