@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/hdr/Observation/ExampleProcedureImagingHdr> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleProcedureImagingHdr"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://fhir.ehdsi.eu/hdr/StructureDefinition/procedure-imaging-myhealtheu"^^xsd:anyURI ;
       fhir:l <http://fhir.ehdsi.eu/hdr/StructureDefinition/procedure-imaging-myhealtheu>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">20/05/2025: Computed tomography of abdomen and pelvis without contrast</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/observation-category>
       ] ;
       fhir:code [ fhir:v "imaging" ] ;
       fhir:display [ fhir:v "Imaging" ]
     ] )
  ] ) ; # 
  fhir:code [
     fhir:coding ( [
       a sct:16457501000119102 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "16457501000119102" ] ;
       fhir:display [ fhir:v "Computed tomography of abdomen and pelvis without contrast" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <urn:uuid:1d4bbc93-63b7-4f2b-8f0f-8380aa138f49> ;
     fhir:reference [ fhir:v "urn:uuid:1d4bbc93-63b7-4f2b-8f0f-8380aa138f49" ]
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2025-05-20T09:00:00+02:00"^^xsd:dateTime
  ] ; # 
  fhir:performer ( [
     fhir:l <http://fhir.ehdsi.eu/hdr/PractitionerRole/b975ec26-4ecf-4588-9fa2-afbb0d9fc530> ;
     fhir:reference [ fhir:v "PractitionerRole/b975ec26-4ecf-4588-9fa2-afbb0d9fc530" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

