From 618fabd21eb29af1dde565aea0d10a973e1a820e Mon Sep 17 00:00:00 2001 From: Laura Trotta <153528055+l-trotta@users.noreply.github.com> Date: Fri, 28 Mar 2025 12:48:32 +0100 Subject: [PATCH] missing field in boolean property (#4165) (cherry picked from commit 95c001ac88ef98b2cc6f379e3cee760f9dc6a1d6) --- specification/_types/mapping/core.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/specification/_types/mapping/core.ts b/specification/_types/mapping/core.ts index 2c105abec4..d4a32f7b25 100644 --- a/specification/_types/mapping/core.ts +++ b/specification/_types/mapping/core.ts @@ -60,6 +60,15 @@ export class BooleanProperty extends DocValuesPropertyBase { fielddata?: NumericFielddata index?: boolean null_value?: boolean + ignore_malformed?: boolean + script?: Script + on_script_error?: OnScriptError + /** + * For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false. + * @availability stack stability=experimental + * @availability serverless stability=experimental + */ + time_series_dimension?: boolean type: 'boolean' }