From d217cb4d0e481c0a5db7392fe82b52c06ef7618e Mon Sep 17 00:00:00 2001 From: Sean Zatz Date: Thu, 7 Aug 2025 16:18:23 -0400 Subject: [PATCH] Add _data_stream metadata to search hit --- specification/_global/search/_types/hits.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/specification/_global/search/_types/hits.ts b/specification/_global/search/_types/hits.ts index 8bcec18af7..97f3679503 100644 --- a/specification/_global/search/_types/hits.ts +++ b/specification/_global/search/_types/hits.ts @@ -18,6 +18,7 @@ */ import { + DataStreamName, Field, Fields, Id, @@ -62,6 +63,7 @@ export class Hit { _primary_term?: long _version?: VersionNumber sort?: SortResults + _data_stream?: DataStreamName } export class HitsMetadata {