Hi Allen,

The simplest tweak to your CCR to get it working is to send the tests
as a compound result, with both Test elements in one Result.  For
slightly cleaner CCR, you could move the DateTime element into the
Result element.  The first CCR document below is an example of this.
Alternately, you can send BP in a single, compound Test, as the second
example below shows.

Thanks for sharing this issue with us.  Health presently only accepts
BP tests in a single result, but emits it separately.  We are
definitely looking to deal with BP more consistently.

Cheers!
Paul (Google)


BP as a compound result:
<ContinuityOfCareRecord xmlns="urn:astm-org:CCR">
  <Body>
    <Results>
      <Result>
        <DateTime>
          <Type>
            <Text>Collection start date</Text>
          </Type>
          <ExactDateTime>2007-05-02T07:00:00Z</ExactDateTime>
        </DateTime>
        <Test>
          <Description>
            <Text>Blood Pressure, Diastolic (Lower Number)</Text>
            <Code>
              <Value>18.4248</Value>
              <CodingSystem>Google</CodingSystem>
            </Code>
          </Description>
          <TestResult>
            <Value>80</Value>
            <Units>
              <Unit>mmHg</Unit>
            </Units>
          </TestResult>
        </Test>
        <Test>
          <Description>
            <Text>Blood Pressure, Systolic (Upper Number)</Text>
            <Code>
              <Value>18.13801</Value>
              <CodingSystem>Google</CodingSystem>
            </Code>
          </Description>
          <TestResult>
            <Value>120</Value>
            <Units>
              <Unit>mmHg</Unit>
            </Units>
          </TestResult>
        </Test>
      </Result>
    </Results>
  </Body>
</ContinuityOfCareRecord>

BP as a compound test:
<ContinuityOfCareRecord xmlns="urn:astm-org:CCR">
  <Body>
    <Results>
      <Result>
        <Test>
          <DateTime>
            <Type>
              <Text>Collection start date</Text>
            </Type>
            <ExactDateTime>2007-05-02T07:00:00Z</ExactDateTime>
          </DateTime>
          <Description>
            <Text>Blood Pressure</Text>
          </Description>
          <TestResult>
            <Value>120/80</Value>
            <Units>
              <Unit>mmHg</Unit>
            </Units>
          </TestResult>
        </Test>
      </Result>
    </Results>
  </Body>
</ContinuityOfCareRecord>


On Oct 24, 3:20 am, allen <[email protected]> wrote:
> Hello
>
> I posting a CCR document below for adding Blood pressure Data to my
> profile.
>
> but I get two records in Google Health UI:
>
>  -  / 80 mmHg
> 120  / - mmHg
>
> not one recode:
>
> 120  / 80 mmHg
>
> how to fix it ?
>
> Thank you!!
>
> Allen
>
> <ContinuityOfCareRecord xmlns="urn:astm-org:CCR">
>   <Body>
>     <Results>
>       <Result>
>         <Test>
>           <Description>
>             <Text>Blood Pressure, Diastolic (Lower Number)</Text>
>             <Code>
>               <Value>18.4248</Value>
>               <CodingSystem>Google</CodingSystem>
>             </Code>
>           </Description>
>           <TestResult>
>             <Value>80</Value>
>             <Units>
>               <Unit>mmHg</Unit>
>             </Units>
>           </TestResult>
>           <DateTime>
>             <Type>
>               <Text>Collection start date</Text>
>             </Type>
>             <ExactDateTime>2007-05-02T07:00:00Z</ExactDateTime>
>           </DateTime>
>         </Test>
>       </Result>
>       <Result>
>         <Test>
>           <Description>
>             <Text>Blood Pressure, Systolic (Upper Number)</Text>
>             <Code>
>               <Value>18.13801</Value>
>               <CodingSystem>Google</CodingSystem>
>             </Code>
>           </Description>
>           <TestResult>
>             <Value>120</Value>
>             <Units>
>               <Unit>mmHg</Unit>
>             </Units>
>           </TestResult>
>           <DateTime>
>             <Type>
>               <Text>Collection start date</Text>
>             </Type>
>             <ExactDateTime>2007-05-02T07:00:00Z</ExactDateTime>
>           </DateTime>
>         </Test>
>       </Result>
>     </Results>
>   </Body>
> </ContinuityOfCareRecord>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Health Developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/googlehealthdevelopers?hl=en.

Reply via email to