search_service.proto 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  1. // Copyright 2021 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.retail.v2alpha;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/cloud/retail/v2alpha/common.proto";
  21. import "google/cloud/retail/v2alpha/product.proto";
  22. import "google/protobuf/field_mask.proto";
  23. import "google/protobuf/struct.proto";
  24. option csharp_namespace = "Google.Cloud.Retail.V2Alpha";
  25. option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2alpha;retail";
  26. option java_multiple_files = true;
  27. option java_outer_classname = "SearchServiceProto";
  28. option java_package = "com.google.cloud.retail.v2alpha";
  29. option objc_class_prefix = "RETAIL";
  30. option php_namespace = "Google\\Cloud\\Retail\\V2alpha";
  31. option ruby_package = "Google::Cloud::Retail::V2alpha";
  32. // Service for search.
  33. //
  34. // This feature is only available for users who have Retail Search enabled.
  35. // Please enable Retail Search on Cloud Console before using this feature.
  36. service SearchService {
  37. option (google.api.default_host) = "retail.googleapis.com";
  38. option (google.api.oauth_scopes) =
  39. "https://www.googleapis.com/auth/cloud-platform";
  40. // Performs a search.
  41. //
  42. // This feature is only available for users who have Retail Search enabled.
  43. // Please enable Retail Search on Cloud Console before using this feature.
  44. rpc Search(SearchRequest) returns (SearchResponse) {
  45. option (google.api.http) = {
  46. post: "/v2alpha/{placement=projects/*/locations/*/catalogs/*/placements/*}:search"
  47. body: "*"
  48. additional_bindings {
  49. post: "/v2alpha/{placement=projects/*/locations/*/catalogs/*/servingConfigs/*}:search"
  50. body: "*"
  51. }
  52. };
  53. }
  54. }
  55. // Request message for
  56. // [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search]
  57. // method.
  58. message SearchRequest {
  59. // A facet specification to perform faceted search.
  60. message FacetSpec {
  61. // Specifies how a facet is computed.
  62. message FacetKey {
  63. // Required. Supported textual and numerical facet keys in
  64. // [Product][google.cloud.retail.v2alpha.Product] object, over which the
  65. // facet values are computed. Facet key is case-sensitive.
  66. //
  67. // Allowed facet keys when
  68. // [FacetKey.query][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.query]
  69. // is not specified:
  70. //
  71. // * textual_field =
  72. // * "brands"
  73. // * "categories"
  74. // * "genders"
  75. // * "ageGroups"
  76. // * "availability"
  77. // * "colorFamilies"
  78. // * "colors"
  79. // * "sizes"
  80. // * "materials"
  81. // * "patterns"
  82. // * "conditions"
  83. // * "attributes.key"
  84. // * "pickupInStore"
  85. // * "shipToStore"
  86. // * "sameDayDelivery"
  87. // * "nextDayDelivery"
  88. // * "customFulfillment1"
  89. // * "customFulfillment2"
  90. // * "customFulfillment3"
  91. // * "customFulfillment4"
  92. // * "customFulfillment5"
  93. // * "inventory(place_id,attributes.key)"
  94. //
  95. // * numerical_field =
  96. // * "price"
  97. // * "discount"
  98. // * "rating"
  99. // * "ratingCount"
  100. // * "attributes.key"
  101. // * "inventory(place_id,price)"
  102. // * "inventory(place_id,original_price)"
  103. // * "inventory(place_id,attributes.key)"
  104. string key = 1 [(google.api.field_behavior) = REQUIRED];
  105. // Set only if values should be bucketized into intervals. Must be set
  106. // for facets with numerical values. Must not be set for facet with text
  107. // values. Maximum number of intervals is 30.
  108. repeated Interval intervals = 2;
  109. // Only get facet for the given restricted values. For example, when using
  110. // "pickupInStore" as key and set restricted values to
  111. // ["store123", "store456"], only facets for "store123" and "store456" are
  112. // returned. Only supported on predefined textual fields, custom textual
  113. // attributes and fulfillments. Maximum is 20.
  114. //
  115. // Must be set for the fulfillment facet keys:
  116. //
  117. // * pickupInStore
  118. //
  119. // * shipToStore
  120. //
  121. // * sameDayDelivery
  122. //
  123. // * nextDayDelivery
  124. //
  125. // * customFulfillment1
  126. //
  127. // * customFulfillment2
  128. //
  129. // * customFulfillment3
  130. //
  131. // * customFulfillment4
  132. //
  133. // * customFulfillment5
  134. repeated string restricted_values = 3;
  135. // Only get facet values that start with the given string prefix. For
  136. // example, suppose "categories" has three values "Women > Shoe",
  137. // "Women > Dress" and "Men > Shoe". If set "prefixes" to "Women", the
  138. // "categories" facet will give only "Women > Shoe" and "Women > Dress".
  139. // Only supported on textual fields. Maximum is 10.
  140. repeated string prefixes = 8;
  141. // Only get facet values that contains the given strings. For example,
  142. // suppose "categories" has three values "Women > Shoe",
  143. // "Women > Dress" and "Men > Shoe". If set "contains" to "Shoe", the
  144. // "categories" facet will give only "Women > Shoe" and "Men > Shoe".
  145. // Only supported on textual fields. Maximum is 10.
  146. repeated string contains = 9;
  147. // True to make facet keys case insensitive when getting faceting
  148. // values with prefixes or contains; false otherwise.
  149. bool case_insensitive = 10;
  150. // The order in which
  151. // [SearchResponse.Facet.values][google.cloud.retail.v2alpha.SearchResponse.Facet.values]
  152. // are returned.
  153. //
  154. // Allowed values are:
  155. //
  156. // * "count desc", which means order by
  157. // [SearchResponse.Facet.values.count][google.cloud.retail.v2alpha.SearchResponse.Facet.FacetValue.count]
  158. // descending.
  159. //
  160. // * "value desc", which means order by
  161. // [SearchResponse.Facet.values.value][google.cloud.retail.v2alpha.SearchResponse.Facet.FacetValue.value]
  162. // descending.
  163. // Only applies to textual facets.
  164. //
  165. // If not set, textual values are sorted in [natural
  166. // order](https://en.wikipedia.org/wiki/Natural_sort_order); numerical
  167. // intervals are sorted in the order given by
  168. // [FacetSpec.FacetKey.intervals][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.intervals];
  169. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  170. // are sorted in the order given by
  171. // [FacetSpec.FacetKey.restricted_values][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.restricted_values].
  172. string order_by = 4;
  173. // The query that is used to compute facet for the given facet key.
  174. // When provided, it will override the default behavior of facet
  175. // computation. The query syntax is the same as a filter expression. See
  176. // [SearchRequest.filter][google.cloud.retail.v2alpha.SearchRequest.filter]
  177. // for detail syntax and limitations. Notice that there is no limitation
  178. // on
  179. // [FacetKey.key][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.key]
  180. // when query is specified.
  181. //
  182. // In the response,
  183. // [SearchResponse.Facet.values.value][google.cloud.retail.v2alpha.SearchResponse.Facet.FacetValue.value]
  184. // will be always "1" and
  185. // [SearchResponse.Facet.values.count][google.cloud.retail.v2alpha.SearchResponse.Facet.FacetValue.count]
  186. // will be the number of results that match the query.
  187. //
  188. // For example, you can set a customized facet for "shipToStore",
  189. // where
  190. // [FacetKey.key][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.key]
  191. // is "customizedShipToStore", and
  192. // [FacetKey.query][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.query]
  193. // is "availability: ANY(\"IN_STOCK\") AND shipToStore: ANY(\"123\")".
  194. // Then the facet will count the products that are both in stock and ship
  195. // to store "123".
  196. string query = 5;
  197. // Returns the min and max value for each numerical facet intervals.
  198. // Ignored for textual facets.
  199. bool return_min_max = 11;
  200. }
  201. // Required. The facet key specification.
  202. FacetKey facet_key = 1 [(google.api.field_behavior) = REQUIRED];
  203. // Maximum of facet values that should be returned for this facet. If
  204. // unspecified, defaults to 20. The maximum allowed value is 300. Values
  205. // above 300 will be coerced to 300.
  206. //
  207. // If this field is negative, an INVALID_ARGUMENT is returned.
  208. int32 limit = 2;
  209. // List of keys to exclude when faceting.
  210. //
  211. //
  212. // By default,
  213. // [FacetKey.key][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.key]
  214. // is not excluded from the filter unless it is listed in this field.
  215. //
  216. // Listing a facet key in this field allows its values to appear as facet
  217. // results, even when they are filtered out of search results. Using this
  218. // field does not affect what search results are returned.
  219. //
  220. // For example, suppose there are 100 products with the color facet "Red"
  221. // and 200 products with the color facet "Blue". A query containing the
  222. // filter "colorFamilies:ANY("Red")" and having "colorFamilies" as
  223. // [FacetKey.key][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.key]
  224. // would by default return only "Red" products in the search results, and
  225. // also return "Red" with count 100 as the only color facet. Although there
  226. // are also blue products available, "Blue" would not be shown as an
  227. // available facet value.
  228. //
  229. // If "colorFamilies" is listed in "excludedFilterKeys", then the query
  230. // returns the facet values "Red" with count 100 and "Blue" with count
  231. // 200, because the "colorFamilies" key is now excluded from the filter.
  232. // Because this field doesn't affect search results, the search results
  233. // are still correctly filtered to return only "Red" products.
  234. //
  235. // A maximum of 100 values are allowed. Otherwise, an INVALID_ARGUMENT error
  236. // is returned.
  237. repeated string excluded_filter_keys = 3;
  238. // Enables dynamic position for this facet. If set to true, the position of
  239. // this facet among all facets in the response is determined by Google
  240. // Retail Search. It will be ordered together with dynamic facets if dynamic
  241. // facets is enabled. If set to false, the position of this facet in the
  242. // response will be the same as in the request, and it will be ranked before
  243. // the facets with dynamic position enable and all dynamic facets.
  244. //
  245. // For example, you may always want to have rating facet returned in
  246. // the response, but it's not necessarily to always display the rating facet
  247. // at the top. In that case, you can set enable_dynamic_position to true so
  248. // that the position of rating facet in response will be determined by
  249. // Google Retail Search.
  250. //
  251. // Another example, assuming you have the following facets in the request:
  252. //
  253. // * "rating", enable_dynamic_position = true
  254. //
  255. // * "price", enable_dynamic_position = false
  256. //
  257. // * "brands", enable_dynamic_position = false
  258. //
  259. // And also you have a dynamic facets enable, which will generate a facet
  260. // 'gender'. Then the final order of the facets in the response can be
  261. // ("price", "brands", "rating", "gender") or ("price", "brands", "gender",
  262. // "rating") depends on how Google Retail Search orders "gender" and
  263. // "rating" facets. However, notice that "price" and "brands" will always be
  264. // ranked at 1st and 2nd position since their enable_dynamic_position are
  265. // false.
  266. bool enable_dynamic_position = 4;
  267. }
  268. // The specifications of dynamically generated facets.
  269. message DynamicFacetSpec {
  270. // Enum to control DynamicFacet mode
  271. enum Mode {
  272. // Default value.
  273. MODE_UNSPECIFIED = 0;
  274. // Disable Dynamic Facet.
  275. DISABLED = 1;
  276. // Automatic mode built by Google Retail Search.
  277. ENABLED = 2;
  278. }
  279. // Mode of the DynamicFacet feature.
  280. // Defaults to
  281. // [Mode.DISABLED][google.cloud.retail.v2alpha.SearchRequest.DynamicFacetSpec.Mode.DISABLED]
  282. // if it's unset.
  283. Mode mode = 1;
  284. }
  285. // Boost specification to boost certain items.
  286. message BoostSpec {
  287. // Boost applies to products which match a condition.
  288. message ConditionBoostSpec {
  289. // An expression which specifies a boost condition. The syntax and
  290. // supported fields are the same as a filter expression. See
  291. // [SearchRequest.filter][google.cloud.retail.v2alpha.SearchRequest.filter]
  292. // for detail syntax and limitations.
  293. //
  294. // Examples:
  295. //
  296. // * To boost products with product ID "product_1" or "product_2", and
  297. // color
  298. // "Red" or "Blue":
  299. // * (id: ANY("product_1", "product_2")) AND (colorFamilies:
  300. // ANY("Red","Blue"))
  301. string condition = 1;
  302. // Strength of the condition boost, which should be in [-1, 1]. Negative
  303. // boost means demotion. Default is 0.0.
  304. //
  305. // Setting to 1.0 gives the item a big promotion. However, it does not
  306. // necessarily mean that the boosted item will be the top result at all
  307. // times, nor that other items will be excluded. Results could still be
  308. // shown even when none of them matches the condition. And results that
  309. // are significantly more relevant to the search query can still trump
  310. // your heavily favored but irrelevant items.
  311. //
  312. // Setting to -1.0 gives the item a big demotion. However, results that
  313. // are deeply relevant might still be shown. The item will have an
  314. // upstream battle to get a fairly high ranking, but it is not blocked out
  315. // completely.
  316. //
  317. // Setting to 0.0 means no boost applied. The boosting condition is
  318. // ignored.
  319. float boost = 2;
  320. }
  321. // Condition boost specifications. If a product matches multiple conditions
  322. // in the specifictions, boost scores from these specifications are all
  323. // applied and combined in a non-linear way. Maximum number of
  324. // specifications is 20.
  325. repeated ConditionBoostSpec condition_boost_specs = 1;
  326. // Whether to skip boostspec validation. If this field is set to true,
  327. // invalid
  328. // [BoostSpec.condition_boost_specs][google.cloud.retail.v2alpha.SearchRequest.BoostSpec.condition_boost_specs]
  329. // will be ignored and valid
  330. // [BoostSpec.condition_boost_specs][google.cloud.retail.v2alpha.SearchRequest.BoostSpec.condition_boost_specs]
  331. // will still be applied.
  332. optional bool skip_boost_spec_validation = 2;
  333. }
  334. // Specification to determine under which conditions query expansion should
  335. // occur.
  336. message QueryExpansionSpec {
  337. // Enum describing under which condition query expansion should occur.
  338. enum Condition {
  339. // Unspecified query expansion condition. In this case, server behavior
  340. // defaults to
  341. // [Condition.DISABLED][google.cloud.retail.v2alpha.SearchRequest.QueryExpansionSpec.Condition.DISABLED].
  342. CONDITION_UNSPECIFIED = 0;
  343. // Disabled query expansion. Only the exact search query is used, even if
  344. // [SearchResponse.total_size][google.cloud.retail.v2alpha.SearchResponse.total_size]
  345. // is zero.
  346. DISABLED = 1;
  347. // Automatic query expansion built by Google Retail Search.
  348. AUTO = 3;
  349. }
  350. // The condition under which query expansion should occur. Default to
  351. // [Condition.DISABLED][google.cloud.retail.v2alpha.SearchRequest.QueryExpansionSpec.Condition.DISABLED].
  352. Condition condition = 1;
  353. // Whether to pin unexpanded results. If this field is set to true,
  354. // unexpanded products are always at the top of the search results, followed
  355. // by the expanded results.
  356. bool pin_unexpanded_results = 2;
  357. }
  358. // The specification for personalization.
  359. message PersonalizationSpec {
  360. // The personalization mode of each search request.
  361. enum Mode {
  362. // Default value. In this case, server behavior defaults to
  363. // [Mode.AUTO][google.cloud.retail.v2alpha.SearchRequest.PersonalizationSpec.Mode.AUTO].
  364. MODE_UNSPECIFIED = 0;
  365. // Let CRS decide whether to use personalization.
  366. AUTO = 1;
  367. // Disable personalization.
  368. DISABLED = 2;
  369. }
  370. // Defaults to
  371. // [Mode.AUTO][google.cloud.retail.v2alpha.SearchRequest.PersonalizationSpec.Mode.AUTO].
  372. Mode mode = 1;
  373. }
  374. // The specification for query spell correction.
  375. message SpellCorrectionSpec {
  376. // Enum describing under which mode spell correction should occur.
  377. enum Mode {
  378. // Unspecified spell correction mode. In this case, server behavior
  379. // defaults to
  380. // [Mode.AUTO][google.cloud.retail.v2alpha.SearchRequest.SpellCorrectionSpec.Mode.AUTO].
  381. MODE_UNSPECIFIED = 0;
  382. // Google Retail Search will try to find a spell suggestion if there
  383. // is any and put in the
  384. // [SearchResponse.corrected_query][google.cloud.retail.v2alpha.SearchResponse.corrected_query].
  385. // The spell suggestion will not be used as the search query.
  386. SUGGESTION_ONLY = 1;
  387. // Automatic spell correction built by Google Retail Search. Search will
  388. // be based on the corrected query if found.
  389. AUTO = 2;
  390. }
  391. // The mode under which spell correction should take effect to
  392. // replace the original search query. Default to
  393. // [Mode.AUTO][google.cloud.retail.v2alpha.SearchRequest.SpellCorrectionSpec.Mode.AUTO].
  394. Mode mode = 1;
  395. }
  396. // The relevance threshold of the search results. The higher relevance
  397. // threshold is, the higher relevant results are shown and the less number of
  398. // results are returned.
  399. enum RelevanceThreshold {
  400. // Default value. In this case, server behavior defaults to
  401. // [RelevanceThreshold.HIGH][google.cloud.retail.v2alpha.SearchRequest.RelevanceThreshold.HIGH].
  402. RELEVANCE_THRESHOLD_UNSPECIFIED = 0;
  403. // High relevance threshold.
  404. HIGH = 1;
  405. // Medium relevance threshold.
  406. MEDIUM = 2;
  407. // Low relevance threshold.
  408. LOW = 3;
  409. // Lowest relevance threshold.
  410. LOWEST = 4;
  411. }
  412. // The search mode of each search request.
  413. enum SearchMode {
  414. // Default value. In this case both product search and faceted search will
  415. // be performed. Both [SearchResponse.SearchResult] and
  416. // [SearchResponse.Facet] will be returned.
  417. SEARCH_MODE_UNSPECIFIED = 0;
  418. // Only product search will be performed. The faceted search will be
  419. // disabled.
  420. //
  421. // Only [SearchResponse.SearchResult] will be returned.
  422. // [SearchResponse.Facet] will not be returned, even if
  423. // [SearchRequest.facet_specs][google.cloud.retail.v2alpha.SearchRequest.facet_specs]
  424. // or
  425. // [SearchRequest.dynamic_facet_spec][google.cloud.retail.v2alpha.SearchRequest.dynamic_facet_spec]
  426. // is set.
  427. PRODUCT_SEARCH_ONLY = 1;
  428. // Only faceted search will be performed. The product search will be
  429. // disabled.
  430. //
  431. // When in this mode, one or both of
  432. // [SearchRequest.facet_specs][google.cloud.retail.v2alpha.SearchRequest.facet_specs]
  433. // and
  434. // [SearchRequest.dynamic_facet_spec][google.cloud.retail.v2alpha.SearchRequest.dynamic_facet_spec]
  435. // should be set. Otherwise, an INVALID_ARGUMENT error is returned. Only
  436. // [SearchResponse.Facet] will be returned. [SearchResponse.SearchResult]
  437. // will not be returned.
  438. FACETED_SEARCH_ONLY = 2;
  439. }
  440. // Required. The resource name of the Retail Search serving config, such as
  441. // `projects/*/locations/global/catalogs/default_catalog/servingConfigs/default_serving_config`
  442. // or the name of the legacy placement resource, such as
  443. // `projects/*/locations/global/catalogs/default_catalog/placements/default_search`.
  444. // This field is used to identify the serving configuration name and the set
  445. // of models that will be used to make the search.
  446. string placement = 1 [(google.api.field_behavior) = REQUIRED];
  447. // The branch resource name, such as
  448. // `projects/*/locations/global/catalogs/default_catalog/branches/0`.
  449. //
  450. // Use "default_branch" as the branch ID or leave this field empty, to search
  451. // products under the default branch.
  452. string branch = 2 [
  453. (google.api.resource_reference) = { type: "retail.googleapis.com/Branch" }
  454. ];
  455. // Raw search query.
  456. //
  457. // If this field is empty, the request is considered a category browsing
  458. // request and returned results are based on
  459. // [filter][google.cloud.retail.v2alpha.SearchRequest.filter] and
  460. // [page_categories][google.cloud.retail.v2alpha.SearchRequest.page_categories].
  461. string query = 3;
  462. // Required. A unique identifier for tracking visitors. For example, this
  463. // could be implemented with an HTTP cookie, which should be able to uniquely
  464. // identify a visitor on a single device. This unique identifier should not
  465. // change if the visitor logs in or out of the website.
  466. //
  467. // This should be the same identifier as
  468. // [UserEvent.visitor_id][google.cloud.retail.v2alpha.UserEvent.visitor_id].
  469. //
  470. // The field must be a UTF-8 encoded string with a length limit of 128
  471. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  472. string visitor_id = 4 [(google.api.field_behavior) = REQUIRED];
  473. // User information.
  474. UserInfo user_info = 5;
  475. // Maximum number of [Product][google.cloud.retail.v2alpha.Product]s to
  476. // return. If unspecified, defaults to a reasonable value. The maximum allowed
  477. // value is 120. Values above 120 will be coerced to 120.
  478. //
  479. // If this field is negative, an INVALID_ARGUMENT is returned.
  480. int32 page_size = 7;
  481. // A page token
  482. // [SearchResponse.next_page_token][google.cloud.retail.v2alpha.SearchResponse.next_page_token],
  483. // received from a previous
  484. // [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search]
  485. // call. Provide this to retrieve the subsequent page.
  486. //
  487. // When paginating, all other parameters provided to
  488. // [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search]
  489. // must match the call that provided the page token. Otherwise, an
  490. // INVALID_ARGUMENT error is returned.
  491. string page_token = 8;
  492. // A 0-indexed integer that specifies the current offset (that is, starting
  493. // result location, amongst the
  494. // [Product][google.cloud.retail.v2alpha.Product]s deemed by the API as
  495. // relevant) in search results. This field is only considered if
  496. // [page_token][google.cloud.retail.v2alpha.SearchRequest.page_token] is
  497. // unset.
  498. //
  499. // If this field is negative, an INVALID_ARGUMENT is returned.
  500. int32 offset = 9;
  501. // The filter syntax consists of an expression language for constructing a
  502. // predicate from one or more fields of the products being filtered. Filter
  503. // expression is case-sensitive. See more details at this [user
  504. // guide](https://cloud.google.com/retail/docs/filter-and-order#filter).
  505. //
  506. // If this field is unrecognizable, an INVALID_ARGUMENT is returned.
  507. string filter = 10;
  508. // The default filter that is applied when a user performs a search without
  509. // checking any filters on the search page.
  510. //
  511. // The filter applied to every search request when quality improvement such as
  512. // query expansion is needed. For example, if a query does not have enough
  513. // results, an expanded query with
  514. // [SearchRequest.canonical_filter][google.cloud.retail.v2alpha.SearchRequest.canonical_filter]
  515. // will be returned as a supplement of the original query. This field is
  516. // strongly recommended to achieve high search quality.
  517. //
  518. // See
  519. // [SearchRequest.filter][google.cloud.retail.v2alpha.SearchRequest.filter]
  520. // for more details about filter syntax.
  521. string canonical_filter = 28;
  522. // The order in which products are returned. Products can be ordered by
  523. // a field in an [Product][google.cloud.retail.v2alpha.Product] object. Leave
  524. // it unset if ordered by relevance. OrderBy expression is case-sensitive. See
  525. // more details at this [user
  526. // guide](https://cloud.google.com/retail/docs/filter-and-order#order).
  527. //
  528. // If this field is unrecognizable, an INVALID_ARGUMENT is returned.
  529. string order_by = 11;
  530. // Facet specifications for faceted search. If empty, no facets are returned.
  531. //
  532. // A maximum of 100 values are allowed. Otherwise, an INVALID_ARGUMENT error
  533. // is returned.
  534. repeated FacetSpec facet_specs = 12;
  535. // Deprecated. Refer to https://cloud.google.com/retail/docs/configs#dynamic
  536. // to enable dynamic facets. Do not set this field.
  537. //
  538. // The specification for dynamically generated facets. Notice that only
  539. // textual facets can be dynamically generated.
  540. DynamicFacetSpec dynamic_facet_spec = 21 [deprecated = true];
  541. // Boost specification to boost certain products. See more details at this
  542. // [user guide](https://cloud.google.com/retail/docs/boosting).
  543. //
  544. // Notice that if both
  545. // [ServingConfig.boost_control_ids][google.cloud.retail.v2alpha.ServingConfig.boost_control_ids]
  546. // and
  547. // [SearchRequest.boost_spec][google.cloud.retail.v2alpha.SearchRequest.boost_spec]
  548. // are set, the boost conditions from both places are evaluated. If a search
  549. // request matches multiple boost conditions, the final boost score is equal
  550. // to the sum of the boost scores from all matched boost conditions.
  551. BoostSpec boost_spec = 13;
  552. // The query expansion specification that specifies the conditions under which
  553. // query expansion will occur. See more details at this [user
  554. // guide](https://cloud.google.com/retail/docs/result-size#query_expansion).
  555. QueryExpansionSpec query_expansion_spec = 14;
  556. // The relevance threshold of the search results.
  557. //
  558. // Defaults to
  559. // [RelevanceThreshold.HIGH][google.cloud.retail.v2alpha.SearchRequest.RelevanceThreshold.HIGH],
  560. // which means only the most relevant results are shown, and the least number
  561. // of results are returned. See more details at this [user
  562. // guide](https://cloud.google.com/retail/docs/result-size#relevance_thresholding).
  563. RelevanceThreshold relevance_threshold = 15;
  564. // The keys to fetch and rollup the matching
  565. // [variant][google.cloud.retail.v2alpha.Product.Type.VARIANT]
  566. // [Product][google.cloud.retail.v2alpha.Product]s attributes,
  567. // [FulfillmentInfo][google.cloud.retail.v2alpha.FulfillmentInfo] or
  568. // [LocalInventory][google.cloud.retail.v2alpha.LocalInventory]s attributes.
  569. // The attributes from all the matching
  570. // [variant][google.cloud.retail.v2alpha.Product.Type.VARIANT]
  571. // [Product][google.cloud.retail.v2alpha.Product]s or
  572. // [LocalInventory][google.cloud.retail.v2alpha.LocalInventory]s are merged
  573. // and de-duplicated. Notice that rollup attributes will lead to extra query
  574. // latency. Maximum number of keys is 30.
  575. //
  576. // For [FulfillmentInfo][google.cloud.retail.v2alpha.FulfillmentInfo], a
  577. // fulfillment type and a fulfillment ID must be provided in the format of
  578. // "fulfillmentType.fulfillmentId". E.g., in "pickupInStore.store123",
  579. // "pickupInStore" is fulfillment type and "store123" is the store ID.
  580. //
  581. // Supported keys are:
  582. //
  583. // * colorFamilies
  584. // * price
  585. // * originalPrice
  586. // * discount
  587. // * variantId
  588. // * inventory(place_id,price)
  589. // * inventory(place_id,original_price)
  590. // * inventory(place_id,attributes.key), where key is any key in the
  591. // [Product.local_inventories.attributes][google.cloud.retail.v2alpha.LocalInventory.attributes]
  592. // map.
  593. // * attributes.key, where key is any key in the
  594. // [Product.attributes][google.cloud.retail.v2alpha.Product.attributes] map.
  595. // * pickupInStore.id, where id is any
  596. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  597. // for
  598. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  599. // "pickup-in-store".
  600. // * shipToStore.id, where id is any
  601. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  602. // for
  603. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  604. // "ship-to-store".
  605. // * sameDayDelivery.id, where id is any
  606. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  607. // for
  608. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  609. // "same-day-delivery".
  610. // * nextDayDelivery.id, where id is any
  611. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  612. // for
  613. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  614. // "next-day-delivery".
  615. // * customFulfillment1.id, where id is any
  616. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  617. // for
  618. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  619. // "custom-type-1".
  620. // * customFulfillment2.id, where id is any
  621. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  622. // for
  623. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  624. // "custom-type-2".
  625. // * customFulfillment3.id, where id is any
  626. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  627. // for
  628. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  629. // "custom-type-3".
  630. // * customFulfillment4.id, where id is any
  631. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  632. // for
  633. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  634. // "custom-type-4".
  635. // * customFulfillment5.id, where id is any
  636. // [FulfillmentInfo.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  637. // for
  638. // [FulfillmentInfo.type][google.cloud.retail.v2alpha.FulfillmentInfo.type]
  639. // "custom-type-5".
  640. //
  641. // If this field is set to an invalid value other than these, an
  642. // INVALID_ARGUMENT error is returned.
  643. repeated string variant_rollup_keys = 17;
  644. // The categories associated with a category page. Required for category
  645. // navigation queries to achieve good search quality. The format should be
  646. // the same as
  647. // [UserEvent.page_categories][google.cloud.retail.v2alpha.UserEvent.page_categories];
  648. //
  649. // To represent full path of category, use '>' sign to separate different
  650. // hierarchies. If '>' is part of the category name, please replace it with
  651. // other character(s).
  652. //
  653. // Category pages include special pages such as sales or promotions. For
  654. // instance, a special sale page may have the category hierarchy:
  655. // "pageCategories" : ["Sales > 2017 Black Friday Deals"].
  656. repeated string page_categories = 23;
  657. // The search mode of the search request. If not specified, a single search
  658. // request triggers both product search and faceted search.
  659. SearchMode search_mode = 31;
  660. // The specification for personalization.
  661. PersonalizationSpec personalization_spec = 32;
  662. // The labels applied to a resource must meet the following requirements:
  663. //
  664. // * Each resource can have multiple labels, up to a maximum of 64.
  665. // * Each label must be a key-value pair.
  666. // * Keys have a minimum length of 1 character and a maximum length of 63
  667. // characters and cannot be empty. Values can be empty and have a maximum
  668. // length of 63 characters.
  669. // * Keys and values can contain only lowercase letters, numeric characters,
  670. // underscores, and dashes. All characters must use UTF-8 encoding, and
  671. // international characters are allowed.
  672. // * The key portion of a label must be unique. However, you can use the same
  673. // key with multiple resources.
  674. // * Keys must start with a lowercase letter or international character.
  675. //
  676. // See [Google Cloud
  677. // Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements)
  678. // for more details.
  679. map<string, string> labels = 34;
  680. // The spell correction specification that specifies the mode under
  681. // which spell correction will take effect.
  682. optional SpellCorrectionSpec spell_correction_spec = 35;
  683. }
  684. // Response message for
  685. // [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search]
  686. // method.
  687. message SearchResponse {
  688. // Represents the search results.
  689. message SearchResult {
  690. // [Product.id][google.cloud.retail.v2alpha.Product.id] of the searched
  691. // [Product][google.cloud.retail.v2alpha.Product].
  692. string id = 1;
  693. // The product data snippet in the search response. Only
  694. // [Product.name][google.cloud.retail.v2alpha.Product.name] is guaranteed to
  695. // be populated.
  696. //
  697. // [Product.variants][google.cloud.retail.v2alpha.Product.variants] contains
  698. // the product variants that match the search query. If there are multiple
  699. // product variants matching the query, top 5 most relevant product variants
  700. // are returned and ordered by relevancy.
  701. //
  702. // If relevancy can be deternmined, use
  703. // [matching_variant_fields][google.cloud.retail.v2alpha.SearchResponse.SearchResult.matching_variant_fields]
  704. // to look up matched product variants fields. If relevancy cannot be
  705. // determined, e.g. when searching "shoe" all products in a shoe product can
  706. // be a match, 5 product variants are returned but order is meaningless.
  707. Product product = 2;
  708. // The count of matched
  709. // [variant][google.cloud.retail.v2alpha.Product.Type.VARIANT]
  710. // [Product][google.cloud.retail.v2alpha.Product]s.
  711. int32 matching_variant_count = 3;
  712. // If a [variant][google.cloud.retail.v2alpha.Product.Type.VARIANT]
  713. // [Product][google.cloud.retail.v2alpha.Product] matches the search query,
  714. // this map indicates which [Product][google.cloud.retail.v2alpha.Product]
  715. // fields are matched. The key is the
  716. // [Product.name][google.cloud.retail.v2alpha.Product.name], the value is a
  717. // field mask of the matched [Product][google.cloud.retail.v2alpha.Product]
  718. // fields. If matched attributes cannot be determined, this map will be
  719. // empty.
  720. //
  721. // For example, a key "sku1" with field mask
  722. // "products.color_info" indicates there is a match between
  723. // "sku1" [ColorInfo][google.cloud.retail.v2alpha.ColorInfo] and the query.
  724. map<string, google.protobuf.FieldMask> matching_variant_fields = 4;
  725. // The rollup matching
  726. // [variant][google.cloud.retail.v2alpha.Product.Type.VARIANT]
  727. // [Product][google.cloud.retail.v2alpha.Product] attributes. The key is one
  728. // of the
  729. // [SearchRequest.variant_rollup_keys][google.cloud.retail.v2alpha.SearchRequest.variant_rollup_keys].
  730. // The values are the merged and de-duplicated
  731. // [Product][google.cloud.retail.v2alpha.Product] attributes. Notice that
  732. // the rollup values are respect filter. For example, when filtering by
  733. // "colorFamilies:ANY(\"red\")" and rollup "colorFamilies", only "red" is
  734. // returned.
  735. //
  736. // For textual and numerical attributes, the rollup values is a list of
  737. // string or double values with type
  738. // [google.protobuf.ListValue][google.protobuf.ListValue]. For example, if
  739. // there are two variants with colors "red" and "blue", the rollup values
  740. // are
  741. //
  742. // { key: "colorFamilies"
  743. // value {
  744. // list_value {
  745. // values { string_value: "red" }
  746. // values { string_value: "blue" }
  747. // }
  748. // }
  749. // }
  750. //
  751. // For [FulfillmentInfo][google.cloud.retail.v2alpha.FulfillmentInfo], the
  752. // rollup values is a double value with type
  753. // [google.protobuf.Value][google.protobuf.Value]. For example,
  754. // `{key: "pickupInStore.store1" value { number_value: 10 }}` means a there
  755. // are 10 variants in this product are available in the store "store1".
  756. map<string, google.protobuf.Value> variant_rollup_values = 5;
  757. }
  758. // A facet result.
  759. message Facet {
  760. // A facet value which contains value names and their count.
  761. message FacetValue {
  762. // A facet value which contains values.
  763. oneof facet_value {
  764. // Text value of a facet, such as "Black" for facet "colorFamilies".
  765. string value = 1;
  766. // Interval value for a facet, such as [10, 20) for facet "price".
  767. Interval interval = 2;
  768. }
  769. // Number of items that have this facet value.
  770. int64 count = 3;
  771. // The minimum value in the
  772. // [FacetValue.interval][google.cloud.retail.v2alpha.SearchResponse.Facet.FacetValue.interval].
  773. // Only supported on numerical facets and returned if
  774. // [SearchRequest.FacetSpec.FacetKey.return_min_max][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.return_min_max]
  775. // is true.
  776. double min_value = 5;
  777. // The maximum value in the
  778. // [FacetValue.interval][google.cloud.retail.v2alpha.SearchResponse.Facet.FacetValue.interval].
  779. // Only supported on numerical facets and returned if
  780. // [SearchRequest.FacetSpec.FacetKey.return_min_max][google.cloud.retail.v2alpha.SearchRequest.FacetSpec.FacetKey.return_min_max]
  781. // is true.
  782. double max_value = 6;
  783. }
  784. // The key for this facet. E.g., "colorFamilies" or "price" or
  785. // "attributes.attr1".
  786. string key = 1;
  787. // The facet values for this field.
  788. repeated FacetValue values = 2;
  789. // Whether the facet is dynamically generated.
  790. bool dynamic_facet = 3;
  791. }
  792. // Information describing query expansion including whether expansion has
  793. // occurred.
  794. message QueryExpansionInfo {
  795. // Bool describing whether query expansion has occurred.
  796. bool expanded_query = 1;
  797. // Number of pinned results. This field will only be set when expansion
  798. // happens and
  799. // [SearchRequest.QueryExpansionSpec.pin_unexpanded_results][google.cloud.retail.v2alpha.SearchRequest.QueryExpansionSpec.pin_unexpanded_results]
  800. // is set to true.
  801. int64 pinned_result_count = 2;
  802. }
  803. // A list of matched items. The order represents the ranking.
  804. repeated SearchResult results = 1;
  805. // Results of facets requested by user.
  806. repeated Facet facets = 2;
  807. // The estimated total count of matched items irrespective of pagination. The
  808. // count of [results][google.cloud.retail.v2alpha.SearchResponse.results]
  809. // returned by pagination may be less than the
  810. // [total_size][google.cloud.retail.v2alpha.SearchResponse.total_size] that
  811. // matches.
  812. int32 total_size = 3;
  813. // Contains the spell corrected query, if found. If the spell correction type
  814. // is AUTOMATIC, then the search results are based on corrected_query.
  815. // Otherwise the original query is used for search.
  816. string corrected_query = 4;
  817. // A unique search token. This should be included in the
  818. // [UserEvent][google.cloud.retail.v2alpha.UserEvent] logs resulting from this
  819. // search, which enables accurate attribution of search model performance.
  820. string attribution_token = 5;
  821. // A token that can be sent as
  822. // [SearchRequest.page_token][google.cloud.retail.v2alpha.SearchRequest.page_token]
  823. // to retrieve the next page. If this field is omitted, there are no
  824. // subsequent pages.
  825. string next_page_token = 6;
  826. // Query expansion information for the returned results.
  827. QueryExpansionInfo query_expansion_info = 7;
  828. // The URI of a customer-defined redirect page. If redirect action is
  829. // triggered, no search is performed, and only
  830. // [redirect_uri][google.cloud.retail.v2alpha.SearchResponse.redirect_uri] and
  831. // [attribution_token][google.cloud.retail.v2alpha.SearchResponse.attribution_token]
  832. // are set in the response.
  833. string redirect_uri = 10;
  834. // The fully qualified resource name of applied
  835. // [controls](https://cloud.google.com/retail/docs/serving-control-rules).
  836. repeated string applied_controls = 12;
  837. // The invalid
  838. // [SearchRequest.BoostSpec.condition_boost_specs][google.cloud.retail.v2alpha.SearchRequest.BoostSpec.condition_boost_specs]
  839. // that are not applied during serving.
  840. repeated SearchRequest.BoostSpec.ConditionBoostSpec
  841. invalid_condition_boost_specs = 14;
  842. }