histogram.proto 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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.contentwarehouse.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/contentwarehouse/v1;contentwarehouse";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "HistogramProto";
  21. option java_package = "com.google.cloud.contentwarehouse.v1";
  22. // The histogram request.
  23. message HistogramQuery {
  24. // An expression specifies a histogram request against matching documents for
  25. // searches.
  26. //
  27. // See [SearchDocumentsRequest.histogram_queries][google.cloud.contentwarehouse.v1.SearchDocumentsRequest.histogram_queries] for details about syntax.
  28. string histogram_query = 1;
  29. // Controls if the histogram query requires the return of a precise count.
  30. // Enable this flag may adversely impact performance.
  31. //
  32. // Defaults to true.
  33. bool require_precise_result_size = 2;
  34. // Optional. Filter the result of histogram query by the property names. It only works
  35. // with histogram query count('FilterableProperties').
  36. // It is an optional. It will perform histogram on all the property names for
  37. // all the document schemas. Setting this field will have a better
  38. // performance.
  39. HistogramQueryPropertyNameFilter filters = 3 [(google.api.field_behavior) = OPTIONAL];
  40. }
  41. message HistogramQueryPropertyNameFilter {
  42. // The result of the histogram query count('FilterableProperties') using
  43. // HISTOGRAM_YAXIS_DOCUMENT will be:
  44. // invoice_id: 2
  45. // address: 1
  46. // payment_method: 2
  47. // line_item_description: 1
  48. enum HistogramYAxis {
  49. // Count the documents per property name.
  50. HISTOGRAM_YAXIS_DOCUMENT = 0;
  51. // Count the properties per property name.
  52. HISTOGRAM_YAXIS_PROPERTY = 1;
  53. }
  54. // This filter specifies the exact document schema(s)
  55. // [Document.document_schema_name][google.cloud.contentwarehouse.v1.Document.document_schema_name] to run histogram query against.
  56. // It is optional. It will perform histogram for property names for all the
  57. // document schemas if it is not set.
  58. //
  59. // At most 10 document schema names are allowed.
  60. // Format:
  61. // projects/{project_number}/locations/{location}/documentSchemas/{document_schema_id}.
  62. repeated string document_schemas = 1 [(google.api.resource_reference) = {
  63. type: "contentwarehouse.googleapis.com/DocumentSchema"
  64. }];
  65. // It is optional. It will perform histogram for all the property names if it
  66. // is not set.
  67. // The properties need to be defined with the is_filterable flag set to
  68. // true and the name of the property should be in the format:
  69. // "schemaId.propertyName". The property needs to be defined in the schema.
  70. // Example: the schema id is abc. Then the name of property for property
  71. // MORTGAGE_TYPE will be "abc.MORTGAGE_TYPE".
  72. repeated string property_names = 2;
  73. // By default, the y_axis is HISTOGRAM_YAXIS_DOCUMENT if this field is not
  74. // set.
  75. HistogramYAxis y_axis = 3;
  76. }
  77. // Histogram result that matches [HistogramQuery][google.cloud.contentwarehouse.v1.HistogramQuery] specified in searches.
  78. message HistogramQueryResult {
  79. // Requested histogram expression.
  80. string histogram_query = 1;
  81. // A map from the values of the facet associated with distinct values to the
  82. // number of matching entries with corresponding value.
  83. //
  84. // The key format is:
  85. //
  86. // * (for string histogram) string values stored in the field.
  87. map<string, int64> histogram = 2;
  88. }