user_event.proto 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.discoveryengine.v1beta;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/discoveryengine/v1beta/common.proto";
  19. import "google/protobuf/duration.proto";
  20. import "google/protobuf/timestamp.proto";
  21. option csharp_namespace = "Google.Cloud.DiscoveryEngine.V1Beta";
  22. option go_package = "google.golang.org/genproto/googleapis/cloud/discoveryengine/v1beta;discoveryengine";
  23. option java_multiple_files = true;
  24. option java_outer_classname = "UserEventProto";
  25. option java_package = "com.google.cloud.discoveryengine.v1beta";
  26. option objc_class_prefix = "DISCOVERYENGINE";
  27. option php_namespace = "Google\\Cloud\\DiscoveryEngine\\V1beta";
  28. option ruby_package = "Google::Cloud::DiscoveryEngine::V1beta";
  29. // UserEvent captures all metadata information DiscoveryEngine API needs to know
  30. // about how end users interact with customers' website.
  31. message UserEvent {
  32. // Required. User event type. Allowed values are:
  33. //
  34. // Generic values:
  35. // * `search`: Search for Documents.
  36. // * `view-item`: Detailed page view of a Document.
  37. // * `view-item-list`: View of a panel or ordered list of Documents.
  38. // * `view-home-page`: View of the home page.
  39. // * `view-category-page`: View of a category page, e.g. Home > Men > Jeans
  40. //
  41. // Retail-related values:
  42. // * `add-to-cart`: Add an item(s) to cart, e.g. in Retail online shopping
  43. // * `purchase`: Purchase an item(s)
  44. //
  45. // Media-related values:
  46. // * `media-play`: Start/resume watching a video, playing a song, etc.
  47. // * `media-complete`: Finished or stopped midway through a video, song, etc.
  48. string event_type = 1 [(google.api.field_behavior) = REQUIRED];
  49. // Required. A unique identifier for tracking visitors.
  50. //
  51. // For example, this could be implemented with an HTTP cookie, which should be
  52. // able to uniquely identify a visitor on a single device. This unique
  53. // identifier should not change if the visitor log in/out of the website.
  54. //
  55. // Do not set the field to the same fixed ID for different users. This mixes
  56. // the event history of those users together, which results in degraded model
  57. // quality.
  58. //
  59. // The field must be a UTF-8 encoded string with a length limit of 128
  60. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  61. //
  62. // The field should not contain PII or user-data. We recommend to use Google
  63. // Analytics [Client
  64. // ID](https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#clientId)
  65. // for this field.
  66. string user_pseudo_id = 2 [(google.api.field_behavior) = REQUIRED];
  67. // Only required for
  68. // [UserEventService.ImportUserEvents][google.cloud.discoveryengine.v1beta.UserEventService.ImportUserEvents]
  69. // method. Timestamp of when the user event happened.
  70. google.protobuf.Timestamp event_time = 3;
  71. // Information about the end user.
  72. UserInfo user_info = 4;
  73. // Should set to true if the request is made directly from the end user, in
  74. // which case the
  75. // [UserEvent.user_info.user_agent][google.cloud.discoveryengine.v1beta.UserInfo.user_agent]
  76. // can be populated from the HTTP request.
  77. //
  78. // This flag should be set only if the API request is made directly from the
  79. // end user such as a mobile app (and not if a gateway or a server is
  80. // processing and pushing the user events).
  81. //
  82. // This should not be set when using the JavaScript tag in
  83. // [UserEventService.CollectUserEvent][google.cloud.discoveryengine.v1beta.UserEventService.CollectUserEvent].
  84. bool direct_user_request = 5;
  85. // A unique identifier for tracking a visitor session with a length limit of
  86. // 128 bytes. A session is an aggregation of an end user behavior in a time
  87. // span.
  88. //
  89. // A general guideline to populate the sesion_id:
  90. // 1. If user has no activity for 30 min, a new session_id should be assigned.
  91. // 2. The session_id should be unique across users, suggest use uuid or add
  92. // [UserEvent.user_pseudo_id][google.cloud.discoveryengine.v1beta.UserEvent.user_pseudo_id]
  93. // as prefix.
  94. string session_id = 6;
  95. // Page metadata such as categories and other critical information for certain
  96. // event types such as `view-category-page`.
  97. PageInfo page_info = 7;
  98. // Token to attribute an API response to user action(s) to trigger the event.
  99. //
  100. // Highly recommended for user events that are the result of
  101. // [PredictionService.Predict][]. This field enables accurate attribution of
  102. // recommendation model performance.
  103. //
  104. // The value must be one of:
  105. //
  106. // * [PredictResponse.attribution_token][] for events that are the result of
  107. // [PredictionService.Predict][].
  108. // * [SearchResponse.attribution_token][google.cloud.discoveryengine.v1beta.SearchResponse.attribution_token] for events that are the result of
  109. // [SearchService.Search][].
  110. // * [CompleteQueryResponse.attribution_token][] for events that are the
  111. // result of [SearchService.CompleteQuery][].
  112. //
  113. // This token enables us to accurately attribute page view or conversion
  114. // completion back to the event and the particular predict response containing
  115. // this clicked/purchased product. If user clicks on product K in the
  116. // recommendation results, pass [PredictResponse.attribution_token][] as a URL
  117. // parameter to product K's page. When recording events on product K's page,
  118. // log the [PredictResponse.attribution_token][] to this field.
  119. string attribution_token = 8;
  120. // The filter syntax consists of an expression language for constructing a
  121. // predicate from one or more fields of the documents being filtered.
  122. //
  123. // One example is for `search` events, the associated
  124. // [SearchService.SearchRequest][] may contain a filter expression in
  125. // [SearchService.SearchRequest.filter][] conforming to
  126. // https://google.aip.dev/160#filtering.
  127. //
  128. // Similarly, for `view-item-list` events that are generated from a
  129. // [PredictionService.PredictRequest][], this field may be populated directly
  130. // from [PredictionService.PredictRequest.filter][] conforming to
  131. // https://google.aip.dev/160#filtering.
  132. //
  133. // The value must be a UTF-8 encoded string with a length limit of 1,000
  134. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  135. string filter = 9;
  136. // List of Documents associated with this user event.
  137. //
  138. // This field is optional except for the following event types:
  139. //
  140. // * `view-item`
  141. // * `add-to-cart`
  142. // * `purchase`
  143. // * `media-play`
  144. // * `media-complete`
  145. //
  146. // In a `search` event, this field represents the documents returned to the
  147. // end user on the current page (the end user may have not finished browsing
  148. // the whole page yet). When a new page is returned to the end user, after
  149. // pagination/filtering/ordering even for the same query, a new `search` event
  150. // with different
  151. // [UserEvent.documents][google.cloud.discoveryengine.v1beta.UserEvent.documents]
  152. // is desired.
  153. repeated DocumentInfo documents = 10;
  154. // Panel metadata associated with this user event.
  155. PanelInfo panel = 11;
  156. // Search API details related to the event.
  157. //
  158. // This field should be set for `search` event.
  159. SearchInfo search_info = 12;
  160. // CompleteQuery API details related to the event.
  161. //
  162. // This field should be set for `search` event when autocomplete function is
  163. // enabled and the user clicks a suggestion for search.
  164. CompletionInfo completion_info = 13;
  165. // The transaction metadata (if any) associated with this user event.
  166. TransactionInfo transaction_info = 14;
  167. // A list of identifiers for the independent experiment groups this user event
  168. // belongs to. This is used to distinguish between user events associated with
  169. // different experiment setups on the customer end.
  170. repeated string tag_ids = 15;
  171. // The promotion IDs if this is an event associated with promotions.
  172. // Currently, this field is restricted to at most one ID.
  173. repeated string promotion_ids = 16;
  174. // Extra user event features to include in the recommendation model.
  175. // These attributes must NOT contain data that needs to be parsed or processed
  176. // further, e.g. JSON or other encodings.
  177. //
  178. // If you provide custom attributes for ingested user events, also include
  179. // them in the user events that you associate with prediction requests. Custom
  180. // attribute formatting must be consistent between imported events and events
  181. // provided with prediction requests. This lets the DiscoveryEngine API use
  182. // those custom attributes when training models and serving predictions, which
  183. // helps improve recommendation quality.
  184. //
  185. // This field needs to pass all below criteria, otherwise an INVALID_ARGUMENT
  186. // error is returned:
  187. //
  188. // * The key must be a UTF-8 encoded string with a length limit of 5,000
  189. // characters.
  190. // * For text attributes, at most 400 values are allowed. Empty values are not
  191. // allowed. Each value must be a UTF-8 encoded string with a length limit of
  192. // 256 characters.
  193. // * For number attributes, at most 400 values are allowed.
  194. //
  195. // For product recommendations, an example of extra user information is
  196. // traffic_channel, which is how a user arrives at the site. Users can arrive
  197. // at the site by coming to the site directly, coming through Google
  198. // search, or in other ways.
  199. map<string, CustomAttribute> attributes = 17;
  200. // Media-specific info.
  201. MediaInfo media_info = 18;
  202. }
  203. // Detailed page information.
  204. message PageInfo {
  205. // A unique ID of a web page view.
  206. //
  207. // This should be kept the same for all user events triggered from the same
  208. // pageview. For example, an item detail page view could trigger multiple
  209. // events as the user is browsing the page. The `pageViewId` property should
  210. // be kept the same for all these events so that they can be grouped together
  211. // properly.
  212. //
  213. // When using the client side event reporting with JavaScript pixel and Google
  214. // Tag Manager, this value is filled in automatically.
  215. string pageview_id = 1;
  216. // The most specific category associated with a category page.
  217. //
  218. // To represent full path of category, use '>' sign to separate different
  219. // hierarchies. If '>' is part of the category name, please replace it with
  220. // other character(s).
  221. //
  222. // Category pages include special pages such as sales or promotions. For
  223. // instance, a special sale page may have the category hierarchy:
  224. // "pageCategory" : "Sales > 2017 Black Friday Deals".
  225. //
  226. // Required for `view-category-page` events. Other event types should not set
  227. // this field. Otherwise, an INVALID_ARGUMENT error is returned.
  228. string page_category = 2;
  229. // Complete URL (window.location.href) of the user's current page.
  230. //
  231. // When using the client side event reporting with JavaScript pixel and Google
  232. // Tag Manager, this value is filled in automatically. Maximum length 5,000
  233. // characters.
  234. string uri = 3;
  235. // The referrer URL of the current page.
  236. //
  237. // When using the client side event reporting with JavaScript pixel and Google
  238. // Tag Manager, this value is filled in automatically. However, some browser
  239. // privacy restrictions may cause this field to be empty.
  240. string referrer_uri = 4;
  241. }
  242. // Detailed search information.
  243. message SearchInfo {
  244. // The user's search query.
  245. //
  246. // See
  247. // [SearchRequest.query][google.cloud.discoveryengine.v1beta.SearchRequest.query]
  248. // for definition.
  249. //
  250. // The value must be a UTF-8 encoded string with a length limit of 5,000
  251. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  252. //
  253. // At least one of
  254. // [search_query][google.cloud.discoveryengine.v1beta.SearchInfo.search_query]
  255. // or [page_categories][] is required for `search` events. Other event types
  256. // should not set this field. Otherwise, an INVALID_ARGUMENT error is
  257. // returned.
  258. string search_query = 1;
  259. // The order in which products are returned, if applicable.
  260. //
  261. // See
  262. // [SearchRequest.order_by][google.cloud.discoveryengine.v1beta.SearchRequest.order_by]
  263. // for definition and syntax.
  264. //
  265. // The value must be a UTF-8 encoded string with a length limit of 1,000
  266. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  267. //
  268. // This can only be set for `search` events. Other event types should not set
  269. // this field. Otherwise, an INVALID_ARGUMENT error is returned.
  270. string order_by = 2;
  271. // An integer that specifies the current offset for pagination (the 0-indexed
  272. // starting location, amongst the products deemed by the API as relevant).
  273. //
  274. // See
  275. // [SearchRequest.offset][google.cloud.discoveryengine.v1beta.SearchRequest.offset]
  276. // for definition.
  277. //
  278. // If this field is negative, an INVALID_ARGUMENT is returned.
  279. //
  280. // This can only be set for `search` events. Other event types should not set
  281. // this field. Otherwise, an INVALID_ARGUMENT error is returned.
  282. optional int32 offset = 3;
  283. }
  284. // Detailed completion information including completion attribution token and
  285. // clicked completion info.
  286. message CompletionInfo {
  287. // End user selected [CompleteQueryResponse.CompletionResult.suggestion][].
  288. string selected_suggestion = 1;
  289. // End user selected [CompleteQueryResponse.CompletionResult.suggestion][]
  290. // position, starting from 0.
  291. int32 selected_position = 2;
  292. }
  293. // A transaction represents the entire purchase transaction.
  294. message TransactionInfo {
  295. // Required. Total non-zero value associated with the transaction. This value
  296. // may include shipping, tax, or other adjustments to the total value that you
  297. // want to include.
  298. optional float value = 1 [(google.api.field_behavior) = REQUIRED];
  299. // Required. Currency code. Use three-character ISO-4217 code.
  300. string currency = 2 [(google.api.field_behavior) = REQUIRED];
  301. // The transaction ID with a length limit of 128 characters.
  302. string transaction_id = 3;
  303. // All the taxes associated with the transaction.
  304. optional float tax = 4;
  305. // All the costs associated with the products. These can be manufacturing
  306. // costs, shipping expenses not borne by the end user, or any other costs,
  307. // such that:
  308. //
  309. // * Profit =
  310. // [value][google.cloud.discoveryengine.v1beta.TransactionInfo.value] -
  311. // [tax][google.cloud.discoveryengine.v1beta.TransactionInfo.tax] -
  312. // [cost][google.cloud.discoveryengine.v1beta.TransactionInfo.cost]
  313. optional float cost = 5;
  314. // The total discount(s) value applied to this transaction.
  315. // This figure should be excluded from
  316. // [TransactionInfo.value][google.cloud.discoveryengine.v1beta.TransactionInfo.value]
  317. //
  318. // For example, if a user paid
  319. // [TransactionInfo.value][google.cloud.discoveryengine.v1beta.TransactionInfo.value]
  320. // amount, then nominal (pre-discount) value of the transaction is the sum of
  321. // [TransactionInfo.value][google.cloud.discoveryengine.v1beta.TransactionInfo.value]
  322. // and
  323. // [TransactionInfo.discount_value][google.cloud.discoveryengine.v1beta.TransactionInfo.discount_value]
  324. //
  325. // This means that profit is calculated the same way, regardless of the
  326. // discount value, and that
  327. // [TransactionInfo.discount_value][google.cloud.discoveryengine.v1beta.TransactionInfo.discount_value]
  328. // can be larger than
  329. // [TransactionInfo.value][google.cloud.discoveryengine.v1beta.TransactionInfo.value]:
  330. //
  331. // * Profit =
  332. // [value][google.cloud.discoveryengine.v1beta.TransactionInfo.value] -
  333. // [tax][google.cloud.discoveryengine.v1beta.TransactionInfo.tax] -
  334. // [cost][google.cloud.discoveryengine.v1beta.TransactionInfo.cost]
  335. optional float discount_value = 6;
  336. }
  337. // Detailed document information associated with a user event.
  338. message DocumentInfo {
  339. // A required descriptor of the associated Document.
  340. //
  341. // * If [id][google.cloud.discoveryengine.v1beta.DocumentInfo.id] is
  342. // specified, then the default values for <location>, <data_store_id>, and
  343. // <branch_id> are used when annotating with the stored Document.
  344. //
  345. // * If [name][google.cloud.discoveryengine.v1beta.DocumentInfo.name] is
  346. // specified, then the provided values (default values allowed) for
  347. // <location>, <data_store_id>, and <branch_id> are used when annotating with
  348. // the stored Document.
  349. oneof document_descriptor {
  350. // Required. The Document resource ID.
  351. string id = 1 [(google.api.field_behavior) = REQUIRED];
  352. // Required. The Document resource full name, of the form:
  353. // projects/<project_id>/locations/<location>/dataStores/<data_store_id>/branches/<branch_id>/documents/<document_id>
  354. string name = 2 [
  355. (google.api.field_behavior) = REQUIRED,
  356. (google.api.resource_reference) = {
  357. type: "discoveryengine.googleapis.com/Document"
  358. }
  359. ];
  360. }
  361. // Quantity of the Document associated with the user event. Defaults to 1.
  362. //
  363. // For example, this field will be 2 if two quantities of the same Document
  364. // are involved in a `add-to-cart` event.
  365. //
  366. // Required for events of the following event types:
  367. // * `add-to-cart`
  368. // * `purchase`
  369. optional int32 quantity = 3;
  370. // The promotion IDs associated with this Document.
  371. // Currently, this field is restricted to at most one ID.
  372. repeated string promotion_ids = 4;
  373. }
  374. // Detailed panel information associated with a user event.
  375. message PanelInfo {
  376. // Required. The panel ID.
  377. string panel_id = 2 [(google.api.field_behavior) = REQUIRED];
  378. // The display name of the panel.
  379. string display_name = 3;
  380. // The ordered position of the panel, if shown to the user with other panels.
  381. // If set, then
  382. // [total_panels][google.cloud.discoveryengine.v1beta.PanelInfo.total_panels]
  383. // must also be set.
  384. optional int32 panel_position = 4;
  385. // The total number of panels, including this one, shown to the user.
  386. // Must be set if
  387. // [panel_position][google.cloud.discoveryengine.v1beta.PanelInfo.panel_position]
  388. // is set.
  389. optional int32 total_panels = 5;
  390. }
  391. // Media-specific user event information.
  392. message MediaInfo {
  393. // The media progress time in seconds, if applicable.
  394. // For example, if the end user has finished 90 seconds of a playback video,
  395. // then [MediaInfo.media_progress_duration.seconds][Duration.seconds] should
  396. // be set to 90.
  397. google.protobuf.Duration media_progress_duration = 1;
  398. // Media progress should be computed using only the media_progress_duration
  399. // relative to the media total length.
  400. //
  401. // This value must be between [0, 1.0] inclusive.
  402. //
  403. // If this is not a playback or the progress cannot be computed (e.g. ongoing
  404. // livestream), this field should be unset.
  405. optional float media_progress_percentage = 2;
  406. }