Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The process query resulted in the following text

 

 

Code Block
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<Bundle>
   <entry>
      <resource>
         <Observation xmlns="http://hl7.org/fhir">
            <id value="M5883308" />
            <meta>
               <versionId value="1-5883307" />
               <lastUpdated value="2018-12-07T15:42:54" />
               <tag>
                  <code value="Cerner" />
                  <display value="Cerner" />
               </tag>
               <tag>
                  <system value="http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation" />
                  <code value="NA" />
                  <display value="Not Applicable" />
               </tag>
               <tag>
                  <system value="http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-observation" />
                  <code value="N" />
                  <display value="Not Compliant" />
               </tag>
               <tag>
                  <system value="http://hl7.org/fhir/us/hedis/StructureDefinition/hedis-observation" />
                  <code value="N" />
                  <display value="Not Compliant" />
               </tag>
            </meta>
            <text>
               <status value="generated" />
            </text>
            <status value="final" />
            <category>
               <coding>
                  <system value="http://hl7.org/fhir/observation-category" />
                  <code value="laboratory" />
                  <display value="Laboratory" />
               </coding>
               <text value="Laboratory" />
            </category>
            <code>
               <coding>
                  <system value="http://loinc.org" />
                  <code value="2345-7" />
               </coding>
               <text value="Glucose Lvl" />
            </code>
            <context>
               <reference value="Encounter/2787906" />
            </context>
            <effectiveDateTime value="2016-02-08T15:24:00.000Z" />
            <issued value="2016-02-08T16:14:07.000Z" />
            <valueQuantity>
               <value value="76" />
               <unit value="mg/dL" />
               <system value="http://unitsofmeasure.org" />
               <code value="mg/dL" />
            </valueQuantity>
            <interpretation>
               <coding>
                  <system value="http://hl7.org/fhir/v2/0078" />
                  <code value="N" />
                  <display value="Normal" />
               </coding>
            </interpretation>
            <referenceRange>
               <low>
                  <value value="30" />
                  <unit value="mg/dL" />
                  <system value="http://unitsofmeasure.org" />
                  <code value="mg/dL" />
               </low>
               <high>
                  <value value="90" />
                  <unit value="mg/dL" />
                  <system value="http://unitsofmeasure.org" />
                  <code value="mg/dL" />
               </high>
               <text value="30-90 mg/dL" />
            </referenceRange>
         </Observation>
      </resource>
   </entry>
</Bundle>

 

 

 

Bundle> 

The result after transformation is 

Code Block
languagejson
{
  "bloodSugar": 76.0
}

...

which is the parsed as base JSON processing available in redhat services.  

<< insert links to artifacts (running ?)  >>

...