@@ -57337,14 +57337,14 @@
57337
57337
"_types.query_dsl:DateDecayFunction": {
57338
57338
"allOf": [
57339
57339
{
57340
- "$ref": "#/components/schemas/_types.query_dsl:DecayFunctionBase "
57340
+ "$ref": "#/components/schemas/_types.query_dsl:DecayFunctionBaseDateMathDuration "
57341
57341
},
57342
57342
{
57343
57343
"type": "object"
57344
57344
}
57345
57345
]
57346
57346
},
57347
- "_types.query_dsl:DecayFunctionBase ": {
57347
+ "_types.query_dsl:DecayFunctionBaseDateMathDuration ": {
57348
57348
"type": "object",
57349
57349
"properties": {
57350
57350
"multi_value_mode": {
@@ -57364,23 +57364,39 @@
57364
57364
"_types.query_dsl:NumericDecayFunction": {
57365
57365
"allOf": [
57366
57366
{
57367
- "$ref": "#/components/schemas/_types.query_dsl:DecayFunctionBase "
57367
+ "$ref": "#/components/schemas/_types.query_dsl:DecayFunctionBasedoubledouble "
57368
57368
},
57369
57369
{
57370
57370
"type": "object"
57371
57371
}
57372
57372
]
57373
57373
},
57374
+ "_types.query_dsl:DecayFunctionBasedoubledouble": {
57375
+ "type": "object",
57376
+ "properties": {
57377
+ "multi_value_mode": {
57378
+ "$ref": "#/components/schemas/_types.query_dsl:MultiValueMode"
57379
+ }
57380
+ }
57381
+ },
57374
57382
"_types.query_dsl:GeoDecayFunction": {
57375
57383
"allOf": [
57376
57384
{
57377
- "$ref": "#/components/schemas/_types.query_dsl:DecayFunctionBase "
57385
+ "$ref": "#/components/schemas/_types.query_dsl:DecayFunctionBaseGeoLocationDistance "
57378
57386
},
57379
57387
{
57380
57388
"type": "object"
57381
57389
}
57382
57390
]
57383
57391
},
57392
+ "_types.query_dsl:DecayFunctionBaseGeoLocationDistance": {
57393
+ "type": "object",
57394
+ "properties": {
57395
+ "multi_value_mode": {
57396
+ "$ref": "#/components/schemas/_types.query_dsl:MultiValueMode"
57397
+ }
57398
+ }
57399
+ },
57384
57400
"_types.query_dsl:FieldValueFactorScoreFunction": {
57385
57401
"type": "object",
57386
57402
"properties": {
@@ -59928,18 +59944,31 @@
59928
59944
"$ref": "#/components/schemas/_types.query_dsl:NumberRangeQuery"
59929
59945
},
59930
59946
{
59931
- "$ref": "#/components/schemas/_types.query_dsl:TermsRangeQuery "
59947
+ "$ref": "#/components/schemas/_types.query_dsl:TermRangeQuery "
59932
59948
}
59933
59949
]
59934
59950
},
59935
59951
"_types.query_dsl:DateRangeQuery": {
59936
59952
"allOf": [
59937
59953
{
59938
- "$ref": "#/components/schemas/_types.query_dsl:RangeQueryBase"
59954
+ "$ref": "#/components/schemas/_types.query_dsl:RangeQueryBaseDateMath"
59955
+ },
59956
+ {
59957
+ "type": "object"
59958
+ }
59959
+ ]
59960
+ },
59961
+ "_types.query_dsl:RangeQueryBaseDateMath": {
59962
+ "allOf": [
59963
+ {
59964
+ "$ref": "#/components/schemas/_types.query_dsl:QueryBase"
59939
59965
},
59940
59966
{
59941
59967
"type": "object",
59942
59968
"properties": {
59969
+ "relation": {
59970
+ "$ref": "#/components/schemas/_types.query_dsl:RangeRelation"
59971
+ },
59943
59972
"gt": {
59944
59973
"$ref": "#/components/schemas/_types:DateMath"
59945
59974
},
@@ -59984,43 +60013,41 @@
59984
60013
}
59985
60014
]
59986
60015
},
60016
+ "_types.query_dsl:RangeRelation": {
60017
+ "type": "string",
60018
+ "enum": [
60019
+ "within",
60020
+ "contains",
60021
+ "intersects"
60022
+ ]
60023
+ },
59987
60024
"_types:DateFormat": {
59988
60025
"externalDocs": {
59989
60026
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-date-format.html"
59990
60027
},
59991
60028
"type": "string"
59992
60029
},
59993
- "_types.query_dsl:RangeQueryBase ": {
60030
+ "_types.query_dsl:NumberRangeQuery ": {
59994
60031
"allOf": [
59995
60032
{
59996
- "$ref": "#/components/schemas/_types.query_dsl:QueryBase "
60033
+ "$ref": "#/components/schemas/_types.query_dsl:RangeQueryBasedouble "
59997
60034
},
59998
60035
{
59999
- "type": "object",
60000
- "properties": {
60001
- "relation": {
60002
- "$ref": "#/components/schemas/_types.query_dsl:RangeRelation"
60003
- }
60004
- }
60036
+ "type": "object"
60005
60037
}
60006
60038
]
60007
60039
},
60008
- "_types.query_dsl:RangeRelation": {
60009
- "type": "string",
60010
- "enum": [
60011
- "within",
60012
- "contains",
60013
- "intersects"
60014
- ]
60015
- },
60016
- "_types.query_dsl:NumberRangeQuery": {
60040
+ "_types.query_dsl:RangeQueryBasedouble": {
60017
60041
"allOf": [
60018
60042
{
60019
- "$ref": "#/components/schemas/_types.query_dsl:RangeQueryBase "
60043
+ "$ref": "#/components/schemas/_types.query_dsl:QueryBase "
60020
60044
},
60021
60045
{
60022
60046
"type": "object",
60023
60047
"properties": {
60048
+ "relation": {
60049
+ "$ref": "#/components/schemas/_types.query_dsl:RangeRelation"
60050
+ },
60024
60051
"gt": {
60025
60052
"description": "Greater than.",
60026
60053
"type": "number"
@@ -60058,19 +60085,38 @@
60058
60085
"type": "string"
60059
60086
}
60060
60087
]
60088
+ },
60089
+ "format": {
60090
+ "$ref": "#/components/schemas/_types:DateFormat"
60091
+ },
60092
+ "time_zone": {
60093
+ "$ref": "#/components/schemas/_types:TimeZone"
60061
60094
}
60062
60095
}
60063
60096
}
60064
60097
]
60065
60098
},
60066
- "_types.query_dsl:TermsRangeQuery": {
60099
+ "_types.query_dsl:TermRangeQuery": {
60100
+ "allOf": [
60101
+ {
60102
+ "$ref": "#/components/schemas/_types.query_dsl:RangeQueryBasestring"
60103
+ },
60104
+ {
60105
+ "type": "object"
60106
+ }
60107
+ ]
60108
+ },
60109
+ "_types.query_dsl:RangeQueryBasestring": {
60067
60110
"allOf": [
60068
60111
{
60069
- "$ref": "#/components/schemas/_types.query_dsl:RangeQueryBase "
60112
+ "$ref": "#/components/schemas/_types.query_dsl:QueryBase "
60070
60113
},
60071
60114
{
60072
60115
"type": "object",
60073
60116
"properties": {
60117
+ "relation": {
60118
+ "$ref": "#/components/schemas/_types.query_dsl:RangeRelation"
60119
+ },
60074
60120
"gt": {
60075
60121
"description": "Greater than.",
60076
60122
"type": "string"
60108
60154
"type": "string"
60109
60155
}
60110
60156
]
60157
+ },
60158
+ "format": {
60159
+ "$ref": "#/components/schemas/_types:DateFormat"
60160
+ },
60161
+ "time_zone": {
60162
+ "$ref": "#/components/schemas/_types:TimeZone"
60111
60163
}
60112
60164
}
60113
60165
}
0 commit comments