@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:AllergyIntolerance; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example3"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/au-allergyintolerance"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative: AllergyIntolerance

Resource AllergyIntolerance \"example3\"

Profile: AU Base Allergy Intolerance

clinicalStatus: Active (AllergyIntolerance Clinical Status Codes#active)

verificationStatus: Confirmed (AllergyIntolerance Verification Status#confirmed)

code: No known allergy (SNOMED CT#716186003)

patient: Patient/example3: John Smith \" SMITH\"

recordedDate: 2010-06-11

asserter: Practitioner/example0: Helen Mayo \" MAYO\"

" ]; fhir:AllergyIntolerance.clinicalStatus [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical" ]; fhir:Coding.code [ fhir:value "active" ]; fhir:Coding.display [ fhir:value "Active" ] ] ]; fhir:AllergyIntolerance.verificationStatus [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification" ]; fhir:Coding.code [ fhir:value "confirmed" ]; fhir:Coding.display [ fhir:value "Confirmed" ] ] ]; fhir:AllergyIntolerance.code [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:716186003; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "716186003" ]; fhir:Coding.display [ fhir:value "No known allergy" ] ] ]; fhir:AllergyIntolerance.patient [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example3" ]; fhir:Reference.display [ fhir:value "John Smith" ] ]; fhir:AllergyIntolerance.recordedDate [ fhir:value "2010-06-11"^^xsd:date]; fhir:AllergyIntolerance.asserter [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/example0" ]; fhir:Reference.display [ fhir:value "Helen Mayo" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------