@@ -48,11 +48,8 @@ actions:
48
48
- target : " $.components['schemas']['ml._types:Datafeed'].properties.query"
49
49
description : Remove query object from anomaly detection datafeed
50
50
remove : true
51
- - target : " $.components['schemas']['ml._types:DatafeedConfig'].properties.query"
52
- description : Remove query object from anomaly detection datafeed configuration
53
- remove : true
54
- - target : " $.components['schemas']['ml._types:DatafeedConfig'].properties"
55
- description : Re-add a simplified query object in anomaly detection datafeed configuration
51
+ - target : " $.components['schemas']['ml._types:Datafeed'].properties"
52
+ description : Re-add a simplified query object in anomaly detection datafeed
56
53
update :
57
54
query :
58
55
x-abbreviated : true
@@ -65,8 +62,11 @@ actions:
65
62
externalDocs :
66
63
url : https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html
67
64
description : Query DSL
68
- - target : " $.components['schemas']['ml._types:Datafeed'].properties"
69
- description : Re-add a simplified query object in anomaly detection datafeed
65
+ - target : " $.components['schemas']['ml._types:DatafeedConfig'].properties.query"
66
+ description : Remove query object from anomaly detection datafeed configuration
67
+ remove : true
68
+ - target : " $.components['schemas']['ml._types:DatafeedConfig'].properties"
69
+ description : Re-add a simplified query object in anomaly detection datafeed configuration
70
70
update :
71
71
query :
72
72
x-abbreviated : true
@@ -133,6 +133,7 @@ actions:
133
133
description : Query DSL
134
134
- target : " $.components['requestBodies']['graph.explore'].content['application/json'].schema.properties.query"
135
135
description : Remove query object from graph explore operation
136
+ remove : true
136
137
- target : " $.components['requestBodies']['graph.explore'].content['application/json'].schema.properties"
137
138
description : " Re-add simplified query object in graph explore operation"
138
139
update :
@@ -142,8 +143,12 @@ actions:
142
143
description : >
143
144
A seed query that identifies the documents of interest.
144
145
Can be any valid Elasticsearch query.
146
+ externalDocs :
147
+ url : https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html
148
+ description : Query DSL
145
149
- target : " $.components['schemas']['graph._types:Hop'].properties.query"
146
150
description : Remove query object from graph explore connections schema
151
+ remove : true
147
152
- target : " $.components['schemas']['graph._types:Hop'].properties"
148
153
description : " Re-add simplified query object in graph explore connections schema"
149
154
update :
@@ -153,8 +158,12 @@ actions:
153
158
description : >
154
159
An optional guiding query that constrains the Graph API as it explores connected terms.
155
160
For example, you might want to direct the Graph API to ignore older data by specifying a query that identifies recent documents.
161
+ externalDocs :
162
+ url : https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html
163
+ description : Query DSL
156
164
- target : " $.components['schemas']['_global.scripts_painless_execute:PainlessContextSetup'].properties.query"
157
165
description : Remove query object from painless script context setup schema
166
+ remove : true
158
167
- target : " $.components['schemas']['_global.scripts_painless_execute:PainlessContextSetup'].properties"
159
168
description : " Re-add simplified query object in painless script context setup schema"
160
169
update :
@@ -165,6 +174,37 @@ actions:
165
174
This property applies only when `score` is specified as the script `context`.
166
175
Use this property to specify a query for computing a score.
167
176
Besides deciding whether or not the document matches, the query clause also calculates a relevance score in the `_score` metadata field.
177
+ externalDocs :
178
+ url : https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html
179
+ description : Query DSL
180
+ - target : " $.components['requestBodies']['async_search.submit'].content['application/json'].schema.properties.query"
181
+ description : Remove query object from asynch search request
182
+ remove : true
183
+ - target : " $.components['requestBodies']['async_search.submit'].content['application/json'].schema.properties"
184
+ description : " Re-add simplified query object in asynch search request"
185
+ update :
186
+ query :
187
+ x-abbreviated : true
188
+ type : object
189
+ description : >
190
+ Defines the search definition using the Query DSL.
191
+ externalDocs :
192
+ url : https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html
193
+ description : Query DSL
194
+ - target : " $.components['requestBodies']['search'].content['application/json'].schema.properties.query"
195
+ description : Remove query object from search request
196
+ remove : true
197
+ - target : " $.components['requestBodies']['search'].content['application/json'].schema.properties"
198
+ description : " Re-add simplified query object in search request"
199
+ update :
200
+ query :
201
+ x-abbreviated : true
202
+ type : object
203
+ description : >
204
+ Defines the search definition using the Query DSL.
205
+ externalDocs :
206
+ url : https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html
207
+ description : Query DSL
168
208
# Examples
169
209
- target : " $.components['requestBodies']['async_search.submit']"
170
210
description : " Add example for asynch search submit request"
0 commit comments