TEHIK FHIR IG Starter
0.1.0 - draft Estonia flag

TEHIK FHIR IG Starter, published by TEHIK. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/TEHIK-EE/ig-ee-starter/ and changes regularly. See the Directory of published versions

: Clinical Observation Example - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "EEClinicalObservationExample"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "https://fhir.ee/tools/StructureDefinition/ee-clinical-observation"^^xsd:anyURI ;
fhir:link <https://fhir.ee/tools/StructureDefinition/ee-clinical-observation>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "extensions" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Observation EEClinicalObservationExample</b></p><a name=\"EEClinicalObservationExample\"> </a><a name=\"hcEEClinicalObservationExample\"> </a><a name=\"EEClinicalObservationExample-en-US\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-ee-clinical-observation.html\">Clinical Observation</a></p></div><p><b>Body Position During Measurement</b>: <span title=\"Codes:{http://snomed.info/sct 33586001}\">Sitting position</span></p><p><b>status</b>: Final</p><p><b>category</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/observation-category vital-signs}\">Vital Signs</span></p><p><b>code</b>: <span title=\"Codes:{https://fhir.ee/tools/CodeSystem/ee-observation-code-system temperature}\">Body Temperature</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">John Doe  Male, DoB: 1980-01-01</a></p><p><b>effective</b>: 2025-05-01 14:30:00+0000</p><p><b>value</b>: 37.5 °C<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codeCel = 'Cel')</span></p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:extension ( [
fhir:url [ fhir:v "https://fhir.ee/tools/StructureDefinition/ee-body-position-extension"^^xsd:anyURI ] ;
fhir:value [
a fhir:CodeableConcept ;
      ( fhir:coding [
a sct:33586001 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "33586001" ] ;
fhir:display [ fhir:v "Sitting position" ]       ] )     ]
  ] ) ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:category ( [
    ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ] ;
fhir:code [ fhir:v "vital-signs" ]     ] )
  ] ) ; # 
  fhir:code [
    ( fhir:coding [
fhir:system [ fhir:v "https://fhir.ee/tools/CodeSystem/ee-observation-code-system"^^xsd:anyURI ] ;
fhir:code [ fhir:v "temperature" ] ;
fhir:display [ fhir:v "Body Temperature" ]     ] )
  ] ; # 
  fhir:subject [
fhir:reference [ fhir:v "Patient/example" ]
  ] ; # 
  fhir:effective [
a fhir:dateTime ;
fhir:v "2025-05-01T14:30:00Z"^^xsd:dateTime
  ] ; # 
  fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v 37.5 ] ;
fhir:unit [ fhir:v "°C" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "Cel" ]
  ] . #