From da8ca006da79ab530cd8c8945a1df17429a4d13d 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 aa25c6d091..985c7f8e2b 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' }