From fcc612a53cc8c86e622fa99a5c1140bfc7a05a58 Mon Sep 17 00:00:00 2001 From: Joe Reuter Date: Tue, 30 Jun 2020 09:48:41 +0200 Subject: [PATCH] disable indexing for graph and timelion fields --- src/plugins/timelion/server/plugin.ts | 16 +-- .../index_patterns/basic_kibana/mappings.json | 16 +-- .../saved_objects/relationships/mappings.json | 20 +-- .../saved_objects/search/mappings.json | 26 ++-- .../saved_objects/10k/mappings.json | 16 +-- .../saved_objects/basic/mappings.json | 18 +-- .../es_archiver/search/count/mappings.json | 18 +-- .../dashboard/current/kibana/mappings.json | 18 +-- .../dashboard/legacy/mappings.json | 18 +-- .../es_archiver/discover/mappings.json | 16 +-- .../es_archiver/empty_kibana/mappings.json | 16 +-- .../fixtures/es_archiver/hamlet/mappings.json | 18 +-- .../invalid_scripted_field/mappings.json | 18 +-- .../mappings.json | 18 +-- .../es_archiver/management/mappings.json | 18 +-- .../fixtures/es_archiver/mgmt/mappings.json | 26 ++-- .../edit_saved_object/mappings.json | 26 ++-- .../es_archiver/timelion/mappings.json | 18 +-- .../es_archiver/visualize/mappings.json | 16 +-- .../visualize_embedding/mappings.json | 18 +-- .../visualize_source-filters/mappings.json | 18 +-- .../visualize_source_filters/mappings.json | 18 +-- .../server/saved_objects/graph_workspace.ts | 4 + .../encrypted_saved_objects/mappings.json | 26 ++-- .../es_archives/canvas/default/mappings.json | 26 ++-- .../dashboard/drilldowns/mappings.json | 16 +-- .../feature_controls/security/mappings.json | 24 ++-- .../feature_controls/spaces/mappings.json | 24 ++-- .../dashboard_view_mode/mappings.json | 16 +-- .../feature_controls/security/mappings.json | 24 ++-- .../feature_controls/spaces/mappings.json | 24 ++-- .../es_archives/empty_kibana/mappings.json | 16 +-- .../es_archives/fleet/agents/mappings.json | 24 ++-- .../es_archives/hybrid/kibana/mappings.json | 24 ++-- .../es_archives/ingest/policies/mappings.json | 24 ++-- .../mappings.json | 26 ++-- .../es_archives/lens/basic/mappings.json | 24 ++-- .../es_archives/lens/reporting/mappings.json | 24 ++-- .../es_archives/logstash/empty/mappings.json | 24 ++-- .../logstash/example_pipelines/mappings.json | 26 ++-- .../es_archives/maps/kibana/mappings.json | 24 ++-- .../reporting/ecommerce/mappings.json | 26 ++-- .../reporting/ecommerce_kibana/mappings.json | 26 ++-- .../reporting/hugedata/mappings.json | 24 ++-- .../es_archives/reporting/logs/mappings.json | 18 +-- .../es_archives/reporting/nanos/mappings.json | 24 ++-- .../es_archives/reporting/sales/mappings.json | 16 +-- .../reporting/scripted_small/mappings.json | 24 ++-- .../feature_controls/security/mappings.json | 26 ++-- .../security/discover/mappings.json | 16 +-- .../security/flstest/kibana/mappings.json | 24 ++-- .../spaces/copy_saved_objects/mappings.json | 18 +-- .../spaces/disabled_features/mappings.json | 24 ++-- .../spaces/enter_space/mappings.json | 16 +-- .../spaces/multi_space/mappings.json | 16 +-- .../es_archives/spaces/selector/mappings.json | 16 +-- .../timelion/feature_controls/mappings.json | 18 +-- .../visualize/default/mappings.json | 124 +++++++++--------- .../es_archives/default/mappings.json | 26 ++-- .../saved_objects/spaces/mappings.json | 24 ++-- .../custom_rule_with_timeline/mappings.json | 26 ++-- .../es_archives/custom_rules/mappings.json | 26 ++-- .../es_archives/empty_kibana/mappings.json | 16 +-- .../prebuilt_rules_loaded/mappings.json | 26 ++-- .../es_archives/timeline/mappings.json | 26 ++-- .../es_archives/timeline_alerts/mappings.json | 26 ++-- .../saved_objects/spaces/mappings.json | 24 ++-- 67 files changed, 755 insertions(+), 751 deletions(-) diff --git a/src/plugins/timelion/server/plugin.ts b/src/plugins/timelion/server/plugin.ts index 015f0c573e531..90faec259b8bb 100644 --- a/src/plugins/timelion/server/plugin.ts +++ b/src/plugins/timelion/server/plugin.ts @@ -29,18 +29,18 @@ export class TimelionPlugin implements Plugin { mappings: { properties: { description: { type: 'text' }, - hits: { type: 'integer' }, + hits: { type: 'integer', index: false }, kibanaSavedObjectMeta: { properties: { - searchSourceJSON: { type: 'text' }, + searchSourceJSON: { type: 'text', index: false }, }, }, - timelion_chart_height: { type: 'integer' }, - timelion_columns: { type: 'integer' }, - timelion_interval: { type: 'keyword' }, - timelion_other_interval: { type: 'keyword' }, - timelion_rows: { type: 'integer' }, - timelion_sheet: { type: 'text' }, + timelion_chart_height: { type: 'integer', index: false }, + timelion_columns: { type: 'integer', index: false }, + timelion_interval: { type: 'keyword', index: false }, + timelion_other_interval: { type: 'keyword', index: false }, + timelion_rows: { type: 'integer', index: false }, + timelion_sheet: { type: 'text', index: false }, title: { type: 'text' }, version: { type: 'integer' }, }, diff --git a/test/api_integration/fixtures/es_archiver/index_patterns/basic_kibana/mappings.json b/test/api_integration/fixtures/es_archiver/index_patterns/basic_kibana/mappings.json index 99264d7ebbff8..b62692d9fe93c 100644 --- a/test/api_integration/fixtures/es_archiver/index_patterns/basic_kibana/mappings.json +++ b/test/api_integration/fixtures/es_archiver/index_patterns/basic_kibana/mappings.json @@ -152,32 +152,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/test/api_integration/fixtures/es_archiver/management/saved_objects/relationships/mappings.json b/test/api_integration/fixtures/es_archiver/management/saved_objects/relationships/mappings.json index c670508247b1a..fb3c9cf875738 100644 --- a/test/api_integration/fixtures/es_archiver/management/saved_objects/relationships/mappings.json +++ b/test/api_integration/fixtures/es_archiver/management/saved_objects/relationships/mappings.json @@ -97,7 +97,7 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", } } }, @@ -185,32 +185,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -280,4 +280,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/api_integration/fixtures/es_archiver/management/saved_objects/search/mappings.json b/test/api_integration/fixtures/es_archiver/management/saved_objects/search/mappings.json index c670508247b1a..cc877947eb737 100644 --- a/test/api_integration/fixtures/es_archiver/management/saved_objects/search/mappings.json +++ b/test/api_integration/fixtures/es_archiver/management/saved_objects/search/mappings.json @@ -97,15 +97,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -114,7 +114,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -185,32 +185,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -280,4 +280,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/api_integration/fixtures/es_archiver/saved_objects/10k/mappings.json b/test/api_integration/fixtures/es_archiver/saved_objects/10k/mappings.json index 99264d7ebbff8..b62692d9fe93c 100644 --- a/test/api_integration/fixtures/es_archiver/saved_objects/10k/mappings.json +++ b/test/api_integration/fixtures/es_archiver/saved_objects/10k/mappings.json @@ -152,32 +152,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/test/api_integration/fixtures/es_archiver/saved_objects/basic/mappings.json b/test/api_integration/fixtures/es_archiver/saved_objects/basic/mappings.json index 11a7e4cba7458..b62692d9fe93c 100644 --- a/test/api_integration/fixtures/es_archiver/saved_objects/basic/mappings.json +++ b/test/api_integration/fixtures/es_archiver/saved_objects/basic/mappings.json @@ -152,32 +152,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -250,4 +250,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/api_integration/fixtures/es_archiver/search/count/mappings.json b/test/api_integration/fixtures/es_archiver/search/count/mappings.json index b62c5da05c2e6..94077577b453c 100644 --- a/test/api_integration/fixtures/es_archiver/search/count/mappings.json +++ b/test/api_integration/fixtures/es_archiver/search/count/mappings.json @@ -43,32 +43,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -293,4 +293,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/dashboard/current/kibana/mappings.json b/test/functional/fixtures/es_archiver/dashboard/current/kibana/mappings.json index 9f5edaad0fe76..1dc8325da16a6 100644 --- a/test/functional/fixtures/es_archiver/dashboard/current/kibana/mappings.json +++ b/test/functional/fixtures/es_archiver/dashboard/current/kibana/mappings.json @@ -372,32 +372,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -487,4 +487,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/dashboard/legacy/mappings.json b/test/functional/fixtures/es_archiver/dashboard/legacy/mappings.json index a89fe1dfacfc8..353a5a73a2df1 100644 --- a/test/functional/fixtures/es_archiver/dashboard/legacy/mappings.json +++ b/test/functional/fixtures/es_archiver/dashboard/legacy/mappings.json @@ -141,32 +141,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -241,4 +241,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/discover/mappings.json b/test/functional/fixtures/es_archiver/discover/mappings.json index 82002c095bcc5..f6365d0261776 100644 --- a/test/functional/fixtures/es_archiver/discover/mappings.json +++ b/test/functional/fixtures/es_archiver/discover/mappings.json @@ -141,32 +141,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/test/functional/fixtures/es_archiver/empty_kibana/mappings.json b/test/functional/fixtures/es_archiver/empty_kibana/mappings.json index 403a891ba1175..ba205a85f7ecf 100644 --- a/test/functional/fixtures/es_archiver/empty_kibana/mappings.json +++ b/test/functional/fixtures/es_archiver/empty_kibana/mappings.json @@ -150,32 +150,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/test/functional/fixtures/es_archiver/hamlet/mappings.json b/test/functional/fixtures/es_archiver/hamlet/mappings.json index bf051eb072be5..eeaeef1d6c450 100644 --- a/test/functional/fixtures/es_archiver/hamlet/mappings.json +++ b/test/functional/fixtures/es_archiver/hamlet/mappings.json @@ -236,32 +236,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -373,4 +373,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/invalid_scripted_field/mappings.json b/test/functional/fixtures/es_archiver/invalid_scripted_field/mappings.json index 0024c6943ed1c..99ccb3173f7c4 100644 --- a/test/functional/fixtures/es_archiver/invalid_scripted_field/mappings.json +++ b/test/functional/fixtures/es_archiver/invalid_scripted_field/mappings.json @@ -146,32 +146,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -247,4 +247,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/kibana_sample_data_flights_index_pattern/mappings.json b/test/functional/fixtures/es_archiver/kibana_sample_data_flights_index_pattern/mappings.json index caa1a9d8ddc11..a097cc090500d 100644 --- a/test/functional/fixtures/es_archiver/kibana_sample_data_flights_index_pattern/mappings.json +++ b/test/functional/fixtures/es_archiver/kibana_sample_data_flights_index_pattern/mappings.json @@ -251,32 +251,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -461,4 +461,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/management/mappings.json b/test/functional/fixtures/es_archiver/management/mappings.json index a89fe1dfacfc8..353a5a73a2df1 100644 --- a/test/functional/fixtures/es_archiver/management/mappings.json +++ b/test/functional/fixtures/es_archiver/management/mappings.json @@ -141,32 +141,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -241,4 +241,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/mgmt/mappings.json b/test/functional/fixtures/es_archiver/mgmt/mappings.json index 28198102d3d68..da6fc2ac418ef 100644 --- a/test/functional/fixtures/es_archiver/mgmt/mappings.json +++ b/test/functional/fixtures/es_archiver/mgmt/mappings.json @@ -89,15 +89,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -106,7 +106,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -177,32 +177,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -279,4 +279,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/saved_objects_management/edit_saved_object/mappings.json b/test/functional/fixtures/es_archiver/saved_objects_management/edit_saved_object/mappings.json index 96e6b7c0a19f1..a47b7d24cdc22 100644 --- a/test/functional/fixtures/es_archiver/saved_objects_management/edit_saved_object/mappings.json +++ b/test/functional/fixtures/es_archiver/saved_objects_management/edit_saved_object/mappings.json @@ -193,15 +193,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -210,7 +210,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -361,32 +361,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -456,4 +456,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/timelion/mappings.json b/test/functional/fixtures/es_archiver/timelion/mappings.json index a89fe1dfacfc8..353a5a73a2df1 100644 --- a/test/functional/fixtures/es_archiver/timelion/mappings.json +++ b/test/functional/fixtures/es_archiver/timelion/mappings.json @@ -141,32 +141,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -241,4 +241,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/visualize/mappings.json b/test/functional/fixtures/es_archiver/visualize/mappings.json index a50aed233eea6..4458ef9f0fb7e 100644 --- a/test/functional/fixtures/es_archiver/visualize/mappings.json +++ b/test/functional/fixtures/es_archiver/visualize/mappings.json @@ -141,32 +141,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/test/functional/fixtures/es_archiver/visualize_embedding/mappings.json b/test/functional/fixtures/es_archiver/visualize_embedding/mappings.json index a89fe1dfacfc8..353a5a73a2df1 100644 --- a/test/functional/fixtures/es_archiver/visualize_embedding/mappings.json +++ b/test/functional/fixtures/es_archiver/visualize_embedding/mappings.json @@ -141,32 +141,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -241,4 +241,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/visualize_source-filters/mappings.json b/test/functional/fixtures/es_archiver/visualize_source-filters/mappings.json index a89fe1dfacfc8..353a5a73a2df1 100644 --- a/test/functional/fixtures/es_archiver/visualize_source-filters/mappings.json +++ b/test/functional/fixtures/es_archiver/visualize_source-filters/mappings.json @@ -141,32 +141,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -241,4 +241,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/es_archiver/visualize_source_filters/mappings.json b/test/functional/fixtures/es_archiver/visualize_source_filters/mappings.json index 0f17621dbf529..68487abb506fe 100644 --- a/test/functional/fixtures/es_archiver/visualize_source_filters/mappings.json +++ b/test/functional/fixtures/es_archiver/visualize_source_filters/mappings.json @@ -159,32 +159,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -259,4 +259,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/plugins/graph/server/saved_objects/graph_workspace.ts b/x-pack/plugins/graph/server/saved_objects/graph_workspace.ts index 8e8cb64aac1b9..57c31b6794262 100644 --- a/x-pack/plugins/graph/server/saved_objects/graph_workspace.ts +++ b/x-pack/plugins/graph/server/saved_objects/graph_workspace.ts @@ -20,14 +20,17 @@ export const graphWorkspace: SavedObjectsType = { properties: { searchSourceJSON: { type: 'text', + index: false, }, }, }, numLinks: { type: 'integer', + index: false, }, numVertices: { type: 'integer', + index: false, }, title: { type: 'text', @@ -37,6 +40,7 @@ export const graphWorkspace: SavedObjectsType = { }, wsState: { type: 'text', + index: false, }, }, }, diff --git a/x-pack/test/encrypted_saved_objects_api_integration/fixtures/es_archiver/encrypted_saved_objects/mappings.json b/x-pack/test/encrypted_saved_objects_api_integration/fixtures/es_archiver/encrypted_saved_objects/mappings.json index c025ad9da1a9c..f8736b7a88dd5 100644 --- a/x-pack/test/encrypted_saved_objects_api_integration/fixtures/es_archiver/encrypted_saved_objects/mappings.json +++ b/x-pack/test/encrypted_saved_objects_api_integration/fixtures/es_archiver/encrypted_saved_objects/mappings.json @@ -1511,15 +1511,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1528,7 +1528,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -2169,32 +2169,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -2410,4 +2410,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/canvas/default/mappings.json b/x-pack/test/functional/es_archives/canvas/default/mappings.json index 3bde3969e5ded..9512a14c5bee7 100644 --- a/x-pack/test/functional/es_archives/canvas/default/mappings.json +++ b/x-pack/test/functional/es_archives/canvas/default/mappings.json @@ -105,15 +105,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -122,7 +122,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -251,32 +251,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -352,4 +352,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/dashboard/drilldowns/mappings.json b/x-pack/test/functional/es_archives/dashboard/drilldowns/mappings.json index 210fade40c648..353a5a73a2df1 100644 --- a/x-pack/test/functional/es_archives/dashboard/drilldowns/mappings.json +++ b/x-pack/test/functional/es_archives/dashboard/drilldowns/mappings.json @@ -141,32 +141,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/dashboard/feature_controls/security/mappings.json b/x-pack/test/functional/es_archives/dashboard/feature_controls/security/mappings.json index ebb5b19387faf..aca135e565a04 100644 --- a/x-pack/test/functional/es_archives/dashboard/feature_controls/security/mappings.json +++ b/x-pack/test/functional/es_archives/dashboard/feature_controls/security/mappings.json @@ -193,15 +193,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -210,7 +210,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -389,32 +389,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/dashboard/feature_controls/spaces/mappings.json b/x-pack/test/functional/es_archives/dashboard/feature_controls/spaces/mappings.json index 12cdc07e1d478..121fb11e8d173 100644 --- a/x-pack/test/functional/es_archives/dashboard/feature_controls/spaces/mappings.json +++ b/x-pack/test/functional/es_archives/dashboard/feature_controls/spaces/mappings.json @@ -193,15 +193,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -210,7 +210,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -361,32 +361,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/dashboard_view_mode/mappings.json b/x-pack/test/functional/es_archives/dashboard_view_mode/mappings.json index 3558e89558a56..6fc3ddae7d675 100644 --- a/x-pack/test/functional/es_archives/dashboard_view_mode/mappings.json +++ b/x-pack/test/functional/es_archives/dashboard_view_mode/mappings.json @@ -202,32 +202,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/discover/feature_controls/security/mappings.json b/x-pack/test/functional/es_archives/discover/feature_controls/security/mappings.json index 6df7a19959b29..68a51d475356e 100644 --- a/x-pack/test/functional/es_archives/discover/feature_controls/security/mappings.json +++ b/x-pack/test/functional/es_archives/discover/feature_controls/security/mappings.json @@ -193,15 +193,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -210,7 +210,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -361,32 +361,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/discover/feature_controls/spaces/mappings.json b/x-pack/test/functional/es_archives/discover/feature_controls/spaces/mappings.json index 12cdc07e1d478..121fb11e8d173 100644 --- a/x-pack/test/functional/es_archives/discover/feature_controls/spaces/mappings.json +++ b/x-pack/test/functional/es_archives/discover/feature_controls/spaces/mappings.json @@ -193,15 +193,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -210,7 +210,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -361,32 +361,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/empty_kibana/mappings.json b/x-pack/test/functional/es_archives/empty_kibana/mappings.json index 77eac534850a5..259dd23943246 100644 --- a/x-pack/test/functional/es_archives/empty_kibana/mappings.json +++ b/x-pack/test/functional/es_archives/empty_kibana/mappings.json @@ -181,32 +181,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/fleet/agents/mappings.json b/x-pack/test/functional/es_archives/fleet/agents/mappings.json index 15e5a5524107b..8262623ab1494 100644 --- a/x-pack/test/functional/es_archives/fleet/agents/mappings.json +++ b/x-pack/test/functional/es_archives/fleet/agents/mappings.json @@ -1681,15 +1681,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1698,7 +1698,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -2841,32 +2841,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/hybrid/kibana/mappings.json b/x-pack/test/functional/es_archives/hybrid/kibana/mappings.json index 5256e29956f4f..38f680f8689f7 100644 --- a/x-pack/test/functional/es_archives/hybrid/kibana/mappings.json +++ b/x-pack/test/functional/es_archives/hybrid/kibana/mappings.json @@ -308,15 +308,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -325,7 +325,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -896,32 +896,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/ingest/policies/mappings.json b/x-pack/test/functional/es_archives/ingest/policies/mappings.json index 878d6aa58c225..66ea054643297 100644 --- a/x-pack/test/functional/es_archives/ingest/policies/mappings.json +++ b/x-pack/test/functional/es_archives/ingest/policies/mappings.json @@ -494,15 +494,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -511,7 +511,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -1371,32 +1371,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/kibana_scripted_fields_on_logstash/mappings.json b/x-pack/test/functional/es_archives/kibana_scripted_fields_on_logstash/mappings.json index 1816ebfc11891..eeaf182d93980 100644 --- a/x-pack/test/functional/es_archives/kibana_scripted_fields_on_logstash/mappings.json +++ b/x-pack/test/functional/es_archives/kibana_scripted_fields_on_logstash/mappings.json @@ -1530,15 +1530,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1547,7 +1547,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -2528,32 +2528,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -2760,4 +2760,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/lens/basic/mappings.json b/x-pack/test/functional/es_archives/lens/basic/mappings.json index f2a29f022ff5e..bc101fac1024a 100644 --- a/x-pack/test/functional/es_archives/lens/basic/mappings.json +++ b/x-pack/test/functional/es_archives/lens/basic/mappings.json @@ -341,15 +341,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -358,7 +358,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -1119,32 +1119,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/lens/reporting/mappings.json b/x-pack/test/functional/es_archives/lens/reporting/mappings.json index 8b8e5a0e6e7f6..2cfabe99b5a9d 100644 --- a/x-pack/test/functional/es_archives/lens/reporting/mappings.json +++ b/x-pack/test/functional/es_archives/lens/reporting/mappings.json @@ -341,15 +341,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -358,7 +358,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -1128,32 +1128,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/logstash/empty/mappings.json b/x-pack/test/functional/es_archives/logstash/empty/mappings.json index 096c68aefcc3c..e332e4f324130 100644 --- a/x-pack/test/functional/es_archives/logstash/empty/mappings.json +++ b/x-pack/test/functional/es_archives/logstash/empty/mappings.json @@ -90,15 +90,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -107,7 +107,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -213,32 +213,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/logstash/example_pipelines/mappings.json b/x-pack/test/functional/es_archives/logstash/example_pipelines/mappings.json index 9e56ff8a7a43a..4b1d581b79f86 100644 --- a/x-pack/test/functional/es_archives/logstash/example_pipelines/mappings.json +++ b/x-pack/test/functional/es_archives/logstash/example_pipelines/mappings.json @@ -90,15 +90,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -107,7 +107,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -210,32 +210,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -310,4 +310,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/maps/kibana/mappings.json b/x-pack/test/functional/es_archives/maps/kibana/mappings.json index 7f421123bddf8..c062c1a6acf47 100644 --- a/x-pack/test/functional/es_archives/maps/kibana/mappings.json +++ b/x-pack/test/functional/es_archives/maps/kibana/mappings.json @@ -110,15 +110,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -127,7 +127,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -306,32 +306,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/reporting/ecommerce/mappings.json b/x-pack/test/functional/es_archives/reporting/ecommerce/mappings.json index 9e3275bd40bfe..38085b41c5e51 100644 --- a/x-pack/test/functional/es_archives/reporting/ecommerce/mappings.json +++ b/x-pack/test/functional/es_archives/reporting/ecommerce/mappings.json @@ -443,15 +443,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -460,7 +460,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -1051,32 +1051,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -1223,4 +1223,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/reporting/ecommerce_kibana/mappings.json b/x-pack/test/functional/es_archives/reporting/ecommerce_kibana/mappings.json index fbcfa4cbe49b3..060284058d0d3 100644 --- a/x-pack/test/functional/es_archives/reporting/ecommerce_kibana/mappings.json +++ b/x-pack/test/functional/es_archives/reporting/ecommerce_kibana/mappings.json @@ -1836,15 +1836,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1853,7 +1853,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -2862,32 +2862,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -3048,4 +3048,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/reporting/hugedata/mappings.json b/x-pack/test/functional/es_archives/reporting/hugedata/mappings.json index d36bbc72f4ffa..22fbdc7b52307 100644 --- a/x-pack/test/functional/es_archives/reporting/hugedata/mappings.json +++ b/x-pack/test/functional/es_archives/reporting/hugedata/mappings.json @@ -198,15 +198,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -215,7 +215,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -527,32 +527,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/reporting/logs/mappings.json b/x-pack/test/functional/es_archives/reporting/logs/mappings.json index adf4050bb88c4..e7f3183f2bcaa 100644 --- a/x-pack/test/functional/es_archives/reporting/logs/mappings.json +++ b/x-pack/test/functional/es_archives/reporting/logs/mappings.json @@ -199,32 +199,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -299,4 +299,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/reporting/nanos/mappings.json b/x-pack/test/functional/es_archives/reporting/nanos/mappings.json index dd717387a2643..01365b2f476ca 100644 --- a/x-pack/test/functional/es_archives/reporting/nanos/mappings.json +++ b/x-pack/test/functional/es_archives/reporting/nanos/mappings.json @@ -290,15 +290,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -307,7 +307,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -887,32 +887,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/reporting/sales/mappings.json b/x-pack/test/functional/es_archives/reporting/sales/mappings.json index 3249708537b73..e4ab70d4bf017 100644 --- a/x-pack/test/functional/es_archives/reporting/sales/mappings.json +++ b/x-pack/test/functional/es_archives/reporting/sales/mappings.json @@ -199,32 +199,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/reporting/scripted_small/mappings.json b/x-pack/test/functional/es_archives/reporting/scripted_small/mappings.json index 8c192b21f822a..a3400ceb5ec84 100644 --- a/x-pack/test/functional/es_archives/reporting/scripted_small/mappings.json +++ b/x-pack/test/functional/es_archives/reporting/scripted_small/mappings.json @@ -198,15 +198,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -215,7 +215,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -527,32 +527,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/saved_objects_management/feature_controls/security/mappings.json b/x-pack/test/functional/es_archives/saved_objects_management/feature_controls/security/mappings.json index 96e6b7c0a19f1..a47b7d24cdc22 100644 --- a/x-pack/test/functional/es_archives/saved_objects_management/feature_controls/security/mappings.json +++ b/x-pack/test/functional/es_archives/saved_objects_management/feature_controls/security/mappings.json @@ -193,15 +193,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -210,7 +210,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -361,32 +361,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -456,4 +456,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/security/discover/mappings.json b/x-pack/test/functional/es_archives/security/discover/mappings.json index 3558e89558a56..6fc3ddae7d675 100644 --- a/x-pack/test/functional/es_archives/security/discover/mappings.json +++ b/x-pack/test/functional/es_archives/security/discover/mappings.json @@ -202,32 +202,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/security/flstest/kibana/mappings.json b/x-pack/test/functional/es_archives/security/flstest/kibana/mappings.json index c7e786b20ac19..9a0b35f227ee0 100644 --- a/x-pack/test/functional/es_archives/security/flstest/kibana/mappings.json +++ b/x-pack/test/functional/es_archives/security/flstest/kibana/mappings.json @@ -110,15 +110,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -127,7 +127,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -306,32 +306,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/spaces/copy_saved_objects/mappings.json b/x-pack/test/functional/es_archives/spaces/copy_saved_objects/mappings.json index 0d54500e83eb7..d48c145b94160 100644 --- a/x-pack/test/functional/es_archives/spaces/copy_saved_objects/mappings.json +++ b/x-pack/test/functional/es_archives/spaces/copy_saved_objects/mappings.json @@ -181,32 +181,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -328,4 +328,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/functional/es_archives/spaces/disabled_features/mappings.json b/x-pack/test/functional/es_archives/spaces/disabled_features/mappings.json index 88e63e23ea00c..8e176ecfbdcf1 100644 --- a/x-pack/test/functional/es_archives/spaces/disabled_features/mappings.json +++ b/x-pack/test/functional/es_archives/spaces/disabled_features/mappings.json @@ -193,15 +193,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -210,7 +210,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -361,32 +361,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/spaces/enter_space/mappings.json b/x-pack/test/functional/es_archives/spaces/enter_space/mappings.json index f3793c7ca6780..79623f4238e33 100644 --- a/x-pack/test/functional/es_archives/spaces/enter_space/mappings.json +++ b/x-pack/test/functional/es_archives/spaces/enter_space/mappings.json @@ -184,32 +184,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/spaces/multi_space/mappings.json b/x-pack/test/functional/es_archives/spaces/multi_space/mappings.json index 77eac534850a5..259dd23943246 100644 --- a/x-pack/test/functional/es_archives/spaces/multi_space/mappings.json +++ b/x-pack/test/functional/es_archives/spaces/multi_space/mappings.json @@ -181,32 +181,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/spaces/selector/mappings.json b/x-pack/test/functional/es_archives/spaces/selector/mappings.json index 77eac534850a5..259dd23943246 100644 --- a/x-pack/test/functional/es_archives/spaces/selector/mappings.json +++ b/x-pack/test/functional/es_archives/spaces/selector/mappings.json @@ -181,32 +181,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/timelion/feature_controls/mappings.json b/x-pack/test/functional/es_archives/timelion/feature_controls/mappings.json index 88e63e23ea00c..95e8a5a62411b 100644 --- a/x-pack/test/functional/es_archives/timelion/feature_controls/mappings.json +++ b/x-pack/test/functional/es_archives/timelion/feature_controls/mappings.json @@ -193,7 +193,7 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", } } }, @@ -361,32 +361,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/functional/es_archives/visualize/default/mappings.json b/x-pack/test/functional/es_archives/visualize/default/mappings.json index cc9a80589e5ae..21a67315494e1 100644 --- a/x-pack/test/functional/es_archives/visualize/default/mappings.json +++ b/x-pack/test/functional/es_archives/visualize/default/mappings.json @@ -186,34 +186,34 @@ } }, "graph-workspace": { - "properties": { - "description": { - "type": "text" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } + "properties": { + "description": { + "type": "text" + }, + "kibanaSavedObjectMeta": { + "properties": { + "searchSourceJSON": { + "type": "text", "index": false } - }, - "numLinks": { - "type": "integer" - }, - "numVertices": { - "type": "integer" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - }, - "wsState": { - "type": "text" } + }, + "numLinks": { + "type": "integer", "index": false + }, + "numVertices": { + "type": "integer", "index": false + }, + "title": { + "type": "text" + }, + "version": { + "type": "integer" + }, + "wsState": { + "type": "text", "index": false } - }, + } + }, "index-pattern": { "properties": { "fieldFormatMap": { @@ -356,46 +356,46 @@ } }, "timelion-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } + "properties": { + "description": { + "type": "text" + }, + "hits": { + "type": "integer", "index": false + }, + "kibanaSavedObjectMeta": { + "properties": { + "searchSourceJSON": { + "type": "text", "index": false } - }, - "timelion_chart_height": { - "type": "integer" - }, - "timelion_columns": { - "type": "integer" - }, - "timelion_interval": { - "type": "keyword" - }, - "timelion_other_interval": { - "type": "keyword" - }, - "timelion_rows": { - "type": "integer" - }, - "timelion_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" } + }, + "timelion_chart_height": { + "type": "integer", "index": false + }, + "timelion_columns": { + "type": "integer", "index": false + }, + "timelion_interval": { + "type": "keyword", "index": false + }, + "timelion_other_interval": { + "type": "keyword", "index": false + }, + "timelion_rows": { + "type": "integer", "index": false + }, + "timelion_sheet": { + "type": "text", "index": false + }, + "title": { + "type": "text" + }, + "version": { + "type": "integer" } - }, + } + }, "type": { "type": "keyword" }, diff --git a/x-pack/test/page_load_metrics/es_archives/default/mappings.json b/x-pack/test/page_load_metrics/es_archives/default/mappings.json index c36f9576c4df1..e1dfd92d7c75d 100644 --- a/x-pack/test/page_load_metrics/es_archives/default/mappings.json +++ b/x-pack/test/page_load_metrics/es_archives/default/mappings.json @@ -1506,15 +1506,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1523,7 +1523,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -2143,32 +2143,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -2399,4 +2399,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/saved_object_api_integration/common/fixtures/es_archiver/saved_objects/spaces/mappings.json b/x-pack/test/saved_object_api_integration/common/fixtures/es_archiver/saved_objects/spaces/mappings.json index 7b5b1d86f6bcc..eb90104a593a6 100644 --- a/x-pack/test/saved_object_api_integration/common/fixtures/es_archiver/saved_objects/spaces/mappings.json +++ b/x-pack/test/saved_object_api_integration/common/fixtures/es_archiver/saved_objects/spaces/mappings.json @@ -101,15 +101,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -118,7 +118,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -265,32 +265,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/security_solution_cypress/es_archives/custom_rule_with_timeline/mappings.json b/x-pack/test/security_solution_cypress/es_archives/custom_rule_with_timeline/mappings.json index d01e6344bcfaf..dd1565a8320b3 100644 --- a/x-pack/test/security_solution_cypress/es_archives/custom_rule_with_timeline/mappings.json +++ b/x-pack/test/security_solution_cypress/es_archives/custom_rule_with_timeline/mappings.json @@ -1950,15 +1950,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1967,7 +1967,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -3242,32 +3242,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -7980,4 +7980,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/security_solution_cypress/es_archives/custom_rules/mappings.json b/x-pack/test/security_solution_cypress/es_archives/custom_rules/mappings.json index ee72812359ae2..752d242a55053 100644 --- a/x-pack/test/security_solution_cypress/es_archives/custom_rules/mappings.json +++ b/x-pack/test/security_solution_cypress/es_archives/custom_rules/mappings.json @@ -1770,15 +1770,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1787,7 +1787,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -2742,32 +2742,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -5698,4 +5698,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/security_solution_cypress/es_archives/empty_kibana/mappings.json b/x-pack/test/security_solution_cypress/es_archives/empty_kibana/mappings.json index 77eac534850a5..259dd23943246 100644 --- a/x-pack/test/security_solution_cypress/es_archives/empty_kibana/mappings.json +++ b/x-pack/test/security_solution_cypress/es_archives/empty_kibana/mappings.json @@ -181,32 +181,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" diff --git a/x-pack/test/security_solution_cypress/es_archives/prebuilt_rules_loaded/mappings.json b/x-pack/test/security_solution_cypress/es_archives/prebuilt_rules_loaded/mappings.json index f4278c4d4318f..aab7cce21fcba 100644 --- a/x-pack/test/security_solution_cypress/es_archives/prebuilt_rules_loaded/mappings.json +++ b/x-pack/test/security_solution_cypress/es_archives/prebuilt_rules_loaded/mappings.json @@ -1776,15 +1776,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1793,7 +1793,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -2775,32 +2775,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -2961,4 +2961,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/security_solution_cypress/es_archives/timeline/mappings.json b/x-pack/test/security_solution_cypress/es_archives/timeline/mappings.json index fcc16afd963d8..e5068ba430e6f 100644 --- a/x-pack/test/security_solution_cypress/es_archives/timeline/mappings.json +++ b/x-pack/test/security_solution_cypress/es_archives/timeline/mappings.json @@ -1785,15 +1785,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -1802,7 +1802,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -2793,32 +2793,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -2979,4 +2979,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/security_solution_cypress/es_archives/timeline_alerts/mappings.json b/x-pack/test/security_solution_cypress/es_archives/timeline_alerts/mappings.json index a1a9e7bfeae7f..676c6bd40f799 100644 --- a/x-pack/test/security_solution_cypress/es_archives/timeline_alerts/mappings.json +++ b/x-pack/test/security_solution_cypress/es_archives/timeline_alerts/mappings.json @@ -355,15 +355,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -372,7 +372,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -1278,32 +1278,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text" @@ -9060,4 +9060,4 @@ } } } -} \ No newline at end of file +} diff --git a/x-pack/test/spaces_api_integration/common/fixtures/es_archiver/saved_objects/spaces/mappings.json b/x-pack/test/spaces_api_integration/common/fixtures/es_archiver/saved_objects/spaces/mappings.json index 508de68c32f70..cfb6057abb7bd 100644 --- a/x-pack/test/spaces_api_integration/common/fixtures/es_archiver/saved_objects/spaces/mappings.json +++ b/x-pack/test/spaces_api_integration/common/fixtures/es_archiver/saved_objects/spaces/mappings.json @@ -110,15 +110,15 @@ "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "numLinks": { - "type": "integer" + "type": "integer", "index": false }, "numVertices": { - "type": "integer" + "type": "integer", "index": false }, "title": { "type": "text" @@ -127,7 +127,7 @@ "type": "integer" }, "wsState": { - "type": "text" + "type": "text", "index": false } } }, @@ -232,32 +232,32 @@ "type": "text" }, "hits": { - "type": "integer" + "type": "integer", "index": false }, "kibanaSavedObjectMeta": { "properties": { "searchSourceJSON": { - "type": "text" + "type": "text", "index": false } } }, "timelion_chart_height": { - "type": "integer" + "type": "integer", "index": false }, "timelion_columns": { - "type": "integer" + "type": "integer", "index": false }, "timelion_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_other_interval": { - "type": "keyword" + "type": "keyword", "index": false }, "timelion_rows": { - "type": "integer" + "type": "integer", "index": false }, "timelion_sheet": { - "type": "text" + "type": "text", "index": false }, "title": { "type": "text"