@@ -215,6 +215,7 @@ Each search result object is composed of the following fields:
215215| ** ` facetStats ` ** | Object | [ The numeric ` min ` and ` max ` values per facet] ( /reference/api/search#facetstats ) |
216216| ** ` processingTimeMs ` ** | Number | Processing time of the query |
217217| ** ` query ` ** | String | Query originating the response |
218+ | ** ` requestUid ` ** | String | A UUID v7 identifying the request |
218219
219220#### Federated multi-search requests
220221
@@ -232,6 +233,7 @@ Federated search requests return a single object and the following fields:
232233| ** ` facetDistribution ` ** | Object | [ Distribution of the given facets] ( #mergefacets ) |
233234| ** ` facetStats ` ** | Object | [ The numeric ` min ` and ` max ` values per facet] ( #mergefacets ) |
234235| ** ` remoteErrors ` ** | Object | Indicates which remote requests failed and why |
236+ | ** ` requestUid ` ** | String | A UUID v7 identifying the request |
235237
236238Each result in the ` hits ` array contains an additional ` _federation ` field with the following fields:
237239
@@ -267,7 +269,8 @@ Each result in the `hits` array contains an additional `_federation` field with
267269 "processingTimeMs" : 26 ,
268270 "limit" : 5 ,
269271 "offset" : 0 ,
270- "estimatedTotalHits" : 22
272+ "estimatedTotalHits" : 22 ,
273+ "requestUid" : " 0198e71e-47d2-7cd3-b507-1d0cc930b1f1"
271274 },
272275 {
273276 "indexUid" : " movies" ,
@@ -283,7 +286,8 @@ Each result in the `hits` array contains an additional `_federation` field with
283286 "processingTimeMs" : 5 ,
284287 "limit" : 5 ,
285288 "offset" : 0 ,
286- "estimatedTotalHits" : 11
289+ "estimatedTotalHits" : 11 ,
290+ "requestUid" : " 0198e71e-47d2-7cd3-b507-1d0cc930b1f1"
287291 },
288292 {
289293 "indexUid" : " movie_ratings" ,
@@ -298,7 +302,8 @@ Each result in the `hits` array contains an additional `_federation` field with
298302 "processingTimeMs" : 0 ,
299303 "limit" : 20 ,
300304 "offset" : 0 ,
301- "estimatedTotalHits" : 1
305+ "estimatedTotalHits" : 1 ,
306+ "requestUid" : " 0198e71e-47d2-7cd3-b507-1d0cc930b1f1"
302307 }
303308 ]
304309}
@@ -337,7 +342,8 @@ Each result in the `hits` array contains an additional `_federation` field with
337342 "limit" : 20 ,
338343 "offset" : 0 ,
339344 "estimatedTotalHits" : 2 ,
340- "semanticHitCount" : 0
345+ "semanticHitCount" : 0 ,
346+ "requestUid" : " 0198e71e-47d2-7cd3-b507-1d0cc930b1f1"
341347}
342348```
343349
@@ -378,6 +384,7 @@ Each result in the `hits` array contains an additional `_federation` field with
378384 "limit" : 5 ,
379385 "offset" : 0 ,
380386 "estimatedTotalHits" : 111 ,
387+ "requestUid" : " 0198e71e-47d2-7cd3-b507-1d0cc930b1f1" ,
381388 "remoteErrors" : {
382389 "ms-02" : {
383390 "message" : " error sending request" ,
0 commit comments