@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://hl7.no/fhir/kommune/Observation/example-observation-oxygen-saturation> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-observation-oxygen-saturation"] ; # 
  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-oxygen-saturation</b></p><a name=\"example-observation-oxygen-saturation\"> </a><a name=\"hcexample-observation-oxygen-saturation\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:\">Oksygenmetning målt hjemme</span></p><p><b>subject</b>: <a href=\"Patient-example-patient.html\">Kari Hansen  Female, DoB: 1948-09-12</a></p><p><b>effective</b>: 2026-01-21 08:30:00+0100</p><p><b>performer</b>: <a href=\"Organization-example-organization.html\">Organization Oslo kommune, Bydel Grünerløkka, Hjemmetjenesten</a></p><p><b>value</b>: 94 %</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:text [ fhir:v "Oksygenmetning målt hjemme" ]
  ] ; # 
  fhir:subject [
     fhir:l <https://hl7.no/fhir/kommune/Patient/example-patient> ;
     fhir:reference [ fhir:v "Patient/example-patient" ]
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2026-01-21T08:30:00+01:00"^^xsd:dateTime
  ] ; # 
  fhir:performer ( [
     fhir:l <https://hl7.no/fhir/kommune/Organization/example-organization> ;
     fhir:reference [ fhir:v "Organization/example-organization" ]
  ] ) ; # 
  fhir:value [
     a fhir:Quantity ;
     fhir:value [ fhir:v "94"^^xsd:decimal ] ;
     fhir:unit [ fhir:v "%" ]
  ] . # 

# -------------------------------------------------------------------------------------

