@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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.au/fhir/core/Procedure/dialysis> a fhir:Procedure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "dialysis"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org.au/fhir/core/StructureDefinition/au-core-procedure" ;
       fhir:index 0 ;
       fhir:link <http://hl7.org.au/fhir/core/StructureDefinition/au-core-procedure>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Procedure dialysis</b></p><a name=\"dialysis\"> </a><a name=\"hcdialysis\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-au-core-procedure.html\">AU Core Procedure</a></p></div><p><b>status</b>: Completed</p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 302497006}\">Haemodialysis</span></p><p><b>subject</b>: <a href=\"Patient-ronny-irvine.html\">Ronny Lawrence Irvine  Male, DoB:  ( DVA Number: QX827261)</a></p><p><b>performed</b>: 2012-08-05</p><h3>Performers</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Actor</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"PractitionerRole-nephrologist-darleen-mackay.html\">PractitionerRole Nephrologist</a></td></tr></table><p><b>reasonReference</b>: <a href=\"Condition-ckd.html\">Chronic Kidney Disease</a></p></div>"
  ] ;
  fhir:Procedure.status [ fhir:value "completed"] ;
  fhir:Procedure.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:302497006 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "302497006" ] ;
       fhir:Coding.display [ fhir:value "Haemodialysis" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Haemodialysis" ]
  ] ;
  fhir:Procedure.subject [
     fhir:link <http://hl7.org.au/fhir/core/Patient/ronny-irvine> ;
     fhir:Reference.reference [ fhir:value "Patient/ronny-irvine" ]
  ] ;
  fhir:Procedure.performedDateTime [ fhir:value "2012-08-05"^^xsd:date] ;
  fhir:Procedure.performer [
     fhir:index 0 ;
     fhir:Procedure.performer.actor [
       fhir:link <http://hl7.org.au/fhir/core/PractitionerRole/nephrologist-darleen-mackay> ;
       fhir:Reference.reference [ fhir:value "PractitionerRole/nephrologist-darleen-mackay" ]
     ]
  ] ;
  fhir:Procedure.reasonReference [
     fhir:index 0 ;
     fhir:link <http://hl7.org.au/fhir/core/Condition/ckd> ;
     fhir:Reference.reference [ fhir:value "Condition/ckd" ] ;
     fhir:Reference.display [ fhir:value "Chronic Kidney Disease" ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org.au/fhir/core/Procedure/dialysis.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

