@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://fhir.org/fhir/us/anonymized-eicr/Observation/observation-lab-result-lymphocytes-anon> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "observation-lab-result-lymphocytes-anon"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab>
     ] )
  ] ; # 
  fhir:text [
     fhir:extension ( [
       fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/data-absent-reason"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:code ;
         fhir:v "masked"
       ]
     ] ) ;
     fhir:status [ fhir:v "empty" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>MASKED</p></div>"^^rdf:XMLLiteral
  ] ; # 
  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:text [ fhir:v "Laboratory" ]
  ] ) ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:731-0 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "731-0" ] ;
       fhir:display [ fhir:v "Lymphocytes [#/volume] in Blood by Automated count" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:link <http://fhir.org/fhir/us/anonymized-eicr/Patient/patient-anon> ;
     fhir:reference [ fhir:v "Patient/patient-anon" ]
  ] ; # 
  fhir:effective [
     a fhir:dateTime ;
     fhir:v "2018-03-07"^^xsd:date
  ] ; # 
  fhir:value [
     a fhir:Quantity ;
     fhir:value [ fhir:v 5.2 ] ;
     fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
     fhir:code [ fhir:v "10*3/uL" ]
  ] ; # 
  fhir:interpretation ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "H" ] ;
       fhir:display [ fhir:v "High" ]
     ] )
  ] ) ; # 
  fhir:referenceRange ( [
     fhir:low [
       fhir:value [ fhir:v "1"^^xsd:decimal ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "10*3/uL" ]
     ] ;
     fhir:high [
       fhir:value [ fhir:v 4.8 ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "10*3/uL" ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

