@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://fhir.cognovis.de/praxis/ImagingStudy/example-imaging-study-ct-thorax> a fhir:ImagingStudy ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-imaging-study-ct-thorax"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: ImagingStudy example-imaging-study-ct-thorax</b></p><a name=\"example-imaging-study-ct-thorax\"> </a><a name=\"hcexample-imaging-study-ct-thorax\"> </a><p><b>status</b>: Available</p><p><b>modality</b>: <a href=\"http://dicom.nema.org/resources/ontology/DCM#DCM-CT\">DICOM: CT</a> (Computed Tomography)</p><p><b>subject</b>: <a href=\"Patient-example-patient.html\">Thomas Weber (official) Male, DoB: 1975-06-15</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "available"] ; # 
  fhir:modality ( [
     fhir:system [
       fhir:v "http://dicom.nema.org/resources/ontology/DCM"^^xsd:anyURI ;
       fhir:l <http://dicom.nema.org/resources/ontology/DCM>
     ] ;
     fhir:code [ fhir:v "CT" ]
  ] ) ; # 
  fhir:subject [
     fhir:l <https://fhir.cognovis.de/praxis/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] . # 

# -------------------------------------------------------------------------------------

