Hi Paul, Thanks for your response!
Those are the standard ones, but what if one of my users adds, say, "Push Ups" via the "Create your own tracker »" button? Since "Push Ups" is not on your static list, how will my app know "Push Ups" is a Wellness result not a Test Result? A little background, I develop an iPhone Google Health client[1]. I'd like to add a "Wellness" section, but I want to make sure I'm showing the same data as the main GH UI. I could just rely on your static list, but the 0.1% of users who have created their own tracker would be (rightfully) confused. Best, Ford [1]: http://snosrap.com/cloudphrpro/ On Oct 22, 4:38 pm, "Paul (Google)" <[email protected]> wrote: > Hi Ford, > > Here's the list of currently recognized wellness test results names: > > Blood glucose > Body temperature > Breathing > Calories burned > Calories consumed > Cycling distance > Cycling time > Diastolic Blood Pressure > Exercise minutes > Heart rate > Height > Hours slept > Peak flow > Running distance > Running time > Steps taken > Swimming distance > Swimming time > Systolic Blood Pressure > Vegetable servings > Walking distance > Walking time > Weight > > If you're curious, I can certainly share the shell script that I used > to extract these. > > Enjoy! > Paul > > On Oct 21, 11:54 am, "Paul (Google)" <[email protected]> wrote: > > > > > > > > > Hi Ford, > > > Currently, the only way to get the list of wellness test result names > > is to add the wellness trackers to a profile via the UI, and then > > extract the CCR from the profile and inspect the Test elements. I'll > > post the current list in this thread and also add it to the > > documentation. > > > Cheers! > > Paul > > > On Oct 20, 3:29 pm, Ford <[email protected]> wrote: > > > > Hi Paul, > > > > Is there a way to get that list of names via the API? > > > > I could just hard-code the wellness oriented names (e.g. distance/time > > > ran, steps taken, etc.) but that wouldn't work for the "Create your > > > own tracker" names. > > > > Thanks, > > > Ford > > > > On Oct 13, 1:03 pm, "Paul (Google)" <[email protected]> wrote: > > > > > Hi Ford, > > > > > Wellness data and test results are represented in the CCR that Health > > > > accepts and emits as Results. Health recognizes certain results as > > > > being > > > > wellness oriented (e.g. distance/time ran, steps taken, etc.) based on > > > > their > > > > name, and promotes them to the "Wellness" section in the UI. > > > > > Paul (Google) > > > > > On Sun, Oct 3, 2010 at 11:33 AM, Ford <[email protected]> wrote: > > > > > Hi Paul, > > > > > > What's the difference between a "Wellness" entry and a "Test results" > > > > > entry? > > > > > > They both seem to be represented as a <Result /> > > > > > > Thanks, > > > > > Ford > > > > > > On Sep 19, 1:43 am, "Paul (Google)" <[email protected]> wrote: > > > > > > Below are a few examples of CCR documents that can be used to add > > > > > > measurements to the Wellness section of the new Health user > > > > > > interface. For other measurements, try using the measurement names > > > > > > and units displayed in the UI with one of the CCR documents below, > > > > > > or > > > > > > enter wellness measurements in the UI, and retrieve the > > > > > > corresponding > > > > > > CCR using the GData profile feed. > > > > > > > Cheers! > > > > > > Paul (Google) > > > > > > > Blood pressure, as two tests in a single CCR Result. > > > > > > <ContinuityOfCareRecord xmlns='urn:astm-org:CCR'> > > > > > > <Body> > > > > > > <Results> > > > > > > <Result> > > > > > > <DateTime> > > > > > > <Type> > > > > > > <Text>Collection start date</Text> > > > > > > </Type> > > > > > > <ExactDateTime>2010-01-31</ExactDateTime> > > > > > > </DateTime> > > > > > > <Test> > > > > > > <Description> > > > > > > <Text>Systolic Blood Pressure</Text> > > > > > > </Description> > > > > > > <TestResult> > > > > > > <Value>120</Value> > > > > > > <Units> > > > > > > <Unit>mmHg</Unit> > > > > > > </Units> > > > > > > </TestResult> > > > > > > </Test> > > > > > > <Test> > > > > > > <Description> > > > > > > <Text>Diastolic Blood Pressure</Text> > > > > > > </Description> > > > > > > <TestResult> > > > > > > <Value>80</Value> > > > > > > <Units> > > > > > > <Unit>mmHg</Unit> > > > > > > </Units> > > > > > > </TestResult> > > > > > > </Test> > > > > > > </Result> > > > > > > </Results> > > > > > > </Body> > > > > > > </ContinuityOfCareRecord> > > > > > > > Calories burned and calories consumed, which are two separate > > > > > > wellness > > > > > > measurements and therefore should be entered as two separate CCR > > > > > > Results. > > > > > > <ContinuityOfCareRecord xmlns='urn:astm-org:CCR'> > > > > > > <Body> > > > > > > <Results> > > > > > > <Result> > > > > > > <Test> > > > > > > <DateTime> > > > > > > <Type> > > > > > > <Text>Collection start date</Text> > > > > > > </Type> > > > > > > <ExactDateTime>2010-01-31</ExactDateTime> > > > > > > </DateTime> > > > > > > <Description> > > > > > > <Text>Calories burned</Text> > > > > > > </Description> > > > > > > <TestResult> > > > > > > <Value>200</Value> > > > > > > <Units> > > > > > > <Unit>calories</Unit> > > > > > > </Units> > > > > > > </TestResult> > > > > > > </Test> > > > > > > </Result> > > > > > > <Result> > > > > > > <Test> > > > > > > <DateTime> > > > > > > <Type> > > > > > > <Text>Collection start date</Text> > > > > > > </Type> > > > > > > <ExactDateTime>2010-01-31</ExactDateTime> > > > > > > </DateTime> > > > > > > <Description> > > > > > > <Text>Calories consumed</Text> > > > > > > </Description> > > > > > > <TestResult> > > > > > > <Value>200</Value> > > > > > > <Units> > > > > > > <Unit>calories</Unit> > > > > > > </Units> > > > > > > </TestResult> > > > > > > </Test> > > > > > > </Result> > > > > > > </Results> > > > > > > </Body> > > > > > > </ContinuityOfCareRecord> > > > > > > > Height and weight in a single CCR Result, which will ensure that > > > > > > they > > > > > > have the same date. They can be entered as separate Results with > > > > > > independent dates; however, BMI will not be automatically calculated > > > > > > unless height and weigh measurements exist on the same date. > > > > > > <ContinuityOfCareRecord xmlns='urn:astm-org:CCR'> > > > > > > <Body> > > > > > > <Results> > > > > > > <Result> > > > > > > <DateTime> > > > > > > <Type> > > > > > > <Text>Collection start date</Text> > > > > > > </Type> > > > > > > <ExactDateTime>2010-01-31</ExactDateTime> > > > > > > </DateTime> > > > > > > <Test> > > > > > > <Description> > > > > > > <Text>Height</Text> > > > > > > </Description> > > > > > > <TestResult> > > > > > > <Value>70</Value> > > > > > > <Units> > > > > > > <Unit>inches</Unit> > > > > > > </Units> > > > > > > </TestResult> > > > > > > </Test> > > > > > > <Test> > > > > > > <Description> > > > > > > <Text>Weight</Text> > > > > > > </Description> > > > > > > <TestResult> > > > > > > <Value>150</Value> > > > > > > <Units> > > > > > > <Unit>lb</Unit> > > > > > > </Units> > > > > > > </TestResult> > > > > > > </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]<googlehealthdevelopers% > > > > > [email protected]> > > > > > . > > > > > For more options, visit this group at > > > > >http://groups.google.com/group/googlehealthdevelopers?hl=en. -- 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.
