FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example Observation/krcore-observation-labresult-example-01 (Turtle)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Encounter, Patient, Practitioner, RelatedPerson

Raw Turtle (+ also see Turtle/RDF Format Specification)

Observation example demonstrating internationalization (Korean)

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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 "krcore-observation-labresult-example-01"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://example.org/fhir/krcore/StructureDefinition/krcore-observation-labresult"^^xsd:anyURI ;
       fhir:link <https://example.org/fhir/krcore/StructureDefinition/krcore-observation-labresult>
     ] )
  ] ; # 
  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 "laboratory" ] ;
       fhir:display [ fhir:v "Laboratory" ]
     ] )
  ] ) ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [ fhir:v "https://hira.or.kr/CodeSystem/lab-result-code"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "FZ811" ] ;
       fhir:display [ fhir:v "연속혈당측정검사" ]
     ] ) ;
     fhir:text [ fhir:v "연속혈당측정검사" ]
  ] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/ch-example" ]
  ] ; # 
  fhir:effective [ fhir:v "2021-01-01"^^xsd:date] ; # 
  fhir:value [
     a fhir:Quantity ;
     fhir:value [ fhir:v "76.0"^^xsd:decimal ] ;
     fhir:unit [ fhir:v "mg/dL" ] ;
     fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ]
  ] ; # 
  fhir:referenceRange ( [
     fhir:low [
       fhir:value [ fhir:v "40.0"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mg/dL" ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "mg/dL" ]
     ] ;
     fhir:high [
       fhir:value [ fhir:v "109.0"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "mg/dL" ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "mg/dL" ]
     ]
  ] )] . # 

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.