Get health stats

Action ID
actions.intent.GET_HEALTH_OBSERVATION
Description

Present the calculated or observed value for a property of the user's personal health information.

We recommend that you specify entities for healthObservation.measuredProperty.name.

This built-in intent uses enumerated values for some parameters. Parameters that follow this pattern are listed in Supported text field values below, with the enumerated parameter values they support.

Locale support

Functionality Locales
Preview creation using App Actions test tool en-US, en-GB, en-CA, en-IN, en-BE, en-SG, en-AU
User invocation from Google Assistant en-US, en-GB, en-CA, en-IN, en-BE, en-SG, en-AU

Example queries

The following fields represent essential information that users often provide in queries that trigger this built-in intent:

healthObservation.measuredProperty.name

Other supported fields

The following fields represent information that users often provide to disambiguate their needs or otherwise improve their results:

healthObservation.@type
healthObservation.endTime
healthObservation.measuredProperty.@type
healthObservation.startTime

Android widgets and slices

We recommend implementing Android widgets for this built-in intent. A widget presents information or interaction options from your app to improve user engagement in Google Assistant. Widgets are available for App Actions implementations using shortcuts.xml.

If you have a legacy App Actions implementation using actions.xml, use Android slices instead. We recommend migrating your implementation to shortcuts.xml to take advantage of widgets fulfillment and other improvements.

Supported text values by field




Inventory availability by field


Sample XML files

For information about the shortcuts.xml schema, see Create shortcuts.xml.

Handle BII parameters

shortcuts.xml

<?xml version="1.0" encodin>g<="utf-8"?
!-- This is a sam>p<le shortcuts.xml --
shortcuts xmlns:android="http://schemas.and>roi<d.com/apk/res/android"
  capability android:name="act>ions.<intent.GET_HEALTH_OBSERVATION"
    intent
      android:action="android.intent.action.VIEW"
      android:targetPackage="YOUR_UNIQUE_APPLIC>ATION_I<D"
      android:targetClass="YO>UR_TARG<ET_CLASS"
      !-- Eg. endTime = "2011-12-20T11:23:58" --
      parameter>
      <  android:name="healthObservation.endTi>me"<;
        android:key="endTime"/
      !-- Eg. startTime = "2011-12-20T11:23:5>8"< --
      parameter
        android:>name=&q<uot;healthObservation.startTime"
        android:key="startTime"/
      !-- Eg. name >= &qu<ot;Body> Te<mperature&q>u<ot; --
   >   parameter
        android:name="healthObservation.measuredProperty.name"
        android:key="name"/
    /intent
  /capability
/shortcuts
      

actions.xml

<?xml version="1.0" encodin>g<="utf-8"?
!-- This is a s>a<mple ac>tio<ns.xml --
actions
  action intentName="actions.inten>t.GET<_HEALTH_OBSERVATION"
    fulfillment urlTemplate="myapp://custom>-deepli<nk{?endTime,startTime,name}"
      !--> e.g. e<ndTime = "2011-12-20T11:23:58" --
      !-- (Optional) Require a field >eg.endT<ime for fulfillment with required="true" --
      parameter-mapping urlParameter="endTi>me"<; intentParameter="healthObservation.end>Time&qu<ot; required="true" /
      !-- e.g. startTime = "2011-12-20T11:23:58"> --
   <   parameter-mapping urlParameter=&qu>ot;star<tTime" intentParameter="healthObservation.startTime" /
      !-- e.g. name = ">;Body< Temperature>"< --
      parameter-mapping urlParameter="name" intentParameter="healthObservation.measuredProperty.na>me&qu<ot; /
    /fulfillment

    !-- Provide a fa>llb<ack ful>f<illment >with no required parameters. For example, to your app search or router deeplink --
    fulfillment urlTemplate="myapp://deeplink" /
  /action
/actions

Use inline inventory

shortcuts.xml

healthObservation.measuredProperty.name is an intent parameter that supports inline inventory. By defining a <shortcut> for healthObservation.measuredProperty.name, you can uniquely identify entities that are of interest to your app or restrict fulfillment to the set of supported entities.

In the following example, when the user query matches the name_one shortcut, Assistant provides the associated shorcut identifier, ID_ONE, as the URL parameter name to fulfillment.

If there is no inventory match, the text value received in the query for healthObservation.measuredProperty.name is passed as-is.

