product.proto 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  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.v2beta;
  16. import "google/api/annotations.proto";
  17. import "google/api/field_behavior.proto";
  18. import "google/api/resource.proto";
  19. import "google/cloud/retail/v2beta/common.proto";
  20. import "google/protobuf/duration.proto";
  21. import "google/protobuf/field_mask.proto";
  22. import "google/protobuf/timestamp.proto";
  23. import "google/protobuf/wrappers.proto";
  24. option csharp_namespace = "Google.Cloud.Retail.V2Beta";
  25. option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2beta;retail";
  26. option java_multiple_files = true;
  27. option java_outer_classname = "ProductProto";
  28. option java_package = "com.google.cloud.retail.v2beta";
  29. option objc_class_prefix = "RETAIL";
  30. option php_namespace = "Google\\Cloud\\Retail\\V2beta";
  31. option ruby_package = "Google::Cloud::Retail::V2beta";
  32. option (google.api.resource_definition) = {
  33. type: "retail.googleapis.com/Branch"
  34. pattern: "projects/{project}/locations/{location}/catalogs/{catalog}/branches/{branch}"
  35. };
  36. // Product captures all metadata information of items to be recommended or
  37. // searched.
  38. message Product {
  39. option (google.api.resource) = {
  40. type: "retail.googleapis.com/Product"
  41. pattern: "projects/{project}/locations/{location}/catalogs/{catalog}/branches/{branch}/products/{product}"
  42. };
  43. // The type of this product.
  44. enum Type {
  45. // Default value. Default to
  46. // [Catalog.product_level_config.ingestion_product_type][google.cloud.retail.v2beta.ProductLevelConfig.ingestion_product_type]
  47. // if unset.
  48. TYPE_UNSPECIFIED = 0;
  49. // The primary type.
  50. //
  51. // As the primary unit for predicting, indexing and search serving, a
  52. // [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY]
  53. // [Product][google.cloud.retail.v2beta.Product] is grouped with multiple
  54. // [Type.VARIANT][google.cloud.retail.v2beta.Product.Type.VARIANT]
  55. // [Product][google.cloud.retail.v2beta.Product]s.
  56. PRIMARY = 1;
  57. // The variant type.
  58. //
  59. // [Type.VARIANT][google.cloud.retail.v2beta.Product.Type.VARIANT]
  60. // [Product][google.cloud.retail.v2beta.Product]s usually share some common
  61. // attributes on the same
  62. // [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY]
  63. // [Product][google.cloud.retail.v2beta.Product]s, but they have variant
  64. // attributes like different colors, sizes and prices, etc.
  65. VARIANT = 2;
  66. // The collection type. Collection products are bundled
  67. // [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY]
  68. // [Product][google.cloud.retail.v2beta.Product]s or
  69. // [Type.VARIANT][google.cloud.retail.v2beta.Product.Type.VARIANT]
  70. // [Product][google.cloud.retail.v2beta.Product]s that are sold together,
  71. // such as a jewelry set with necklaces, earrings and rings, etc.
  72. COLLECTION = 3;
  73. }
  74. // Product availability. If this field is unspecified, the product is
  75. // assumed to be in stock.
  76. enum Availability {
  77. // Default product availability. Default to
  78. // [Availability.IN_STOCK][google.cloud.retail.v2beta.Product.Availability.IN_STOCK]
  79. // if unset.
  80. AVAILABILITY_UNSPECIFIED = 0;
  81. // Product in stock.
  82. IN_STOCK = 1;
  83. // Product out of stock.
  84. OUT_OF_STOCK = 2;
  85. // Product that is in pre-order state.
  86. PREORDER = 3;
  87. // Product that is back-ordered (i.e. temporarily out of stock).
  88. BACKORDER = 4;
  89. }
  90. oneof expiration {
  91. // The timestamp when this product becomes unavailable for
  92. // [SearchService.Search][google.cloud.retail.v2beta.SearchService.Search].
  93. //
  94. // If it is set, the [Product][google.cloud.retail.v2beta.Product] is not
  95. // available for
  96. // [SearchService.Search][google.cloud.retail.v2beta.SearchService.Search]
  97. // after [expire_time][google.cloud.retail.v2beta.Product.expire_time].
  98. // However, the product can still be retrieved by
  99. // [ProductService.GetProduct][google.cloud.retail.v2beta.ProductService.GetProduct]
  100. // and
  101. // [ProductService.ListProducts][google.cloud.retail.v2beta.ProductService.ListProducts].
  102. //
  103. // Google Merchant Center property
  104. // [expiration_date](https://support.google.com/merchants/answer/6324499).
  105. google.protobuf.Timestamp expire_time = 16;
  106. // Input only. The TTL (time to live) of the product.
  107. //
  108. // If it is set,
  109. // [expire_time][google.cloud.retail.v2beta.Product.expire_time] is set as
  110. // current timestamp plus [ttl][google.cloud.retail.v2beta.Product.ttl]. The
  111. // derived [expire_time][google.cloud.retail.v2beta.Product.expire_time] is
  112. // returned in the output and [ttl][google.cloud.retail.v2beta.Product.ttl]
  113. // is left blank when retrieving the
  114. // [Product][google.cloud.retail.v2beta.Product].
  115. //
  116. // If it is set, the product is not available for
  117. // [SearchService.Search][google.cloud.retail.v2beta.SearchService.Search]
  118. // after current timestamp plus
  119. // [ttl][google.cloud.retail.v2beta.Product.ttl]. However, the product can
  120. // still be retrieved by
  121. // [ProductService.GetProduct][google.cloud.retail.v2beta.ProductService.GetProduct]
  122. // and
  123. // [ProductService.ListProducts][google.cloud.retail.v2beta.ProductService.ListProducts].
  124. google.protobuf.Duration ttl = 17
  125. [(google.api.field_behavior) = INPUT_ONLY];
  126. }
  127. // Immutable. Full resource name of the product, such as
  128. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/product_id`.
  129. //
  130. // The branch ID must be "default_branch".
  131. string name = 1 [(google.api.field_behavior) = IMMUTABLE];
  132. // Immutable. [Product][google.cloud.retail.v2beta.Product] identifier, which
  133. // is the final component of [name][google.cloud.retail.v2beta.Product.name].
  134. // For example, this field is "id_1", if
  135. // [name][google.cloud.retail.v2beta.Product.name] is
  136. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/id_1`.
  137. //
  138. // This field must be a UTF-8 encoded string with a length limit of 128
  139. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  140. //
  141. // Google Merchant Center property
  142. // [id](https://support.google.com/merchants/answer/6324405). Schema.org
  143. // Property [Product.sku](https://schema.org/sku).
  144. string id = 2 [(google.api.field_behavior) = IMMUTABLE];
  145. // Immutable. The type of the product. Default to
  146. // [Catalog.product_level_config.ingestion_product_type][google.cloud.retail.v2beta.ProductLevelConfig.ingestion_product_type]
  147. // if unset.
  148. Type type = 3 [(google.api.field_behavior) = IMMUTABLE];
  149. // Variant group identifier. Must be an
  150. // [id][google.cloud.retail.v2beta.Product.id], with the same parent branch
  151. // with this product. Otherwise, an error is thrown.
  152. //
  153. // For [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY]
  154. // [Product][google.cloud.retail.v2beta.Product]s, this field can only be
  155. // empty or set to the same value as
  156. // [id][google.cloud.retail.v2beta.Product.id].
  157. //
  158. // For VARIANT [Product][google.cloud.retail.v2beta.Product]s, this field
  159. // cannot be empty. A maximum of 2,000 products are allowed to share the same
  160. // [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY]
  161. // [Product][google.cloud.retail.v2beta.Product]. Otherwise, an
  162. // INVALID_ARGUMENT error is returned.
  163. //
  164. // Google Merchant Center Property
  165. // [item_group_id](https://support.google.com/merchants/answer/6324507).
  166. // Schema.org Property
  167. // [Product.inProductGroupWithID](https://schema.org/inProductGroupWithID).
  168. //
  169. // This field must be enabled before it can be used. [Learn
  170. // more](/recommendations-ai/docs/catalog#item-group-id).
  171. string primary_product_id = 4;
  172. // The [id][google.cloud.retail.v2beta.Product.id] of the collection members
  173. // when [type][google.cloud.retail.v2beta.Product.type] is
  174. // [Type.COLLECTION][google.cloud.retail.v2beta.Product.Type.COLLECTION].
  175. //
  176. // Should not set it for other types. A maximum of 1000 values are allowed.
  177. // Otherwise, an INVALID_ARGUMENT error is return.
  178. repeated string collection_member_ids = 5;
  179. // The Global Trade Item Number (GTIN) of the product.
  180. //
  181. // This field must be a UTF-8 encoded string with a length limit of 128
  182. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  183. //
  184. // Google Merchant Center property
  185. // [gtin](https://support.google.com/merchants/answer/6324461).
  186. // Schema.org property
  187. // [Product.isbn](https://schema.org/isbn) or
  188. // [Product.gtin8](https://schema.org/gtin8) or
  189. // [Product.gtin12](https://schema.org/gtin12) or
  190. // [Product.gtin13](https://schema.org/gtin13) or
  191. // [Product.gtin14](https://schema.org/gtin14).
  192. //
  193. // If the value is not a valid GTIN, an INVALID_ARGUMENT error is returned.
  194. string gtin = 6;
  195. // Product categories. This field is repeated for supporting one product
  196. // belonging to several parallel categories. Strongly recommended using the
  197. // full path for better search / recommendation quality.
  198. //
  199. //
  200. // To represent full path of category, use '>' sign to separate different
  201. // hierarchies. If '>' is part of the category name, please replace it with
  202. // other character(s).
  203. //
  204. // For example, if a shoes product belongs to both
  205. // ["Shoes & Accessories" -> "Shoes"] and
  206. // ["Sports & Fitness" -> "Athletic Clothing" -> "Shoes"], it could be
  207. // represented as:
  208. //
  209. // "categories": [
  210. // "Shoes & Accessories > Shoes",
  211. // "Sports & Fitness > Athletic Clothing > Shoes"
  212. // ]
  213. //
  214. // Must be set for
  215. // [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY]
  216. // [Product][google.cloud.retail.v2beta.Product] otherwise an INVALID_ARGUMENT
  217. // error is returned.
  218. //
  219. // At most 250 values are allowed per
  220. // [Product][google.cloud.retail.v2beta.Product]. Empty values are not
  221. // allowed. Each value must be a UTF-8 encoded string with a length limit of
  222. // 5,000 characters. Otherwise, an INVALID_ARGUMENT error is returned.
  223. //
  224. // Google Merchant Center property
  225. // [google_product_category][mc_google_product_category]. Schema.org property
  226. // [Product.category] (https://schema.org/category).
  227. //
  228. // [mc_google_product_category]:
  229. // https://support.google.com/merchants/answer/6324436
  230. repeated string categories = 7;
  231. // Required. Product title.
  232. //
  233. // This field must be a UTF-8 encoded string with a length limit of 1,000
  234. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  235. //
  236. // Google Merchant Center property
  237. // [title](https://support.google.com/merchants/answer/6324415). Schema.org
  238. // property [Product.name](https://schema.org/name).
  239. string title = 8 [(google.api.field_behavior) = REQUIRED];
  240. // The brands of the product.
  241. //
  242. // A maximum of 30 brands are allowed. Each brand must be a UTF-8 encoded
  243. // string with a length limit of 1,000 characters. Otherwise, an
  244. // INVALID_ARGUMENT error is returned.
  245. //
  246. // Google Merchant Center property
  247. // [brand](https://support.google.com/merchants/answer/6324351). Schema.org
  248. // property [Product.brand](https://schema.org/brand).
  249. repeated string brands = 9;
  250. // Product description.
  251. //
  252. // This field must be a UTF-8 encoded string with a length limit of 5,000
  253. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  254. //
  255. // Google Merchant Center property
  256. // [description](https://support.google.com/merchants/answer/6324468).
  257. // schema.org property [Product.description](https://schema.org/description).
  258. string description = 10;
  259. // Language of the title/description and other string attributes. Use language
  260. // tags defined by [BCP 47][https://www.rfc-editor.org/rfc/bcp/bcp47.txt].
  261. //
  262. // For product prediction, this field is ignored and the model automatically
  263. // detects the text language. The
  264. // [Product][google.cloud.retail.v2beta.Product] can include text in different
  265. // languages, but duplicating [Product][google.cloud.retail.v2beta.Product]s
  266. // to provide text in multiple languages can result in degraded model
  267. // performance.
  268. //
  269. // For product search this field is in use. It defaults to "en-US" if unset.
  270. string language_code = 11;
  271. // Highly encouraged. Extra product attributes to be included. For example,
  272. // for products, this could include the store name, vendor, style, color, etc.
  273. // These are very strong signals for recommendation model, thus we highly
  274. // recommend providing the attributes here.
  275. //
  276. // Features that can take on one of a limited number of possible values. Two
  277. // types of features can be set are:
  278. //
  279. // Textual features. some examples would be the brand/maker of a product, or
  280. // country of a customer. Numerical features. Some examples would be the
  281. // height/weight of a product, or age of a customer.
  282. //
  283. // For example: `{ "vendor": {"text": ["vendor123", "vendor456"]},
  284. // "lengths_cm": {"numbers":[2.3, 15.4]}, "heights_cm": {"numbers":[8.1, 6.4]}
  285. // }`.
  286. //
  287. // This field needs to pass all below criteria, otherwise an INVALID_ARGUMENT
  288. // error is returned:
  289. //
  290. // * Max entries count: 200 by default; 100 for
  291. // [Type.VARIANT][google.cloud.retail.v2beta.Product.Type.VARIANT].
  292. // * The key must be a UTF-8 encoded string with a length limit of 128
  293. // characters.
  294. // * Max indexable entries count: 200 by default; 40 for
  295. // [Type.VARIANT][google.cloud.retail.v2beta.Product.Type.VARIANT].
  296. // * Max searchable entries count: 30.
  297. // * For indexable attribute, the key must match the pattern:
  298. // [a-zA-Z0-9][a-zA-Z0-9_]*. For example, key0LikeThis or KEY_1_LIKE_THIS.
  299. map<string, CustomAttribute> attributes = 12;
  300. // Custom tags associated with the product.
  301. //
  302. // At most 250 values are allowed per
  303. // [Product][google.cloud.retail.v2beta.Product]. This value must be a UTF-8
  304. // encoded string with a length limit of 1,000 characters. Otherwise, an
  305. // INVALID_ARGUMENT error is returned.
  306. //
  307. // This tag can be used for filtering recommendation results by passing the
  308. // tag as part of the
  309. // [PredictRequest.filter][google.cloud.retail.v2beta.PredictRequest.filter].
  310. //
  311. // Google Merchant Center property
  312. // [custom_label_0–4](https://support.google.com/merchants/answer/6324473).
  313. repeated string tags = 13;
  314. // Product price and cost information.
  315. //
  316. // Google Merchant Center property
  317. // [price](https://support.google.com/merchants/answer/6324371).
  318. PriceInfo price_info = 14;
  319. // The rating of this product.
  320. Rating rating = 15;
  321. // The timestamp when this [Product][google.cloud.retail.v2beta.Product]
  322. // becomes available for
  323. // [SearchService.Search][google.cloud.retail.v2beta.SearchService.Search].
  324. google.protobuf.Timestamp available_time = 18;
  325. // The online availability of the
  326. // [Product][google.cloud.retail.v2beta.Product]. Default to
  327. // [Availability.IN_STOCK][google.cloud.retail.v2beta.Product.Availability.IN_STOCK].
  328. //
  329. // Google Merchant Center Property
  330. // [availability](https://support.google.com/merchants/answer/6324448).
  331. // Schema.org Property [Offer.availability](https://schema.org/availability).
  332. Availability availability = 19;
  333. // The available quantity of the item.
  334. google.protobuf.Int32Value available_quantity = 20;
  335. // Fulfillment information, such as the store IDs for in-store pickup or
  336. // region IDs for different shipping methods.
  337. //
  338. // All the elements must have distinct
  339. // [FulfillmentInfo.type][google.cloud.retail.v2beta.FulfillmentInfo.type].
  340. // Otherwise, an INVALID_ARGUMENT error is returned.
  341. repeated FulfillmentInfo fulfillment_info = 21;
  342. // Canonical URL directly linking to the product detail page.
  343. //
  344. // It is strongly recommended to provide a valid uri for the product,
  345. // otherwise the service performance could be significantly degraded.
  346. //
  347. // This field must be a UTF-8 encoded string with a length limit of 5,000
  348. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  349. //
  350. // Google Merchant Center property
  351. // [link](https://support.google.com/merchants/answer/6324416). Schema.org
  352. // property [Offer.url](https://schema.org/url).
  353. string uri = 22;
  354. // Product images for the product.Highly recommended to put the main image
  355. // to the first.
  356. //
  357. // A maximum of 300 images are allowed.
  358. //
  359. // Google Merchant Center property
  360. // [image_link](https://support.google.com/merchants/answer/6324350).
  361. // Schema.org property [Product.image](https://schema.org/image).
  362. repeated Image images = 23;
  363. // The target group associated with a given audience (e.g. male, veterans,
  364. // car owners, musicians, etc.) of the product.
  365. Audience audience = 24;
  366. // The color of the product.
  367. //
  368. // Google Merchant Center property
  369. // [color](https://support.google.com/merchants/answer/6324487). Schema.org
  370. // property [Product.color](https://schema.org/color).
  371. ColorInfo color_info = 25;
  372. // The size of the product. To represent different size systems or size types,
  373. // consider using this format: [[[size_system:]size_type:]size_value].
  374. //
  375. // For example, in "US:MENS:M", "US" represents size system; "MENS" represents
  376. // size type; "M" represents size value. In "GIRLS:27", size system is empty;
  377. // "GIRLS" represents size type; "27" represents size value. In "32 inches",
  378. // both size system and size type are empty, while size value is "32 inches".
  379. //
  380. // A maximum of 20 values are allowed per
  381. // [Product][google.cloud.retail.v2beta.Product]. Each value must be a UTF-8
  382. // encoded string with a length limit of 128 characters. Otherwise, an
  383. // INVALID_ARGUMENT error is returned.
  384. //
  385. // Google Merchant Center property
  386. // [size](https://support.google.com/merchants/answer/6324492),
  387. // [size_type](https://support.google.com/merchants/answer/6324497) and
  388. // [size_system](https://support.google.com/merchants/answer/6324502).
  389. // Schema.org property [Product.size](https://schema.org/size).
  390. repeated string sizes = 26;
  391. // The material of the product. For example, "leather", "wooden".
  392. //
  393. // A maximum of 5 values are allowed. Each value must be a UTF-8 encoded
  394. // string with a length limit of 128 characters. Otherwise, an
  395. // INVALID_ARGUMENT error is returned.
  396. //
  397. // Google Merchant Center property
  398. // [material](https://support.google.com/merchants/answer/6324410). Schema.org
  399. // property [Product.material](https://schema.org/material).
  400. repeated string materials = 27;
  401. // The pattern or graphic print of the product. For example, "striped", "polka
  402. // dot", "paisley".
  403. //
  404. // A maximum of 5 values are allowed per
  405. // [Product][google.cloud.retail.v2beta.Product]. Each value must be a UTF-8
  406. // encoded string with a length limit of 128 characters. Otherwise, an
  407. // INVALID_ARGUMENT error is returned.
  408. //
  409. // Google Merchant Center property
  410. // [pattern](https://support.google.com/merchants/answer/6324483). Schema.org
  411. // property [Product.pattern](https://schema.org/pattern).
  412. repeated string patterns = 28;
  413. // The condition of the product. Strongly encouraged to use the standard
  414. // values: "new", "refurbished", "used".
  415. //
  416. // A maximum of 5 values are allowed per
  417. // [Product][google.cloud.retail.v2beta.Product]. Each value must be a UTF-8
  418. // encoded string with a length limit of 128 characters. Otherwise, an
  419. // INVALID_ARGUMENT error is returned.
  420. //
  421. // Google Merchant Center property
  422. // [condition](https://support.google.com/merchants/answer/6324469).
  423. // Schema.org property
  424. // [Offer.itemCondition](https://schema.org/itemCondition).
  425. repeated string conditions = 29;
  426. // The promotions applied to the product. A maximum of 10 values are allowed
  427. // per [Product][google.cloud.retail.v2beta.Product].
  428. repeated Promotion promotions = 34;
  429. // The timestamp when the product is published by the retailer for the first
  430. // time, which indicates the freshness of the products. Note that this field
  431. // is different from
  432. // [available_time][google.cloud.retail.v2beta.Product.available_time], given
  433. // it purely describes product freshness regardless of when it is available on
  434. // search and recommendation.
  435. google.protobuf.Timestamp publish_time = 33;
  436. // Indicates which fields in the
  437. // [Product][google.cloud.retail.v2beta.Product]s are returned in
  438. // [SearchResponse][google.cloud.retail.v2beta.SearchResponse].
  439. //
  440. // Supported fields for all [type][google.cloud.retail.v2beta.Product.type]s:
  441. //
  442. // * [audience][google.cloud.retail.v2beta.Product.audience]
  443. // * [availability][google.cloud.retail.v2beta.Product.availability]
  444. // * [brands][google.cloud.retail.v2beta.Product.brands]
  445. // * [color_info][google.cloud.retail.v2beta.Product.color_info]
  446. // * [conditions][google.cloud.retail.v2beta.Product.conditions]
  447. // * [gtin][google.cloud.retail.v2beta.Product.gtin]
  448. // * [materials][google.cloud.retail.v2beta.Product.materials]
  449. // * [name][google.cloud.retail.v2beta.Product.name]
  450. // * [patterns][google.cloud.retail.v2beta.Product.patterns]
  451. // * [price_info][google.cloud.retail.v2beta.Product.price_info]
  452. // * [rating][google.cloud.retail.v2beta.Product.rating]
  453. // * [sizes][google.cloud.retail.v2beta.Product.sizes]
  454. // * [title][google.cloud.retail.v2beta.Product.title]
  455. // * [uri][google.cloud.retail.v2beta.Product.uri]
  456. //
  457. // Supported fields only for
  458. // [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY] and
  459. // [Type.COLLECTION][google.cloud.retail.v2beta.Product.Type.COLLECTION]:
  460. //
  461. // * [categories][google.cloud.retail.v2beta.Product.categories]
  462. // * [description][google.cloud.retail.v2beta.Product.description]
  463. // * [images][google.cloud.retail.v2beta.Product.images]
  464. //
  465. // Supported fields only for
  466. // [Type.VARIANT][google.cloud.retail.v2beta.Product.Type.VARIANT]:
  467. //
  468. // * Only the first image in
  469. // [images][google.cloud.retail.v2beta.Product.images]
  470. //
  471. // To mark [attributes][google.cloud.retail.v2beta.Product.attributes] as
  472. // retrievable, include paths of the form "attributes.key" where "key" is the
  473. // key of a custom attribute, as specified in
  474. // [attributes][google.cloud.retail.v2beta.Product.attributes].
  475. //
  476. // For [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY] and
  477. // [Type.COLLECTION][google.cloud.retail.v2beta.Product.Type.COLLECTION], the
  478. // following fields are always returned in
  479. // [SearchResponse][google.cloud.retail.v2beta.SearchResponse] by default:
  480. //
  481. // * [name][google.cloud.retail.v2beta.Product.name]
  482. //
  483. // For [Type.VARIANT][google.cloud.retail.v2beta.Product.Type.VARIANT], the
  484. // following fields are always returned in by default:
  485. //
  486. // * [name][google.cloud.retail.v2beta.Product.name]
  487. // * [color_info][google.cloud.retail.v2beta.Product.color_info]
  488. //
  489. // Maximum number of paths is 20. Otherwise, an INVALID_ARGUMENT error is
  490. // returned.
  491. google.protobuf.FieldMask retrievable_fields = 30;
  492. // Output only. Product variants grouped together on primary product which
  493. // share similar product attributes. It's automatically grouped by
  494. // [primary_product_id][google.cloud.retail.v2beta.Product.primary_product_id]
  495. // for all the product variants. Only populated for
  496. // [Type.PRIMARY][google.cloud.retail.v2beta.Product.Type.PRIMARY]
  497. // [Product][google.cloud.retail.v2beta.Product]s.
  498. //
  499. // Note: This field is OUTPUT_ONLY for
  500. // [ProductService.GetProduct][google.cloud.retail.v2beta.ProductService.GetProduct].
  501. // Do not set this field in API requests.
  502. repeated Product variants = 31 [(google.api.field_behavior) = OUTPUT_ONLY];
  503. }