@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/Condition/example-condition-dm2> a fhir:Condition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-condition-dm2"] ; # 
  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: Condition example-condition-dm2</b></p><a name=\"example-condition-dm2\"> </a><a name=\"hcexample-condition-dm2\"> </a><p><b>clinicalStatus</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/condition-clinical active}\">Active</span></p><p><b>code</b>: <span title=\"Codes:{http://fhir.de/CodeSystem/bfarm/icd-10-gm E11.90}\">Diabetes mellitus, Typ 2: Ohne Komplikationen, nicht als entgleist bezeichnet</span></p><p><b>subject</b>: <a href=\"Patient-example-patient-hzv.html\">Max Mustermann  Male, DoB: 1970-05-15</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:clinicalStatus [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/condition-clinical"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/condition-clinical>
       ] ;
       fhir:code [ fhir:v "active" ]
     ] )
  ] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://fhir.de/CodeSystem/bfarm/icd-10-gm"^^xsd:anyURI ;
         fhir:l <http://fhir.de/CodeSystem/bfarm/icd-10-gm>
       ] ;
       fhir:code [ fhir:v "E11.90" ] ;
       fhir:display [ fhir:v "Diabetes mellitus, Typ 2: Ohne Komplikationen, nicht als entgleist bezeichnet" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <https://fhir.cognovis.de/praxis/Patient/example-patient-hzv> ;
     fhir:reference [ fhir:v "Patient/example-patient-hzv" ]
  ] . # 

# -------------------------------------------------------------------------------------