<?xml version="1.0" encodin>g<="utf-8"?
!-- This is a sam>p<le shortcuts.xml --
shortcuts xmlns:android="http://schemas.and>roi<d.com/apk/res/android"
  capability android:name="act>ions.<intent.GET_HEALTH_OBSERVATION"
    intent
      android:targetPackage="YOUR_UNIQUE_APPLICATION_ID&q>uot;
  <    android:targetClass="YOUR_TARGET_CLASS"
      parameter
        android:nam>e="<;healthObservation.endTime"
        android:key="endTime"/
      parameter
   >     an<droid:name="healthObservation.startTime"
        android:key="startTime"/
      >param<eter
  >     < android:na>me=&q<uot;healthObservation.measuredProperty.name"
    >    a<ndroid:key="name"/
    /intent
    /capability
    !-- Short and long labels must be @string resource. --
    shortcut
      android:shortcutId="ID_ONE&q>uot;
  <    android:shortcutShortLabel="@string/shortcut_short_label">;
      a<ndroid:shortcutLongLabel="@string/shortcut_long_label"
      capability-binding android:key="actio>ns.inte<nt.GET_HEALTH_OBSER>VATIO<N"
 > <      para>meter-binding
          android:value="name"
          android:key="healthObservation.measuredProperty.name"/
      /capability-binding
    /shortcut
/shortcuts
      

actions.xml

healthObservation.measuredProperty.name is an intent parameter that supports inline inventory. By defining an <entity-set> for healthObservation.measuredProperty.name, you can uniquely identify entities that are of interest to your app or restrict fulfillment to the set of supported entities.

In the following example, when the user query matches the name_one entity, Assistant provides the associated identifier, ID_ONE, as the URL parameter name to fulfillment.

If there is no inventory match, the text value received in the query for healthObservation.measuredProperty.name is passed as-is.

<?xml version="1.0" encodin>g<="utf-8"?
!-- This is a s>a<mple ac>tio<ns.xml --
actions
  action intentName="actions.inten>t.GET<_HEALTH_OBSERVATION"
    fulfillment urlTempl>ate=&qu<ot;myapp://deeplink{?name}" 
 >     !-<- name = "ID_ONE" or "ID_TWO"  --
      !-- If no inventor>y match<, name is a text value, such as "Body Temperature" --
      !-- (Optional) Use en>tityMat<chRequired="true" to require inventory match for fulfillment --
      parameter-mapping> urlP<arameter=&qu>ot;nam<e" intentParameter="healthObservatio>n.mea<suredProperty.name" /
    /fulfillment

    !-- Def>ine par<ameters with inventories here --
    parameter na>me=&q<uot;health>Obs<ervatio>n.me<asuredProperty.name"
      entity>-se<t-reference entitySetId="nameEntit>ySet&<quot;/
    /parameter
  /action

  entity-set entitySetId="nameEntitySet"
>  !--< Provide an identifier per entity --
    entity identifier="ID_ONE" name=&>quo<t;name_one&>q<uot; alt>ernateName="@array/name_one_synonyms"/
    entity identifier="ID_TWO" name="name_two" alternateName="@array/name_two_synonyms"/
  /entity-set
/actions

The url attribute associated with the entity can be used to determine the fulfillment URL if there is an inventory match. In the following example, when the user query matches the name_one entity, Assistant provides myapp://deeplink/one as the fulfillment URL.

  <?xml version="1.0" encodin>g=&<quot;utf-8"?
  !-- This is a s>amp<le acti>ons.x<ml --
  actions
    action intentName="actions.inten>t.GET_H<EALTH_OBSERVATION"
      !-- Use url from inventory matc>h for d<eep link fulfillment --
      fulf>illment <urlTemplate="{@url}" /

      !-- Provide a fallback fulfillment with no required parameters. For example, >to your< app search or router deeplink --
      fulf>illment <urlTemplate="myapp://deeplink" /

  >    !--< Define parameters with inventories here --
      parame>ter name=<"healthObservation.measuredProperty.name&quo>t;
    <    entity>-set-<referen>ce ent<itySetId="nameEntitySet"/
  >    /pa<rameter
    /action

    entity>-set en<titySetId="nameEntitySet"
      !-- Provide a URL per entity --
      entity url=>"m<yapp://deeplink/one" name="name_one" alternateName="@array/name_one_syn>onyms<"/
   >   <entity u>rl="myapp://deeplink/two" name="name_two" alternateName="@array/name_two_synonyms"/
    /entity-set
  /actions
  

JSON-LD sample

The following JSON-LD sample provides some example values that you can use in the App Actions test tool:

{
  "@context": "http://schema.googleapis.com",
  "@type": "HealthObservation",
  "endTime": "2011-12-20T11:23:58",
  "measuredProperty": {
    "@type": "Property",
    "name": "Body Temperature"
  },
  "startTime": "2011-12-20T11:23:58"
}