HL7 Norway
FHIR implementasjonsguide for norsk kommunesektor
Felles startpunkt for forståelse og omforent bruk av FHIR i kommunal helse- og omsorgstjeneste.

FHIR implementasjonsguide for norsk kommunesektor
0.1.0 - ci-build NO

FHIR implementasjonsguide for norsk kommunesektor - Local Development build (v0.1.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Eksempel observasjon - TTL Representation

Raw ttl | Download


@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 -------------------------------------------------------------------

 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:\">Timed Up and Go-test</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-18</p><p><b>performer</b>: <a href=\"PractitionerRole-example-practitionerrole-physio.html\">PractitionerRole</a></p><p><b>value</b>: 23 s</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
fhir:text [ fhir:v "Timed Up and Go-test" ]
  ] ; # 
  fhir:subject [
fhir:l fhir:Patient/example-patient ;
fhir:reference [ fhir:v "Patient/example-patient" ]
  ] ; # 
  fhir:effective [
a fhir:DateTime ;
fhir:v "2026-01-18"^^xsd:date
  ] ; # 
  fhir:performer ( [
fhir:l fhir:PractitionerRole/example-practitionerrole-physio ;
fhir:reference [ fhir:v "PractitionerRole/example-practitionerrole-physio" ]
  ] ) ; # 
  fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v "23"^^xsd:decimal ] ;
fhir:unit [ fhir:v "s" ]
  ] . #