Action Feed

  • The Action feed spec is defined in protobuffer format but JSON format is recommended for uploads.

  • You can find JSON sample feeds for reference.

  • The ActionFeed contains repeated ActionDetail messages.

  • The ActionDetail includes entity_id, link_id, a deep link url, and repeated Action messages.

Definitions

ActionFeed Definition

message ActionFeed {
  repeated ActionDetail data = 1;
}

ActionDetail Definition

message ActionDetail {
  string entity_id = 2;
  string link_id = 3;

  // Deep link for action detail
  string url = 4;
  repeated Action actions = 1;
}