@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://fhir.ehdsi.eu/eps/Procedure/a1b2c3d4-e5f6-7890-abcd-ef1234567890> a fhir:Procedure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "a1b2c3d4-e5f6-7890-abcd-ef1234567890"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://fhir.ehdsi.eu/eps/StructureDefinition/procedure-myhealtheu-eps" ;
       fhir:index 0 ;
       fhir:link <http://fhir.ehdsi.eu/eps/StructureDefinition/procedure-myhealtheu-eps>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Coronary artery bypass grafting, 2010-04-19</p></div>"
  ] ;
  fhir:Procedure.status [ fhir:value "completed"] ;
  fhir:Procedure.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:232717009 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "232717009" ] ;
       fhir:Coding.display [ fhir:value "Coronary artery bypass grafting" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Coronary artery bypass grafting" ]
  ] ;
  fhir:Procedure.subject [
     fhir:link <http://fhir.ehdsi.eu/eps/Patient/f0b2dcfe-e837-464b-ae8a-3b9da1807dd3> ;
     fhir:Reference.reference [ fhir:value "Patient/f0b2dcfe-e837-464b-ae8a-3b9da1807dd3" ]
  ] ;
  fhir:Procedure.performedDateTime [ fhir:value "2010-04-19"^^xsd:date] .

# - ontology header ------------------------------------------------------------

<http://fhir.ehdsi.eu/eps/Procedure/a1b2c3d4-e5f6-7890-abcd-ef1234567890.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

