@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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/Observation/example-observation> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-observation"] ; # 
  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: Observation example-observation</b></p><a name=\"example-observation\"> </a><a name=\"hcexample-observation\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 4548-4}\">Hämoglobin A1c/Hämoglobin.gesamt in Blut</span></p><p><b>subject</b>: <a href=\"Patient-example-patient.html\">Thomas Weber (official) Male, DoB: 1975-06-15</a></p><p><b>effective</b>: 2026-01-15</p><p><b>performer</b>: <a href=\"Practitioner-example-practitioner.html\">Practitioner Markus Schoell (official)</a></p><p><b>value</b>: 7.2 %<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  code% = '%')</span></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:4548-4 ;
       fhir:system [
         fhir:v "http://loinc.org"^^xsd:anyURI ;
         fhir:l <http://loinc.org>
       ] ;
       fhir:code [ fhir:v "4548-4" ] ;
       fhir:display [ fhir:v "Hämoglobin A1c/Hämoglobin.gesamt in Blut" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:l <https://fhir.cognovis.de/praxis/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2026-01-15"^^xsd:date
  ] ; # 
  fhir:performer ( [
     fhir:l <https://fhir.cognovis.de/praxis/Practitioner/example-practitioner> ;
     fhir:reference [ fhir:v "Practitioner/example-practitioner" ]
  ] ) ; # 
  fhir:value [
     a fhir:Quantity ;
     fhir:value [ fhir:v 7.2 ] ;
     fhir:unit [ fhir:v "%" ] ;
     fhir:system [
       fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
       fhir:l <http://unitsofmeasure.org>
     ] ;
     fhir:code [ fhir:v "%" ]
  ] . # 

# -------------------------------------------------------------------------------------

