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

Generated Narrative: Procedure

Resource Procedure \"example1\"

Profile: AU Base Procedure

status: completed

code: Cardiac catheterisation (SNOMED CT#41976001)

subject: Patient/example1 \" DAN\"

performed: 2021-09-25

Performers

-Actor
*PractitionerRole/example4

location: Location/example0 \"Downunder Hospital Blacktown\"

reasonCode: Occlusion of right coronary artery (SNOMED CT#876856005 \"Stenosis of right coronary artery\")

" ]; fhir:Procedure.status [ fhir:value "completed"]; fhir:Procedure.code [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:41976001; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "41976001" ]; fhir:Coding.display [ fhir:value "Cardiac catheterisation" ] ] ]; fhir:Procedure.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example1" ] ]; fhir:Procedure.performedDateTime [ fhir:value "2021-09-25"^^xsd:date]; fhir:Procedure.performer [ fhir:index 0; fhir:Procedure.performer.actor [ fhir:link ; fhir:Reference.reference [ fhir:value "PractitionerRole/example4" ] ] ]; fhir:Procedure.location [ fhir:link ; fhir:Reference.reference [ fhir:value "Location/example0" ] ]; fhir:Procedure.reasonCode [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; a sct:876856005; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "876856005" ]; fhir:Coding.display [ fhir:value "Stenosis of right coronary artery" ] ]; fhir:CodeableConcept.text [ fhir:value "Occlusion of right coronary artery" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------