Action Feed

  • The Action feed specification uses a protobuffer format but recommends using JSON for uploading.

  • Action feeds consist of multiple ActionDetail messages within an ActionFeed message.

  • Each ActionDetail includes an entity ID, link ID, URL, and a list of actions.

  • Refer to the provided JSON sample feeds for guidance on formatting and content.

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;
}