@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://www.ehealth.fgov.be/standards/fhir/lab/Observation/obsDynamic2> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "obsDynamic2"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://www.ehealth.fgov.be/standards/fhir/lab/StructureDefinition/be-observation-laboratory"^^xsd:anyURI ;
       fhir:l <https://www.ehealth.fgov.be/standards/fhir/lab/StructureDefinition/be-observation-laboratory>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "empty" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">empty</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:53093-1 ;
       fhir:system [
         fhir:v "http://loinc.org"^^xsd:anyURI ;
         fhir:l <http://loinc.org>
       ] ;
       fhir:code [ fhir:v "53093-1" ] ;
       fhir:display [ fhir:v "Glucose^post XXX challenge" ]
     ] )
  ] ; # 
  fhir:effective [
     a fhir:DateTime ;
     fhir:v "2015-11-04T09:16:00-05:00"^^xsd:dateTime
  ] ; # 
  fhir:issued [ fhir:v "2015-11-04T09:16:00-05:00"^^xsd:dateTime] ; # 
  fhir:performer ( [
     fhir:l <https://www.ehealth.fgov.be/standards/fhir/lab/Practitioner/practitioner10> ;
     fhir:reference [ fhir:v "Practitioner/practitioner10" ]
  ] ) ; # 
  fhir:value [
     a fhir:Quantity ;
     fhir:value [ fhir:v 9.1 ] ;
     fhir:unit [ fhir:v "mmol/l" ] ;
     fhir:system [
       fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
       fhir:l <http://unitsofmeasure.org>
     ] ;
     fhir:code [ fhir:v "mmol/l" ]
  ] ; # 
  fhir:component ( [
     fhir:code [
       fhir:coding ( [
         a sct:118578006 ;
         fhir:system [
           fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
           fhir:l <http://snomed.info/sct>
         ] ;
         fhir:code [ fhir:v "118578006" ] ;
         fhir:display [ fhir:v "Relative time" ]
       ] )
     ] ;
     fhir:value [
       a fhir:Quantity ;
       fhir:value [ fhir:v "240"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "min" ] ;
       fhir:system [
         fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
         fhir:l <http://unitsofmeasure.org>
       ] ;
       fhir:code [ fhir:v "min" ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

