You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: protos/schemas/common.proto
+38-38Lines changed: 38 additions & 38 deletions
Original file line number
Diff line number
Diff line change
@@ -464,7 +464,7 @@ message TermsQuery {
464
464
optionalfloatboost=1;
465
465
466
466
// [optional] Query name for query tagging.
467
-
optionalstringunderscore_name=2;
467
+
optionalstringx_name=2;
468
468
469
469
// [optional] Specifies the types of values used for filtering. Valid values are `default` and `bitmap`. Default is `default`.
470
470
optionalTermsQueryValueTypevalue_type=3;
@@ -479,7 +479,7 @@ message NestedQuery {
479
479
optionalfloatboost=1;
480
480
481
481
// [optional] Query name for query tagging.
482
-
optionalstringunderscore_name=2;
482
+
optionalstringx_name=2;
483
483
484
484
// Set to `true` to ignore an unmapped field and not match any documents for this query. Set to `false` to throw an exception if the field is not mapped.
485
485
boolignore_unmapped=3;
@@ -542,7 +542,7 @@ message InnerHits {
542
542
repeatedSortOptionssort=12;
543
543
544
544
// [optional] Select what fields of the source are returned
545
-
optionalSourceConfigunderscore_source=13;
545
+
optionalSourceConfigx_source=13;
546
546
547
547
// [optional] A list of stored fields to return as part of a hit. If no fields are specified, no stored fields are included in the response. If this option is specified, the _source parameter defaults to false. You can pass _source: true to return both source fields and stored fields in the search response.
548
548
repeatedstringstored_fields=14;
@@ -857,13 +857,13 @@ enum FieldType {
857
857
858
858
messageSortOptionsOneOf {
859
859
// [optional]
860
-
optionalScoreSortunderscore_score=1;
860
+
optionalScoreSortx_score=1;
861
861
// [optional]
862
-
optionalScoreSortunderscore_doc=2;
862
+
optionalScoreSortx_doc=2;
863
863
// [optional]
864
-
optionalGeoDistanceSortunderscore_geo_distance=3;
864
+
optionalGeoDistanceSortx_geo_distance=3;
865
865
// [optional]
866
-
optionalScriptSortunderscore_script=4;
866
+
optionalScriptSortx_script=4;
867
867
}
868
868
869
869
messageScoreSort {
@@ -1008,7 +1008,7 @@ message ScriptScoreQuery {
1008
1008
optionalfloatboost=1;
1009
1009
1010
1010
// [optional] Query name for query tagging.
1011
-
optionalstringunderscore_name=2;
1011
+
optionalstringx_name=2;
1012
1012
1013
1013
// Documents with a score lower than this floating point number are excluded from the search results.
// Analyzer used to convert text in the query string into tokens.
1048
1048
stringanalyzer=3;
@@ -1088,7 +1088,7 @@ message WildcardQuery {
1088
1088
optionalfloatboost=2;
1089
1089
1090
1090
// [optional] The name of the query for query tagging.
1091
-
optionalstringunderscore_name=3;
1091
+
optionalstringx_name=3;
1092
1092
1093
1093
// [optional] Allows case insensitive matching of the pattern with the indexed field values when set to `true`. Default is `false` which means the case sensitivity of matching depends on the underlying field's mapping.
1094
1094
optionalboolcase_insensitive=4;
@@ -1166,7 +1166,7 @@ message KnnQuery {
1166
1166
optionalfloatboost=7;
1167
1167
1168
1168
// [optional] Query name for query tagging.
1169
-
optionalstringunderscore_name=8;
1169
+
optionalstringx_name=8;
1170
1170
1171
1171
// [optional]
1172
1172
// Method parameters are dependent on the combination of engine and method used to create the index.
@@ -1211,7 +1211,7 @@ message MatchQuery {
1211
1211
optionalfloatboost=1;
1212
1212
1213
1213
// [optional] Query name for query tagging.
1214
-
optionalstringunderscore_name=2;
1214
+
optionalstringx_name=2;
1215
1215
1216
1216
// [optional]
1217
1217
// The analyzer used to tokenize the query string text.
@@ -1327,7 +1327,7 @@ message BoolQuery {
1327
1327
optionalfloatboost=1;
1328
1328
1329
1329
// [optional] The name of the query for query tagging.
1330
-
optionalstringunderscore_name=2;
1330
+
optionalstringx_name=2;
1331
1331
1332
1332
// [optional] The clause (query) must appear in matching documents. However, unlike `must`, the score of the query will be ignored.
1333
1333
repeatedQueryContainerfilter=3;
@@ -1363,7 +1363,7 @@ message BoostingQuery {
1363
1363
optionalfloatboost=1;
1364
1364
1365
1365
// [optional] Query name for query tagging.
1366
-
optionalstringunderscore_name=2;
1366
+
optionalstringx_name=2;
1367
1367
1368
1368
// Floating point number between 0 and 1.0 used to decrease the relevance scores of documents matching the `negative` query.
// One or more query clauses. Returned documents must match one or more of these queries. If a document matches multiple queries, OpenSearch uses the highest relevance score.
// The name of the numeric field that specifies the number of matching terms required in order to return a document in the results.
@@ -1737,7 +1737,7 @@ message TermQuery {
1737
1737
optionalfloatboost=2;
1738
1738
1739
1739
// [optional] Query name for query tagging.
1740
-
optionalstringunderscore_name=3;
1740
+
optionalstringx_name=3;
1741
1741
1742
1742
// [required]
1743
1743
// Term you wish to find in the provided <field>. To return a document, the term must exactly match the field value, including whitespace and capitalization.
@@ -1755,7 +1755,7 @@ message QueryStringQuery {
1755
1755
optionalfloatboost=1;
1756
1756
1757
1757
// [optional] Query name for query tagging.
1758
-
optionalstringunderscore_name=2;
1758
+
optionalstringx_name=2;
1759
1759
1760
1760
boolallow_leading_wildcard=3;
1761
1761
@@ -1878,7 +1878,7 @@ message RegexpQuery {
1878
1878
optionalfloatboost=3;
1879
1879
1880
1880
// [optional] Query name for query tagging
1881
-
optionalstringunderscore_name=4;
1881
+
optionalstringx_name=4;
1882
1882
1883
1883
// [optional] If true, allows case-insensitive matching of the regular expression value with the indexed field values. Default is false (case sensitivity is determined by the field’s mapping).
1884
1884
optionalboolcase_insensitive=5;
@@ -1908,7 +1908,7 @@ message DateRangeQuery {
1908
1908
optionalfloatboost=1;
1909
1909
1910
1910
// [optional] Query name for query tagging.
1911
-
optionalstringunderscore_name=2;
1911
+
optionalstringx_name=2;
1912
1912
1913
1913
RangeRelationrelation=3;
1914
1914
enumRangeRelation {
@@ -1955,7 +1955,7 @@ message NumberRangeQuery {
1955
1955
optionalfloatboost=1;
1956
1956
1957
1957
// [optional] Query name for query tagging.
1958
-
optionalstringunderscore_name=2;
1958
+
optionalstringx_name=2;
1959
1959
1960
1960
RangeRelationrelation=3;
1961
1961
enumRangeRelation {
@@ -2005,7 +2005,7 @@ message FuzzyQuery {
2005
2005
optionalfloatboost=2;
2006
2006
2007
2007
// [optional] Query name for query tagging.
2008
-
optionalstringunderscore_name=3;
2008
+
optionalstringx_name=3;
2009
2009
2010
2010
// [optional]
2011
2011
// The maximum number of terms to which the query can expand. Fuzzy queries "expand to" a number of matching terms that are within the distance specified in fuzziness. Then OpenSearch tries to match those terms. Default is 50.
// The analyzer used to tokenize the query string text.
@@ -2284,7 +2284,7 @@ message MatchPhraseQuery {
2284
2284
optionalfloatboost=2;
2285
2285
2286
2286
// [optional] The name of the query for query tagging.
2287
-
optionalstringunderscore_name=3;
2287
+
optionalstringx_name=3;
2288
2288
2289
2289
// [optional]
2290
2290
// The analyzer used to tokenize the query string text.
@@ -2314,7 +2314,7 @@ message MultiMatchQuery {
2314
2314
optionalfloatboost=2;
2315
2315
2316
2316
// [optional] The name of the query for query tagging.
2317
-
optionalstringunderscore_name=3;
2317
+
optionalstringx_name=3;
2318
2318
2319
2319
// [optional] The analyzer used to tokenize the query string text. Default is the index-time analyzer specified for the default_field. If no analyzer is specified for the default_field, the analyzer is the default analyzer for the index. For more information about index.query.default_field, see Dynamic index-level index settings.
2320
2320
optionalstringanalyzer=4;
@@ -2739,19 +2739,19 @@ message InlineGet {
2739
2739
2740
2740
boolfound=2;
2741
2741
2742
-
int64underscore_seq_no=3;
2742
+
int64x_seq_no=3;
2743
2743
2744
-
int64underscore_primary_term=4;
2744
+
int64x_primary_term=4;
2745
2745
2746
-
repeatedstringunderscore_routing=5;
2746
+
repeatedstringx_routing=5;
2747
2747
2748
2748
oneofinline_get_source {
2749
2749
2750
2750
// struct_source field to be returned upon explicit request by user
2751
2751
.google.protobuf.Structstruct_source=6;
2752
2752
2753
2753
// Use bytes for better latency/performance, as it reduces payload size over the wire
0 commit comments