@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://fhir.ehdsi.eu/core/Procedure/b8c9d0e1-f2a3-4567-bcde-678901234567> a fhir:Procedure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "b8c9d0e1-f2a3-4567-bcde-678901234567"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://fhir.ehdsi.eu/core/StructureDefinition/procedure-myhealtheu-core"^^xsd:anyURI ;
       fhir:l <http://fhir.ehdsi.eu/core/StructureDefinition/procedure-myhealtheu-core>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Appendectomy - John Doe</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:code [
     fhir:coding ( [
       a sct:80146002 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "80146002" ] ;
       fhir:display [ fhir:v "Appendectomy" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <http://fhir.ehdsi.eu/core/Patient/1d4bbc93-63b7-4f2b-8f0f-8380aa138f49> ;
     fhir:reference [ fhir:v "Patient/1d4bbc93-63b7-4f2b-8f0f-8380aa138f49" ]
  ] ; # 
  fhir:performed [
     a fhir:DateTime ;
     fhir:v "2022-09-14"^^xsd:date
  ] ; # 
  fhir:performer ( [
     fhir:actor [
       fhir:l <http://fhir.ehdsi.eu/core/PractitionerRole/b975ec26-4ecf-4588-9fa2-afbb0d9fc530> ;
       fhir:reference [ fhir:v "PractitionerRole/b975ec26-4ecf-4588-9fa2-afbb0d9fc530" ]
     ] ;
     fhir:onBehalfOf [
       fhir:l <http://fhir.ehdsi.eu/core/Organization/ff4d98d1-69c9-43db-896e-58d11c15662c> ;
       fhir:reference [ fhir:v "Organization/ff4d98d1-69c9-43db-896e-58d11c15662c" ]
     ]
  ] ) ; # 
  fhir:reasonCode ( [
     fhir:coding ( [
       a sct:74400008 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "74400008" ] ;
       fhir:display [ fhir:v "Appendicitis" ]
     ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

