From 9824d171289bd0f442ecfb88e60394dcaad246b1 Mon Sep 17 00:00:00 2001 From: Cameron Lamb Date: Wed, 12 Jun 2024 12:00:55 +0100 Subject: [PATCH 1/6] Stop calling update_index with --schema-only --- src/core/tasks.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/tasks.py b/src/core/tasks.py index 823c4768f..91a1a36bf 100644 --- a/src/core/tasks.py +++ b/src/core/tasks.py @@ -28,10 +28,6 @@ def ingest_uk_staff_locations(self): @celery_app.task(bind=True) def update_search_index(self): - # Run update_index --schema-only - call_command("update_index", schema_only=True) - - # Run update_index call_command("update_index") From 27c744265f0cfdd6cdc60a038e7bf587b24f85cd Mon Sep 17 00:00:00 2001 From: Cameron Lamb Date: Wed, 12 Jun 2024 12:01:48 +0100 Subject: [PATCH 2/6] Add a new method that stores the current index mapping to JSON and adds a test to confirm if it has changed --- .../commands/create_index_mapping_json.py | 34 + .../management/commands/indexed_mapping.json | 4481 +++++++++++++++++ src/extended_search/tests/test_indexed.py | 23 +- 3 files changed, 4534 insertions(+), 4 deletions(-) create mode 100644 src/extended_search/management/commands/create_index_mapping_json.py create mode 100644 src/extended_search/management/commands/indexed_mapping.json diff --git a/src/extended_search/management/commands/create_index_mapping_json.py b/src/extended_search/management/commands/create_index_mapping_json.py new file mode 100644 index 000000000..cc50e1624 --- /dev/null +++ b/src/extended_search/management/commands/create_index_mapping_json.py @@ -0,0 +1,34 @@ +from pathlib import Path + +from django.core.management.base import BaseCommand +from wagtail.search.backends import get_search_backend + +from extended_search.index import get_indexed_models + + +# Path: src/extended_search/management/commands/create_index_fields_json.py +JSON_FILE = Path(__file__).parent / "indexed_mapping.json" + + +def get_indexed_mapping_dict(): + """ + Return a dictionary of indexed models and their fields + Ignoring some models that we don't care about. + """ + + search_backend = get_search_backend() + + return { + str(model): search_backend.mapping_class(model).get_mapping() + for model in get_indexed_models() + } + + +class Command(BaseCommand): + help = "Create test JSON containing the mapping for all indexed models" + + def handle(self, *args, **options): + import json + + with open(JSON_FILE, "w") as f: + json.dump(get_indexed_mapping_dict(), f, indent=4) diff --git a/src/extended_search/management/commands/indexed_mapping.json b/src/extended_search/management/commands/indexed_mapping.json new file mode 100644 index 000000000..8885fc52a --- /dev/null +++ b/src/extended_search/management/commands/indexed_mapping.json @@ -0,0 +1,4481 @@ +{ + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_navigationpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_navigationpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_navigationpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_navigationpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_navigationpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_navigationpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_blogpost__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_blogpost__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_blogpost__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_blogpost__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_blogpost__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_blogpost__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_blogpost__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_blogpost__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_blogpost__is_creatable_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "news_newspage__last_published_at_scorefunction_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_pagewithtopics__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "news_newspage__search_categories": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "news_newspage__search_categories_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "news_newspage__pinned_on_home_filter": { + "type": "boolean" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "working_at_dit_workingatdithome__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "working_at_dit_workingatdithome__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "working_at_dit_workingatdithome__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "working_at_dit_workingatdithome__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "working_at_dit_workingatdithome__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_workingatdithome__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_workingatdithome__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "working_at_dit_workingatdithome__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "working_at_dit_workingatdithome__is_creatable_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_topic__content_owner": { + "type": "nested", + "properties": { + "working_at_dit_topic__first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_topic__preferred_first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_topic__last_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + } + } + }, + "working_at_dit_topic__content_contact_email_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_pagewithtopics__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_pagewithtopics__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_howdoi__content_owner": { + "type": "nested", + "properties": { + "working_at_dit_howdoi__first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_howdoi__preferred_first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_howdoi__last_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + } + } + }, + "working_at_dit_howdoi__content_contact_email_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "working_at_dit_howdoihome__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "working_at_dit_howdoihome__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "working_at_dit_howdoihome__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "working_at_dit_howdoihome__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "working_at_dit_howdoihome__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_howdoihome__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_howdoihome__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "working_at_dit_howdoihome__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "working_at_dit_howdoihome__is_creatable_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_pagewithtopics__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_guidance__content_owner": { + "type": "nested", + "properties": { + "working_at_dit_guidance__first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_guidance__preferred_first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_guidance__last_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + } + } + }, + "working_at_dit_guidance__content_contact_email_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_pagewithtopics__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_policy__content_owner": { + "type": "nested", + "properties": { + "working_at_dit_policy__first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_policy__preferred_first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_policy__last_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + } + } + }, + "working_at_dit_policy__content_contact_email_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "working_at_dit_pagewithtopics__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "tools_tool__search_tool_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "tools_tool__search_tool_name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "tools_tool__search_tool_name_keyword": { + "type": "text", + "analyzer": "no_spaces", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "tools_tool__search_tool_name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + }, + "_all_text_boost_10_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "tools_toolshome__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "tools_toolshome__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "tools_toolshome__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "tools_toolshome__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "tools_toolshome__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "tools_toolshome__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "tools_toolshome__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "tools_toolshome__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "tools_toolshome__is_creatable_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "about_us_aboutus__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "about_us_aboutus__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "about_us_aboutushome__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "about_us_aboutushome__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "networks_networkshome__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "networks_networkshome__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "networks_networkshome__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "networks_networkshome__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "networks_networkshome__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "networks_networkshome__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "networks_networkshome__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "networks_networkshome__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "networks_networkshome__is_creatable_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "content_contentpage__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "content_contentpage__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "content_contentpage__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "content_contentpage__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "networks_network__topic_titles_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "networks_network__topic_titles": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "networks_network__content_owner": { + "type": "nested", + "properties": { + "networks_network__first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "networks_network__preferred_first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "networks_network__last_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + } + } + }, + "networks_network__content_contact_email_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "country_fact_sheet_countryfactsheethome__search_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "country_fact_sheet_countryfactsheethome__search_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ] + }, + "country_fact_sheet_countryfactsheethome__search_headings_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "country_fact_sheet_countryfactsheethome__search_headings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "country_fact_sheet_countryfactsheethome__search_content_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "country_fact_sheet_countryfactsheethome__search_content": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "country_fact_sheet_countryfactsheethome__excerpt_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "country_fact_sheet_countryfactsheethome__excerpt": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "country_fact_sheet_countryfactsheethome__is_creatable_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "full_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_7_0" + ] + }, + "full_name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_7_0" + ] + }, + "full_name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_7_0" + ] + }, + "first_name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_7_0" + ] + }, + "first_name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "preferred_first_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_7_0" + ] + }, + "preferred_first_name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_7_0" + ] + }, + "preferred_first_name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "last_name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_7_0" + ] + }, + "last_name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_7_0" + ] + }, + "last_name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "email": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "email_keyword": { + "type": "text", + "analyzer": "no_spaces", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "contact_email": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "contact_email_keyword": { + "type": "text", + "analyzer": "no_spaces", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "primary_phone_number": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "primary_phone_number_keyword": { + "type": "text", + "analyzer": "no_spaces", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "secondary_phone_number": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "secondary_phone_number_keyword": { + "type": "text", + "analyzer": "no_spaces", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "search_grade_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "search_buildings": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "roles": { + "type": "nested", + "properties": { + "peoplefinder_person__job_title_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + }, + "peoplefinder_person__job_title": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ] + } + } + }, + "key_skills": { + "type": "nested", + "properties": { + "peoplefinder_person__name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ] + }, + "peoplefinder_person__name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ] + } + } + }, + "other_key_skills_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ] + }, + "other_key_skills": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ] + }, + "learning_interests": { + "type": "nested", + "properties": { + "peoplefinder_person__name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ] + } + } + }, + "additional_roles": { + "type": "nested", + "properties": { + "peoplefinder_person__name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ] + }, + "peoplefinder_person__name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ] + } + } + }, + "networks": { + "type": "nested", + "properties": { + "peoplefinder_person__name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_5" + ] + }, + "peoplefinder_person__name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_5" + ] + }, + "peoplefinder_person__name_filter": { + "type": "keyword" + } + } + }, + "networks_filter": { + "type": "integer" + }, + "international_building": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "search_location": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "fluent_languages": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "search_teams_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "search_teams": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "profile_completion_scorefunction_filter": { + "type": "integer" + }, + "is_active_filter": { + "type": "boolean" + }, + "became_inactive_filter": { + "type": "date" + }, + "professions_filter": { + "type": "integer" + }, + "grade_id_filter": { + "type": "integer" + }, + "do_not_work_for_dit_filter": { + "type": "boolean" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_0_8": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_1_5": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_4_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_7_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "name_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "name": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "abbreviation_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "abbreviation": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "abbreviation_keyword": { + "type": "text", + "analyzer": "no_spaces", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ] + }, + "description_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "description": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ] + }, + "roles_in_team_explicit": { + "type": "text", + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "roles_in_team": { + "type": "text", + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_4_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "collection_id_filter": { + "type": "integer" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "tags": { + "type": "nested", + "properties": { + "name": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + } + } + }, + "uploaded_by_user_id_filter": { + "type": "integer" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_10_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "collection_id_filter": { + "type": "integer" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "tags": { + "type": "nested", + "properties": { + "name": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + } + } + }, + "uploaded_by_user_id_filter": { + "type": "integer" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_10_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "id_filter": { + "type": "integer" + }, + "live_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "content_type_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "depth_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "first_published_at_filter": { + "type": "date" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "locale_id_filter": { + "type": "integer" + }, + "translation_key_filter": { + "type": "keyword" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + } + } + }, + "": { + "properties": { + "pk": { + "type": "keyword", + "store": true + }, + "content_type": { + "type": "keyword" + }, + "_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "collection_id_filter": { + "type": "integer" + }, + "title": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "title_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + }, + "title_filter": { + "type": "keyword" + }, + "tags": { + "type": "nested", + "properties": { + "name": { + "type": "text", + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ] + }, + "name_edgengrams": { + "type": "text", + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard" + } + } + }, + "uploaded_by_user_id_filter": { + "type": "integer" + }, + "_all_text": { + "type": "text" + }, + "_all_text_boost_10_0": { + "type": "text" + } + } + } +} \ No newline at end of file diff --git a/src/extended_search/tests/test_indexed.py b/src/extended_search/tests/test_indexed.py index 3363bf45a..114ac8767 100644 --- a/src/extended_search/tests/test_indexed.py +++ b/src/extended_search/tests/test_indexed.py @@ -10,10 +10,6 @@ from core.models.tags import Tag from country_fact_sheet.models import CountryFactSheetHome from extended_search.index import DWIndexedField, class_is_indexed, get_indexed_models -from extended_search.management.commands.create_index_fields_json import ( - JSON_FILE, - get_indexed_models_and_fields_dict, -) from home.models import HomePage from networks.models import Network, NetworksHome from news.models import NewsHome, NewsPage @@ -276,6 +272,11 @@ def test_indexed_models(self): }, "Indexed models have changed, please update this test if this was intentional." def test_indexed_models_and_fields(test): + from extended_search.management.commands.create_index_fields_json import ( + JSON_FILE, + get_indexed_models_and_fields_dict, + ) + with open(JSON_FILE, "r") as f: expected_indexed_models_and_fields = json.load(f) assert ( @@ -286,3 +287,17 @@ def test_indexed_models_and_fields(test): " If this was intentional, please update the JSON file by running the" " `create_index_fields_json` management command." ) + + def test_indexed_mappings(test): + from extended_search.management.commands.create_index_mapping_json import ( + JSON_FILE, + get_indexed_mapping_dict, + ) + + with open(JSON_FILE, "r") as f: + expected_indexed_mapping = json.load(f) + assert get_indexed_mapping_dict() == expected_indexed_mapping, ( + "Indexed mappings have changed." + " If this was intentional, please update the JSON file by running the" + " `create_index_mapping_json` management command." + ) From 4077357e2779555802d5737f040f6dbaad48f6fb Mon Sep 17 00:00:00 2001 From: Cameron Lamb Date: Wed, 12 Jun 2024 12:02:15 +0100 Subject: [PATCH 3/6] Update the update_index_async command to only run if the index mapping has changed --- .../management/commands/update_index_async.py | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/src/core/management/commands/update_index_async.py b/src/core/management/commands/update_index_async.py index bd0755999..44cf65aff 100644 --- a/src/core/management/commands/update_index_async.py +++ b/src/core/management/commands/update_index_async.py @@ -1,4 +1,6 @@ +from django.core.cache import cache from django.core.management.base import BaseCommand +from wagtail.search.management.commands.update_index import Command class Command(BaseCommand): @@ -7,8 +9,41 @@ class Command(BaseCommand): " command" ) + def add_arguments(self, parser): + parser.add_argument( + "--force", + help="Force the update of the search index", + dest="force", + default=False, + ) + def handle(self, *args, **options): from core.tasks import update_search_index + from extended_search.management.commands.create_index_mapping_json import ( + get_indexed_mapping_dict, + ) + + force = options["force"] + perform_update = force + + if not force: + # Get the current search mapping hash + sm_hash = cache.get("search_mapping_hash") + + # Get the search mapping dict + sm_dict = get_indexed_mapping_dict() + # Get the hash of the current search mapping dict + new_sm_hash = hash(frozenset(sm_dict.items())) + + # If the hash of the current search mapping dict is different from the + # hash of the search mapping dict that was stored in the cache, then + # update the search index. + if sm_hash != new_sm_hash: + cache.set("search_mapping_hash", new_sm_hash) + perform_update = True + + if not perform_update: + return update_search_index.delay() From 3113e5723857f022aa51e785a1f83feb0a38fe13 Mon Sep 17 00:00:00 2001 From: Cameron Lamb Date: Wed, 12 Jun 2024 12:12:25 +0100 Subject: [PATCH 4/6] Remove bad import --- src/core/management/commands/update_index_async.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/management/commands/update_index_async.py b/src/core/management/commands/update_index_async.py index 44cf65aff..c11fda0d1 100644 --- a/src/core/management/commands/update_index_async.py +++ b/src/core/management/commands/update_index_async.py @@ -1,6 +1,5 @@ from django.core.cache import cache from django.core.management.base import BaseCommand -from wagtail.search.management.commands.update_index import Command class Command(BaseCommand): From 9fd62d5945fe77cc31bc14d21152a86d638c06dd Mon Sep 17 00:00:00 2001 From: Cameron Lamb Date: Wed, 12 Jun 2024 12:35:24 +0100 Subject: [PATCH 5/6] Fix sorting of the mapping json so it doesn't change each time --- .../commands/create_index_mapping_json.py | 23 +- .../management/commands/indexed_mapping.json | 5134 ++++++++--------- 2 files changed, 2588 insertions(+), 2569 deletions(-) diff --git a/src/extended_search/management/commands/create_index_mapping_json.py b/src/extended_search/management/commands/create_index_mapping_json.py index cc50e1624..e712af809 100644 --- a/src/extended_search/management/commands/create_index_mapping_json.py +++ b/src/extended_search/management/commands/create_index_mapping_json.py @@ -1,7 +1,10 @@ from pathlib import Path from django.core.management.base import BaseCommand +from wagtail.documents.models import Document +from wagtail.images.models import Image from wagtail.search.backends import get_search_backend +from wagtailmedia.models import Media from extended_search.index import get_indexed_models @@ -10,17 +13,33 @@ JSON_FILE = Path(__file__).parent / "indexed_mapping.json" +def get_sorted_mapping(search_backend, model): + mapping = search_backend.mapping_class(model).get_mapping() + + def sort_dict(d): + sorted_dict = dict(sorted(d.items())) + for k, v in d.items(): + if isinstance(v, dict): + sorted_dict[k] = sort_dict(v) + else: + sorted_dict[k] = v + return sorted_dict + + return sort_dict(mapping) + + def get_indexed_mapping_dict(): """ Return a dictionary of indexed models and their fields Ignoring some models that we don't care about. """ - search_backend = get_search_backend() return { - str(model): search_backend.mapping_class(model).get_mapping() + str(model): get_sorted_mapping(search_backend, model) for model in get_indexed_models() + # if model not in [Media, Document, Image] + if model._meta.app_label != "testapp" } diff --git a/src/extended_search/management/commands/indexed_mapping.json b/src/extended_search/management/commands/indexed_mapping.json index 8885fc52a..49bccf4df 100644 --- a/src/extended_search/management/commands/indexed_mapping.json +++ b/src/extended_search/management/commands/indexed_mapping.json @@ -1,1099 +1,1118 @@ { "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_1_0": { + "type": "text" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" + }, + "content_type": { + "type": "keyword" }, "name": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, "name_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "_all_text": { + "search_analyzer": "standard", "type": "text" }, - "_all_text_boost_1_0": { - "type": "text" + "pk": { + "store": true, + "type": "keyword" } } }, "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_2_0": { + "type": "text" }, "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title_filter": { + "content_type": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "_all_text": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true + "path_filter": { + "type": "keyword" }, - "content_type": { + "pk": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "live_filter": { - "type": "boolean" + "_all_text_boost_2_0": { + "type": "text" }, - "owner_id_filter": { - "type": "integer" + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "content_type": { + "type": "keyword" }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "_all_text": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true + "path_filter": { + "type": "keyword" }, - "content_type": { + "pk": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, - "content_type_id_filter": { - "type": "integer" - }, - "path_filter": { + "translation_key_filter": { "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" + "_all_text_boost_1_0": { + "type": "text" }, - "first_published_at_filter": { - "type": "date" + "_all_text_boost_2_0": { + "type": "text" }, - "last_published_at_filter": { - "type": "date" + "_all_text_boost_3_0": { + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "_all_text_boost_5_0": { + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "translation_key_filter": { - "type": "keyword" + "content_contentpage__excerpt": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_title_explicit": { - "type": "text", + "content_contentpage__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "content_contentpage__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__search_headings_explicit": { - "type": "text", + "content_contentpage__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "content_contentpage__search_headings": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_3_0" - ] + ], + "type": "text" }, - "content_contentpage__search_content_explicit": { - "type": "text", + "content_contentpage__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__search_content": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "content_contentpage__excerpt_explicit": { - "type": "text", + "content_contentpage__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "content_contentpage__excerpt": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "content_contentpage__is_creatable_filter": { + "content_type": { "type": "keyword" }, - "_all_text": { - "type": "text" + "content_type_id_filter": { + "type": "integer" }, - "_all_text_boost_1_0": { - "type": "text" + "depth_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - }, - "_all_text_boost_3_0": { - "type": "text" - }, - "_all_text_boost_5_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" + "first_published_at_filter": { + "type": "date" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "id_filter": { + "type": "integer" }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "last_published_at_filter": { + "type": "date" }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "latest_revision_created_at_filter": { + "type": "date" }, - "title_filter": { - "type": "keyword" + "live_filter": { + "type": "boolean" }, - "id_filter": { + "locale_id_filter": { "type": "integer" }, - "live_filter": { + "locked_filter": { "type": "boolean" }, "owner_id_filter": { "type": "integer" }, - "content_type_id_filter": { - "type": "integer" - }, "path_filter": { "type": "keyword" }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" + "pk": { + "store": true, + "type": "keyword" }, "show_in_menus_filter": { "type": "boolean" }, - "first_published_at_filter": { - "type": "date" - }, - "last_published_at_filter": { - "type": "date" + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "title_filter": { + "type": "keyword" }, "translation_key_filter": { "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "content_navigationpage__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0": { + "type": "text" }, - "content_navigationpage__search_title": { - "type": "text", + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + }, + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "content_navigationpage__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_navigationpage__search_headings_explicit": { - "type": "text", + "content_navigationpage__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "content_navigationpage__search_headings": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_3_0" - ] + ], + "type": "text" }, - "content_navigationpage__search_content_explicit": { - "type": "text", + "content_navigationpage__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_navigationpage__search_content": { - "type": "text", + "content_navigationpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] - }, - "_all_text": { - "type": "text" - }, - "_all_text_boost_1_0": { - "type": "text" - }, - "_all_text_boost_2_0": { - "type": "text" - }, - "_all_text_boost_3_0": { - "type": "text" - }, - "_all_text_boost_5_0": { + "_all_text_boost_5_0" + ], "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", + "content_navigationpage__search_title_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "_all_text_boost_5_0" + ], + "type": "text" }, - "title_filter": { + "content_type": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "_all_text": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true + "path_filter": { + "type": "keyword" }, - "content_type": { + "pk": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "live_filter": { - "type": "boolean" + "_all_text_boost_2_0": { + "type": "text" }, - "owner_id_filter": { - "type": "integer" + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "content_type": { + "type": "keyword" }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "content_blogpost__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "owner_id_filter": { + "type": "integer" }, - "content_blogpost__search_title": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "path_filter": { + "type": "keyword" }, - "content_blogpost__search_headings_explicit": { - "type": "text", - "analyzer": "simple", + "pk": { + "store": true, + "type": "keyword" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "title": { "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_blogpost__search_headings": { - "type": "text", + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "title_filter": { + "type": "keyword" + }, + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" + }, + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + }, + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "content_blogpost__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_blogpost__search_content_explicit": { - "type": "text", + "content_blogpost__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" + }, + "content_blogpost__is_creatable_filter": { + "type": "keyword" }, "content_blogpost__search_content": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "content_blogpost__excerpt_explicit": { - "type": "text", + "content_blogpost__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_blogpost__excerpt": { - "type": "text", + "content_blogpost__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "content_blogpost__is_creatable_filter": { - "type": "keyword" - }, - "_all_text": { - "type": "text" - }, - "_all_text_boost_1_0": { + "_all_text_boost_3_0" + ], "type": "text" }, - "_all_text_boost_2_0": { + "content_blogpost__search_headings_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ], "type": "text" }, - "_all_text_boost_3_0": { + "content_blogpost__search_title": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], "type": "text" }, - "_all_text_boost_5_0": { + "content_blogpost__search_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true }, "content_type": { "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "content_type_id_filter": { + "type": "integer" }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "depth_filter": { + "type": "integer" }, - "title_filter": { - "type": "keyword" + "first_published_at_filter": { + "type": "date" }, "id_filter": { "type": "integer" }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, "live_filter": { "type": "boolean" }, - "owner_id_filter": { + "locale_id_filter": { "type": "integer" }, - "content_type_id_filter": { + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { "type": "integer" }, "path_filter": { "type": "keyword" }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" + "pk": { + "store": true, + "type": "keyword" }, "show_in_menus_filter": { "type": "boolean" }, - "first_published_at_filter": { - "type": "date" - }, - "news_newspage__last_published_at_scorefunction_filter": { - "type": "date" + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "title_filter": { + "type": "keyword" }, "translation_key_filter": { "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "content_contentpage__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0": { + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + }, + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "content_contentpage__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_headings_explicit": { - "type": "text", + "content_contentpage__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_headings": { - "type": "text", + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "content_contentpage__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "content_contentpage__search_content_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "content_contentpage__search_content": { - "type": "text", + "content_contentpage__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__excerpt_explicit": { - "type": "text", + "content_contentpage__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__excerpt": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "content_contentpage__is_creatable_filter": { - "type": "keyword" + "_all_text_boost_5_0" + ], + "type": "text" }, - "working_at_dit_pagewithtopics__topic_titles_explicit": { - "type": "text", + "content_contentpage__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "working_at_dit_pagewithtopics__topic_titles": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "content_type": { + "type": "keyword" + }, + "content_type_id_filter": { + "type": "integer" + }, + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" + }, + "id_filter": { + "type": "integer" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "news_newspage__last_published_at_scorefunction_filter": { + "type": "date" + }, + "news_newspage__pinned_on_home_filter": { + "type": "boolean" }, "news_newspage__search_categories": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, "news_newspage__search_categories_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "news_newspage__pinned_on_home_filter": { + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "pk": { + "store": true, + "type": "keyword" + }, + "show_in_menus_filter": { "type": "boolean" }, - "_all_text": { + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], "type": "text" }, - "_all_text_boost_1_0": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", "type": "text" }, - "_all_text_boost_2_0": { - "type": "text" + "title_filter": { + "type": "keyword" }, - "_all_text_boost_3_0": { + "translation_key_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], "type": "text" }, - "_all_text_boost_5_0": { + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], "type": "text" } } }, "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_2_0": { + "type": "text" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title_filter": { + "content_type": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "_all_text": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true + "path_filter": { + "type": "keyword" }, - "content_type": { + "pk": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "live_filter": { - "type": "boolean" + "_all_text_boost_1_0": { + "type": "text" }, - "owner_id_filter": { - "type": "integer" + "_all_text_boost_2_0": { + "type": "text" }, - "content_type_id_filter": { - "type": "integer" + "_all_text_boost_3_0": { + "type": "text" }, - "path_filter": { + "_all_text_boost_5_0": { + "type": "text" + }, + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "content_type": { "type": "keyword" }, - "depth_filter": { + "content_type_id_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" + "depth_filter": { + "type": "integer" }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { "type": "keyword" }, - "working_at_dit_workingatdithome__search_title_explicit": { - "type": "text", - "analyzer": "simple", + "pk": { + "store": true, + "type": "keyword" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "title": { "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "working_at_dit_workingatdithome__search_title": { - "type": "text", + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "title_filter": { + "type": "keyword" + }, + "translation_key_filter": { + "type": "keyword" + }, + "working_at_dit_workingatdithome__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "working_at_dit_workingatdithome__search_headings_explicit": { - "type": "text", + "working_at_dit_workingatdithome__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "working_at_dit_workingatdithome__search_headings": { - "type": "text", + "working_at_dit_workingatdithome__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_workingatdithome__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "working_at_dit_workingatdithome__search_content_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_workingatdithome__search_content": { - "type": "text", + "working_at_dit_workingatdithome__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "working_at_dit_workingatdithome__excerpt_explicit": { - "type": "text", + "working_at_dit_workingatdithome__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "working_at_dit_workingatdithome__excerpt": { - "type": "text", + "working_at_dit_workingatdithome__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "working_at_dit_workingatdithome__is_creatable_filter": { - "type": "keyword" + "_all_text_boost_5_0" + ], + "type": "text" }, + "working_at_dit_workingatdithome__search_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], + "type": "text" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, @@ -1108,425 +1127,425 @@ }, "_all_text_boost_5_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title": { - "type": "text", + "content_contentpage__excerpt": { + "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "content_contentpage__excerpt_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "title_filter": { + "content_contentpage__is_creatable_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" + "content_contentpage__search_content": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" }, - "live_filter": { - "type": "boolean" + "content_contentpage__search_content_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" }, - "owner_id_filter": { - "type": "integer" + "content_contentpage__search_headings": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_type_id_filter": { - "type": "integer" + "content_contentpage__search_headings_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ], + "type": "text" }, - "path_filter": { + "content_contentpage__search_title": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], + "type": "text" + }, + "content_contentpage__search_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], + "type": "text" + }, + "content_type": { "type": "keyword" }, - "depth_filter": { + "content_type_id_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" + "depth_filter": { + "type": "integer" }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" - }, - "content_contentpage__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] - }, - "content_contentpage__search_title": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] - }, - "content_contentpage__search_headings_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_3_0" - ] + "locked_filter": { + "type": "boolean" }, - "content_contentpage__search_headings": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_3_0" - ] + "owner_id_filter": { + "type": "integer" }, - "content_contentpage__search_content_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "path_filter": { + "type": "keyword" }, - "content_contentpage__search_content": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "pk": { + "store": true, + "type": "keyword" }, - "content_contentpage__excerpt_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "show_in_menus_filter": { + "type": "boolean" }, - "content_contentpage__excerpt": { - "type": "text", - "analyzer": "snowball", + "title": { "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, - "content_contentpage__is_creatable_filter": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "title_filter": { + "type": "keyword" + }, + "translation_key_filter": { "type": "keyword" }, + "working_at_dit_topic__content_contact_email_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" + }, "working_at_dit_topic__content_owner": { - "type": "nested", "properties": { "working_at_dit_topic__first_name_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_topic__preferred_first_name_explicit": { - "type": "text", + "working_at_dit_topic__last_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_topic__last_name_explicit": { - "type": "text", + "working_at_dit_topic__preferred_first_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" } - } - }, - "working_at_dit_topic__content_contact_email_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] - }, - "_all_text": { - "type": "text" - }, - "_all_text_boost_1_0": { - "type": "text" - }, - "_all_text_boost_2_0": { - "type": "text" - }, - "_all_text_boost_3_0": { - "type": "text" - }, - "_all_text_boost_5_0": { - "type": "text" + }, + "type": "nested" } } }, "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_2_0": { + "type": "text" }, "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title_filter": { + "content_type": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "_all_text": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true + "path_filter": { + "type": "keyword" }, - "content_type": { + "pk": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, - "content_type_id_filter": { - "type": "integer" - }, - "path_filter": { + "translation_key_filter": { "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "depth_filter": { - "type": "integer" + "_all_text_boost_1_0": { + "type": "text" }, - "locked_filter": { - "type": "boolean" + "_all_text_boost_2_0": { + "type": "text" }, - "show_in_menus_filter": { - "type": "boolean" + "_all_text_boost_3_0": { + "type": "text" }, - "first_published_at_filter": { - "type": "date" + "_all_text_boost_5_0": { + "type": "text" }, - "last_published_at_filter": { - "type": "date" + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "content_contentpage__excerpt": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "content_contentpage__excerpt_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "translation_key_filter": { + "content_contentpage__is_creatable_filter": { "type": "keyword" }, - "content_contentpage__search_title_explicit": { - "type": "text", + "content_contentpage__search_content": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" + }, + "content_contentpage__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "content_contentpage__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, "content_contentpage__search_headings_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_3_0" - ] + ], + "type": "text" }, - "content_contentpage__search_headings": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "content_contentpage__search_content_explicit": { - "type": "text", + "content_contentpage__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" + }, + "content_type": { + "type": "keyword" + }, + "content_type_id_filter": { + "type": "integer" + }, + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" + }, + "id_filter": { + "type": "integer" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "pk": { + "store": true, + "type": "keyword" }, - "content_contentpage__search_content": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "show_in_menus_filter": { + "type": "boolean" }, - "content_contentpage__excerpt_explicit": { - "type": "text", - "analyzer": "simple", + "title": { "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, - "content_contentpage__excerpt": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "content_contentpage__is_creatable_filter": { + "title_filter": { "type": "keyword" }, - "working_at_dit_pagewithtopics__topic_titles_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "translation_key_filter": { + "type": "keyword" }, "working_at_dit_pagewithtopics__topic_titles": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, @@ -1541,197 +1560,197 @@ }, "_all_text_boost_5_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title": { - "type": "text", + "content_contentpage__excerpt": { + "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title_filter": { - "type": "keyword" - }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, - "content_type_id_filter": { - "type": "integer" - }, - "path_filter": { - "type": "keyword" - }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, - "first_published_at_filter": { - "type": "date" - }, - "last_published_at_filter": { - "type": "date" - }, - "latest_revision_created_at_filter": { - "type": "date" - }, - "locale_id_filter": { - "type": "integer" - }, - "translation_key_filter": { - "type": "keyword" + ], + "type": "text" }, - "content_contentpage__search_title_explicit": { - "type": "text", + "content_contentpage__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "content_contentpage__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__search_headings_explicit": { - "type": "text", + "content_contentpage__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "content_contentpage__search_headings": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_3_0" - ] + ], + "type": "text" }, - "content_contentpage__search_content_explicit": { - "type": "text", + "content_contentpage__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__search_content": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "content_contentpage__excerpt_explicit": { - "type": "text", + "content_contentpage__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "content_contentpage__excerpt": { - "type": "text", - "analyzer": "snowball", + "content_type": { + "type": "keyword" + }, + "content_type_id_filter": { + "type": "integer" + }, + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" + }, + "id_filter": { + "type": "integer" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "pk": { + "store": true, + "type": "keyword" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "title": { "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, - "content_contentpage__is_creatable_filter": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "title_filter": { "type": "keyword" }, - "working_at_dit_pagewithtopics__topic_titles_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "translation_key_filter": { + "type": "keyword" }, - "working_at_dit_pagewithtopics__topic_titles": { - "type": "text", - "analyzer": "snowball", + "working_at_dit_howdoi__content_contact_email_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, "working_at_dit_howdoi__content_owner": { - "type": "nested", "properties": { "working_at_dit_howdoi__first_name_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_howdoi__preferred_first_name_explicit": { - "type": "text", + "working_at_dit_howdoi__last_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_howdoi__last_name_explicit": { - "type": "text", + "working_at_dit_howdoi__preferred_first_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" } - } + }, + "type": "nested" }, - "working_at_dit_howdoi__content_contact_email_explicit": { - "type": "text", - "analyzer": "simple", + "working_at_dit_pagewithtopics__topic_titles": { + "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, @@ -1746,144 +1765,144 @@ }, "_all_text_boost_5_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "content_type": { + "type": "keyword" }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "content_type_id_filter": { + "type": "integer" }, - "title_filter": { - "type": "keyword" + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" }, "id_filter": { "type": "integer" }, - "live_filter": { + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { "type": "boolean" }, "owner_id_filter": { "type": "integer" }, - "content_type_id_filter": { - "type": "integer" - }, "path_filter": { "type": "keyword" }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" + "pk": { + "store": true, + "type": "keyword" }, "show_in_menus_filter": { "type": "boolean" }, - "first_published_at_filter": { - "type": "date" - }, - "last_published_at_filter": { - "type": "date" + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "title_filter": { + "type": "keyword" }, "translation_key_filter": { "type": "keyword" }, - "working_at_dit_howdoihome__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] - }, - "working_at_dit_howdoihome__search_title": { - "type": "text", + "working_at_dit_howdoihome__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "working_at_dit_howdoihome__search_headings_explicit": { - "type": "text", + "working_at_dit_howdoihome__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "working_at_dit_howdoihome__search_headings": { - "type": "text", + "working_at_dit_howdoihome__is_creatable_filter": { + "type": "keyword" + }, + "working_at_dit_howdoihome__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "working_at_dit_howdoihome__search_content_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_howdoihome__search_content": { - "type": "text", + "working_at_dit_howdoihome__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "working_at_dit_howdoihome__excerpt_explicit": { - "type": "text", + "working_at_dit_howdoihome__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "working_at_dit_howdoihome__excerpt": { - "type": "text", + "working_at_dit_howdoihome__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "working_at_dit_howdoihome__is_creatable_filter": { - "type": "keyword" + "_all_text_boost_5_0" + ], + "type": "text" }, + "working_at_dit_howdoihome__search_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], + "type": "text" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, @@ -1898,197 +1917,197 @@ }, "_all_text_boost_5_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title": { - "type": "text", + "content_contentpage__excerpt": { + "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title_filter": { - "type": "keyword" - }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, - "content_type_id_filter": { - "type": "integer" - }, - "path_filter": { - "type": "keyword" - }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, - "first_published_at_filter": { - "type": "date" - }, - "last_published_at_filter": { - "type": "date" - }, - "latest_revision_created_at_filter": { - "type": "date" - }, - "locale_id_filter": { - "type": "integer" - }, - "translation_key_filter": { - "type": "keyword" + ], + "type": "text" }, - "content_contentpage__search_title_explicit": { - "type": "text", + "content_contentpage__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "content_contentpage__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__search_headings_explicit": { - "type": "text", + "content_contentpage__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "content_contentpage__search_headings": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_3_0" - ] + ], + "type": "text" }, - "content_contentpage__search_content_explicit": { - "type": "text", + "content_contentpage__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__search_content": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "content_contentpage__excerpt_explicit": { - "type": "text", + "content_contentpage__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "content_contentpage__excerpt": { - "type": "text", - "analyzer": "snowball", + "content_type": { + "type": "keyword" + }, + "content_type_id_filter": { + "type": "integer" + }, + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" + }, + "id_filter": { + "type": "integer" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "pk": { + "store": true, + "type": "keyword" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "title": { "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, - "content_contentpage__is_creatable_filter": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "title_filter": { "type": "keyword" }, - "working_at_dit_pagewithtopics__topic_titles_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "translation_key_filter": { + "type": "keyword" }, - "working_at_dit_pagewithtopics__topic_titles": { - "type": "text", - "analyzer": "snowball", + "working_at_dit_guidance__content_contact_email_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, "working_at_dit_guidance__content_owner": { - "type": "nested", "properties": { "working_at_dit_guidance__first_name_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_guidance__preferred_first_name_explicit": { - "type": "text", + "working_at_dit_guidance__last_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_guidance__last_name_explicit": { - "type": "text", + "working_at_dit_guidance__preferred_first_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" } - } + }, + "type": "nested" }, - "working_at_dit_guidance__content_contact_email_explicit": { - "type": "text", - "analyzer": "simple", + "working_at_dit_pagewithtopics__topic_titles": { + "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, @@ -2103,622 +2122,625 @@ }, "_all_text_boost_5_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title": { - "type": "text", + "content_contentpage__excerpt": { + "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "content_contentpage__excerpt_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "title_filter": { + "content_contentpage__is_creatable_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" + "content_contentpage__search_content": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" }, - "live_filter": { - "type": "boolean" + "content_contentpage__search_content_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" }, - "owner_id_filter": { - "type": "integer" + "content_contentpage__search_headings": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_type_id_filter": { - "type": "integer" + "content_contentpage__search_headings_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ], + "type": "text" }, - "path_filter": { + "content_contentpage__search_title": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], + "type": "text" + }, + "content_contentpage__search_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], + "type": "text" + }, + "content_type": { "type": "keyword" }, - "depth_filter": { + "content_type_id_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" + "depth_filter": { + "type": "integer" }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "content_contentpage__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "owner_id_filter": { + "type": "integer" }, - "content_contentpage__search_title": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "path_filter": { + "type": "keyword" }, - "content_contentpage__search_headings_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_3_0" - ] + "pk": { + "store": true, + "type": "keyword" }, - "content_contentpage__search_headings": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_3_0" - ] + "show_in_menus_filter": { + "type": "boolean" }, - "content_contentpage__search_content_explicit": { - "type": "text", - "analyzer": "simple", + "title": { "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_content": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "content_contentpage__excerpt_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "title_filter": { + "type": "keyword" }, - "content_contentpage__excerpt": { - "type": "text", + "translation_key_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "content_contentpage__is_creatable_filter": { - "type": "keyword" + "_all_text_boost_1_0" + ], + "type": "text" }, "working_at_dit_pagewithtopics__topic_titles_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_pagewithtopics__topic_titles": { - "type": "text", - "analyzer": "snowball", + "working_at_dit_policy__content_contact_email_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, "working_at_dit_policy__content_owner": { - "type": "nested", "properties": { "working_at_dit_policy__first_name_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_policy__preferred_first_name_explicit": { - "type": "text", + "working_at_dit_policy__last_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "working_at_dit_policy__last_name_explicit": { - "type": "text", + "working_at_dit_policy__preferred_first_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" } - } - }, - "working_at_dit_policy__content_contact_email_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] - }, - "_all_text": { - "type": "text" - }, - "_all_text_boost_1_0": { - "type": "text" - }, - "_all_text_boost_2_0": { - "type": "text" - }, - "_all_text_boost_3_0": { - "type": "text" - }, - "_all_text_boost_5_0": { - "type": "text" + }, + "type": "nested" } } }, "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_2_0": { + "type": "text" }, "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title_filter": { + "content_type": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "_all_text": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true + "path_filter": { + "type": "keyword" }, - "content_type": { + "pk": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "live_filter": { - "type": "boolean" + "_all_text_boost_2_0": { + "type": "text" }, - "owner_id_filter": { - "type": "integer" + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "content_type": { + "type": "keyword" }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "_all_text": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true + "path_filter": { + "type": "keyword" }, - "content_type": { + "pk": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "live_filter": { - "type": "boolean" + "_all_text_boost_2_0": { + "type": "text" }, - "owner_id_filter": { - "type": "integer" + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "content_type": { + "type": "keyword" }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "locked_filter": { + "type": "boolean" }, - "_all_text": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_2_0": { - "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true + "path_filter": { + "type": "keyword" }, - "content_type": { + "pk": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, - "content_type_id_filter": { - "type": "integer" - }, - "path_filter": { + "translation_key_filter": { "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "depth_filter": { - "type": "integer" + "_all_text_boost_10_0": { + "type": "text" }, - "locked_filter": { - "type": "boolean" + "_all_text_boost_1_0": { + "type": "text" }, - "show_in_menus_filter": { - "type": "boolean" + "_all_text_boost_2_0": { + "type": "text" }, - "first_published_at_filter": { - "type": "date" + "_all_text_boost_3_0": { + "type": "text" }, - "last_published_at_filter": { - "type": "date" + "_all_text_boost_5_0": { + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "content_contentpage__excerpt": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "translation_key_filter": { + "content_contentpage__excerpt_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" + }, + "content_contentpage__is_creatable_filter": { "type": "keyword" }, - "content_contentpage__search_title_explicit": { - "type": "text", + "content_contentpage__search_content": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" + }, + "content_contentpage__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "content_contentpage__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, "content_contentpage__search_headings_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_3_0" - ] + ], + "type": "text" }, - "content_contentpage__search_headings": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "content_contentpage__search_content_explicit": { - "type": "text", + "content_contentpage__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" + }, + "content_type": { + "type": "keyword" + }, + "content_type_id_filter": { + "type": "integer" + }, + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" + }, + "id_filter": { + "type": "integer" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "pk": { + "store": true, + "type": "keyword" }, - "content_contentpage__search_content": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] + "show_in_menus_filter": { + "type": "boolean" }, - "content_contentpage__excerpt_explicit": { - "type": "text", - "analyzer": "simple", + "title": { "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, - "content_contentpage__excerpt": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "content_contentpage__is_creatable_filter": { + "title_filter": { "type": "keyword" }, - "working_at_dit_pagewithtopics__topic_titles_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_1_0" - ] - }, - "working_at_dit_pagewithtopics__topic_titles": { - "type": "text", + "tools_tool__search_tool_name": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_10_0" + ], + "type": "text" + }, + "tools_tool__search_tool_name_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, "tools_tool__search_tool_name_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_10_0" - ] - }, - "tools_tool__search_tool_name": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_10_0" - ] + ], + "type": "text" }, "tools_tool__search_tool_name_keyword": { - "type": "text", "analyzer": "no_spaces", "copy_to": [ "_all_text", "_all_text_boost_10_0" - ] + ], + "type": "text" }, - "tools_tool__search_tool_name_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "translation_key_filter": { + "type": "keyword" + }, + "working_at_dit_pagewithtopics__topic_titles": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" }, + "working_at_dit_pagewithtopics__topic_titles_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, @@ -2734,146 +2756,143 @@ "_all_text_boost_5_0": { "type": "text" }, - "_all_text_boost_10_0": { + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true }, "content_type": { "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "content_type_id_filter": { + "type": "integer" }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "depth_filter": { + "type": "integer" }, - "title_filter": { - "type": "keyword" + "first_published_at_filter": { + "type": "date" }, "id_filter": { "type": "integer" }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, "live_filter": { "type": "boolean" }, - "owner_id_filter": { + "locale_id_filter": { "type": "integer" }, - "content_type_id_filter": { + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { "type": "integer" }, "path_filter": { "type": "keyword" }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" + "pk": { + "store": true, + "type": "keyword" }, "show_in_menus_filter": { "type": "boolean" }, - "first_published_at_filter": { - "type": "date" - }, - "last_published_at_filter": { - "type": "date" - }, - "latest_revision_created_at_filter": { - "type": "date" + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "translation_key_filter": { + "title_filter": { "type": "keyword" }, - "tools_toolshome__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] - }, - "tools_toolshome__search_title": { - "type": "text", + "tools_toolshome__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "tools_toolshome__search_headings_explicit": { - "type": "text", + "tools_toolshome__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "tools_toolshome__search_headings": { - "type": "text", + "tools_toolshome__is_creatable_filter": { + "type": "keyword" + }, + "tools_toolshome__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "tools_toolshome__search_content_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "tools_toolshome__search_content": { - "type": "text", + "tools_toolshome__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "tools_toolshome__excerpt_explicit": { - "type": "text", + "tools_toolshome__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "tools_toolshome__excerpt": { - "type": "text", + "tools_toolshome__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "tools_toolshome__is_creatable_filter": { - "type": "keyword" + "tools_toolshome__search_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], + "type": "text" }, + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, @@ -2888,328 +2907,328 @@ }, "_all_text_boost_5_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title_filter": { - "type": "keyword" - }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, - "content_type_id_filter": { - "type": "integer" - }, - "path_filter": { - "type": "keyword" - }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, - "first_published_at_filter": { - "type": "date" - }, - "last_published_at_filter": { - "type": "date" - }, - "latest_revision_created_at_filter": { - "type": "date" - }, - "locale_id_filter": { - "type": "integer" - }, - "translation_key_filter": { - "type": "keyword" - }, - "content_contentpage__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "search_analyzer": "standard", + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "about_us_aboutus__topic_titles": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__search_headings_explicit": { - "type": "text", + "about_us_aboutus__topic_titles_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__search_headings": { - "type": "text", + "content_contentpage__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_content_explicit": { - "type": "text", + "content_contentpage__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" + }, + "content_contentpage__is_creatable_filter": { + "type": "keyword" }, "content_contentpage__search_content": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "content_contentpage__excerpt_explicit": { - "type": "text", + "content_contentpage__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__excerpt": { - "type": "text", + "content_contentpage__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "content_contentpage__is_creatable_filter": { - "type": "keyword" + "_all_text_boost_3_0" + ], + "type": "text" }, - "about_us_aboutus__topic_titles_explicit": { - "type": "text", + "content_contentpage__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "about_us_aboutus__topic_titles": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] - }, - "_all_text": { - "type": "text" - }, - "_all_text_boost_1_0": { - "type": "text" - }, - "_all_text_boost_2_0": { - "type": "text" - }, - "_all_text_boost_3_0": { + "_all_text_boost_5_0" + ], "type": "text" }, - "_all_text_boost_5_0": { + "content_contentpage__search_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true }, "content_type": { "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] + "content_type_id_filter": { + "type": "integer" }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "depth_filter": { + "type": "integer" }, - "title_filter": { - "type": "keyword" + "first_published_at_filter": { + "type": "date" }, "id_filter": { "type": "integer" }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, "live_filter": { "type": "boolean" }, - "owner_id_filter": { + "locale_id_filter": { "type": "integer" }, - "content_type_id_filter": { + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { "type": "integer" }, "path_filter": { "type": "keyword" }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" + "pk": { + "store": true, + "type": "keyword" }, "show_in_menus_filter": { "type": "boolean" }, - "first_published_at_filter": { - "type": "date" - }, - "last_published_at_filter": { - "type": "date" + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "title_filter": { + "type": "keyword" }, "translation_key_filter": { "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "content_contentpage__search_title_explicit": { - "type": "text", + "_all_text_boost_1_0": { + "type": "text" + }, + "_all_text_boost_2_0": { + "type": "text" + }, + "_all_text_boost_3_0": { + "type": "text" + }, + "_all_text_boost_5_0": { + "type": "text" + }, + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "about_us_aboutushome__topic_titles": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], + "type": "text" + }, + "about_us_aboutushome__topic_titles_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "content_contentpage__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_headings_explicit": { - "type": "text", + "content_contentpage__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_headings": { - "type": "text", + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "content_contentpage__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "content_contentpage__search_content_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "content_contentpage__search_content": { - "type": "text", + "content_contentpage__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__excerpt_explicit": { - "type": "text", + "content_contentpage__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__excerpt": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "content_contentpage__is_creatable_filter": { - "type": "keyword" + "_all_text_boost_5_0" + ], + "type": "text" }, - "about_us_aboutushome__topic_titles_explicit": { - "type": "text", + "content_contentpage__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "about_us_aboutushome__topic_titles": { - "type": "text", - "analyzer": "snowball", + "content_type": { + "type": "keyword" + }, + "content_type_id_filter": { + "type": "integer" + }, + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" + }, + "id_filter": { + "type": "integer" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "pk": { + "store": true, + "type": "keyword" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "title": { "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" + }, + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "title_filter": { + "type": "keyword" }, + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, @@ -3224,1257 +3243,1238 @@ }, "_all_text_boost_5_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title_filter": { + "content_type": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" - }, - "networks_networkshome__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "locked_filter": { + "type": "boolean" }, - "networks_networkshome__search_title": { - "type": "text", + "networks_networkshome__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "networks_networkshome__search_headings_explicit": { - "type": "text", + "networks_networkshome__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "networks_networkshome__search_headings": { - "type": "text", + "networks_networkshome__is_creatable_filter": { + "type": "keyword" + }, + "networks_networkshome__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "networks_networkshome__search_content_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "networks_networkshome__search_content": { - "type": "text", + "networks_networkshome__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "networks_networkshome__excerpt_explicit": { - "type": "text", + "networks_networkshome__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "networks_networkshome__excerpt": { - "type": "text", + "networks_networkshome__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "networks_networkshome__is_creatable_filter": { - "type": "keyword" - }, - "_all_text": { + "_all_text_boost_5_0" + ], "type": "text" }, - "_all_text_boost_1_0": { + "networks_networkshome__search_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_5_0" + ], "type": "text" }, - "_all_text_boost_2_0": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_3_0": { - "type": "text" + "path_filter": { + "type": "keyword" }, - "_all_text_boost_5_0": { - "type": "text" - } - } - }, - "": { - "properties": { "pk": { - "type": "keyword", - "store": true - }, - "content_type": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, - "content_type_id_filter": { - "type": "integer" - }, - "path_filter": { + "translation_key_filter": { "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "depth_filter": { - "type": "integer" - }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, - "first_published_at_filter": { - "type": "date" - }, - "last_published_at_filter": { - "type": "date" + "_all_text_boost_1_0": { + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "_all_text_boost_2_0": { + "type": "text" }, - "locale_id_filter": { - "type": "integer" + "_all_text_boost_3_0": { + "type": "text" }, - "translation_key_filter": { - "type": "keyword" + "_all_text_boost_5_0": { + "type": "text" }, - "content_contentpage__search_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_5_0" - ] + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "content_contentpage__search_title": { - "type": "text", + "content_contentpage__excerpt": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_headings_explicit": { - "type": "text", + "content_contentpage__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "content_contentpage__search_headings": { - "type": "text", + "content_contentpage__is_creatable_filter": { + "type": "keyword" + }, + "content_contentpage__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "content_contentpage__search_content_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "content_contentpage__search_content": { - "type": "text", + "content_contentpage__search_headings": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__excerpt_explicit": { - "type": "text", + "content_contentpage__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "content_contentpage__excerpt": { - "type": "text", + "content_contentpage__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "content_contentpage__is_creatable_filter": { - "type": "keyword" + "_all_text_boost_5_0" + ], + "type": "text" }, - "networks_network__topic_titles_explicit": { - "type": "text", + "content_contentpage__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" + }, + "content_type": { + "type": "keyword" + }, + "content_type_id_filter": { + "type": "integer" + }, + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" + }, + "id_filter": { + "type": "integer" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" }, - "networks_network__topic_titles": { - "type": "text", - "analyzer": "snowball", + "networks_network__content_contact_email_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, "networks_network__content_owner": { - "type": "nested", "properties": { "networks_network__first_name_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "networks_network__preferred_first_name_explicit": { - "type": "text", + "networks_network__last_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "networks_network__last_name_explicit": { - "type": "text", + "networks_network__preferred_first_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" } - } + }, + "type": "nested" }, - "networks_network__content_contact_email_explicit": { - "type": "text", - "analyzer": "simple", + "networks_network__topic_titles": { + "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] - }, - "_all_text": { + ], "type": "text" }, - "_all_text_boost_1_0": { + "networks_network__topic_titles_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], "type": "text" }, - "_all_text_boost_2_0": { - "type": "text" + "owner_id_filter": { + "type": "integer" }, - "_all_text_boost_3_0": { - "type": "text" + "path_filter": { + "type": "keyword" }, - "_all_text_boost_5_0": { - "type": "text" - } - } - }, - "": { - "properties": { "pk": { - "type": "keyword", - "store": true - }, - "content_type": { + "store": true, "type": "keyword" }, - "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "show_in_menus_filter": { + "type": "boolean" }, "title": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "title_filter": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, - "content_type_id_filter": { - "type": "integer" - }, - "path_filter": { + "translation_key_filter": { "type": "keyword" + } + } + }, + "": { + "properties": { + "_all_text": { + "type": "text" }, - "depth_filter": { - "type": "integer" + "_all_text_boost_1_0": { + "type": "text" }, - "locked_filter": { - "type": "boolean" + "_all_text_boost_2_0": { + "type": "text" }, - "show_in_menus_filter": { - "type": "boolean" + "_all_text_boost_3_0": { + "type": "text" }, - "first_published_at_filter": { - "type": "date" + "_all_text_boost_5_0": { + "type": "text" }, - "last_published_at_filter": { - "type": "date" + "_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "latest_revision_created_at_filter": { - "type": "date" + "content_type": { + "type": "keyword" }, - "locale_id_filter": { + "content_type_id_filter": { "type": "integer" }, - "translation_key_filter": { - "type": "keyword" + "country_fact_sheet_countryfactsheethome__excerpt": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" }, - "country_fact_sheet_countryfactsheethome__search_title_explicit": { - "type": "text", + "country_fact_sheet_countryfactsheethome__excerpt_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_2_0" + ], + "type": "text" }, - "country_fact_sheet_countryfactsheethome__search_title": { - "type": "text", + "country_fact_sheet_countryfactsheethome__is_creatable_filter": { + "type": "keyword" + }, + "country_fact_sheet_countryfactsheethome__search_content": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_5_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "country_fact_sheet_countryfactsheethome__search_headings_explicit": { - "type": "text", + "country_fact_sheet_countryfactsheethome__search_content_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_3_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "country_fact_sheet_countryfactsheethome__search_headings": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_3_0" - ] + ], + "type": "text" }, - "country_fact_sheet_countryfactsheethome__search_content_explicit": { - "type": "text", + "country_fact_sheet_countryfactsheethome__search_headings_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_3_0" + ], + "type": "text" }, - "country_fact_sheet_countryfactsheethome__search_content": { - "type": "text", + "country_fact_sheet_countryfactsheethome__search_title": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "country_fact_sheet_countryfactsheethome__excerpt_explicit": { - "type": "text", + "country_fact_sheet_countryfactsheethome__search_title_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_5_0" + ], + "type": "text" }, - "country_fact_sheet_countryfactsheethome__excerpt": { - "type": "text", - "analyzer": "snowball", + "depth_filter": { + "type": "integer" + }, + "first_published_at_filter": { + "type": "date" + }, + "id_filter": { + "type": "integer" + }, + "last_published_at_filter": { + "type": "date" + }, + "latest_revision_created_at_filter": { + "type": "date" + }, + "live_filter": { + "type": "boolean" + }, + "locale_id_filter": { + "type": "integer" + }, + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { + "type": "keyword" + }, + "pk": { + "store": true, + "type": "keyword" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "title": { "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] + ], + "type": "text" }, - "country_fact_sheet_countryfactsheethome__is_creatable_filter": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "title_filter": { "type": "keyword" }, + "translation_key_filter": { + "type": "keyword" + } + } + }, + "": { + "properties": { "_all_text": { "type": "text" }, + "_all_text_boost_0_8": { + "type": "text" + }, "_all_text_boost_1_0": { "type": "text" }, + "_all_text_boost_1_5": { + "type": "text" + }, "_all_text_boost_2_0": { "type": "text" }, "_all_text_boost_3_0": { "type": "text" }, - "_all_text_boost_5_0": { + "_all_text_boost_4_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true }, - "content_type": { - "type": "keyword" + "_all_text_boost_7_0": { + "type": "text" }, "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "full_name_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_7_0" - ] - }, - "full_name": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_7_0" - ] - }, - "full_name_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "first_name_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_7_0" - ] - }, - "first_name": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_7_0" - ] + "search_analyzer": "standard", + "type": "text" }, - "first_name_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "additional_roles": { + "properties": { + "peoplefinder_person__name": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ], + "type": "text" + }, + "peoplefinder_person__name_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_0_8" + ], + "type": "text" + } + }, + "type": "nested" }, - "preferred_first_name_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_7_0" - ] + "became_inactive_filter": { + "type": "date" }, - "preferred_first_name": { - "type": "text", + "contact_email": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_7_0" - ] - }, - "preferred_first_name_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "_all_text_boost_4_0" + ], + "type": "text" }, - "last_name_explicit": { - "type": "text", - "analyzer": "simple", + "contact_email_keyword": { + "analyzer": "no_spaces", "copy_to": [ "_all_text", - "_all_text_boost_7_0" - ] + "_all_text_boost_4_0" + ], + "type": "text" }, - "last_name": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_7_0" - ] + "content_type": { + "type": "keyword" }, - "last_name_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "do_not_work_for_dit_filter": { + "type": "boolean" }, "email": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_4_0" - ] + ], + "type": "text" }, "email_keyword": { - "type": "text", "analyzer": "no_spaces", "copy_to": [ "_all_text", "_all_text_boost_4_0" - ] + ], + "type": "text" }, - "contact_email": { - "type": "text", + "first_name": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_4_0" - ] + "_all_text_boost_7_0" + ], + "type": "text" }, - "contact_email_keyword": { - "type": "text", - "analyzer": "no_spaces", - "copy_to": [ - "_all_text", - "_all_text_boost_4_0" - ] + "first_name_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "primary_phone_number": { - "type": "text", - "analyzer": "snowball", + "first_name_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_4_0" - ] + "_all_text_boost_7_0" + ], + "type": "text" }, - "primary_phone_number_keyword": { - "type": "text", - "analyzer": "no_spaces", + "fluent_languages": { + "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_4_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, - "secondary_phone_number": { - "type": "text", + "full_name": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_4_0" - ] + "_all_text_boost_7_0" + ], + "type": "text" }, - "secondary_phone_number_keyword": { - "type": "text", - "analyzer": "no_spaces", - "copy_to": [ - "_all_text", - "_all_text_boost_4_0" - ] + "full_name_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" }, - "search_grade_explicit": { - "type": "text", + "full_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_7_0" + ], + "type": "text" }, - "search_buildings": { - "type": "text", + "grade_id_filter": { + "type": "integer" + }, + "international_building": { "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "roles": { - "type": "nested", - "properties": { - "peoplefinder_person__job_title_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_3_0" - ] - }, - "peoplefinder_person__job_title": { - "type": "text", - "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_3_0" - ] - } - } + "is_active_filter": { + "type": "boolean" }, "key_skills": { - "type": "nested", "properties": { - "peoplefinder_person__name_explicit": { - "type": "text", - "analyzer": "simple", + "peoplefinder_person__name": { + "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_0_8" - ] + ], + "type": "text" }, - "peoplefinder_person__name": { - "type": "text", - "analyzer": "snowball", + "peoplefinder_person__name_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_0_8" - ] + ], + "type": "text" } - } + }, + "type": "nested" }, - "other_key_skills_explicit": { - "type": "text", - "analyzer": "simple", + "last_name": { + "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_0_8" - ] + "_all_text_boost_7_0" + ], + "type": "text" }, - "other_key_skills": { - "type": "text", - "analyzer": "snowball", + "last_name_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "last_name_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_0_8" - ] + "_all_text_boost_7_0" + ], + "type": "text" }, "learning_interests": { - "type": "nested", "properties": { "peoplefinder_person__name": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_0_8" - ] + ], + "type": "text" } - } + }, + "type": "nested" }, - "additional_roles": { - "type": "nested", + "networks": { "properties": { - "peoplefinder_person__name_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_0_8" - ] - }, "peoplefinder_person__name": { - "type": "text", "analyzer": "snowball", - "copy_to": [ - "_all_text", - "_all_text_boost_0_8" - ] - } - } - }, - "networks": { - "type": "nested", - "properties": { - "peoplefinder_person__name_explicit": { - "type": "text", - "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_5" - ] + ], + "type": "text" }, - "peoplefinder_person__name": { - "type": "text", - "analyzer": "snowball", + "peoplefinder_person__name_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_5" - ] + ], + "type": "text" }, "peoplefinder_person__name_filter": { "type": "keyword" } - } + }, + "type": "nested" }, "networks_filter": { "type": "integer" }, - "international_building": { - "type": "text", + "other_key_skills": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_0_8" + ], + "type": "text" }, - "search_location": { - "type": "text", - "analyzer": "snowball", + "other_key_skills_explicit": { + "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_0_8" + ], + "type": "text" }, - "fluent_languages": { - "type": "text", + "pk": { + "store": true, + "type": "keyword" + }, + "preferred_first_name": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_7_0" + ], + "type": "text" }, - "search_teams_explicit": { - "type": "text", + "preferred_first_name_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "preferred_first_name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_7_0" + ], + "type": "text" }, - "search_teams": { - "type": "text", + "primary_phone_number": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] - }, - "profile_completion_scorefunction_filter": { - "type": "integer" - }, - "is_active_filter": { - "type": "boolean" + "_all_text_boost_4_0" + ], + "type": "text" }, - "became_inactive_filter": { - "type": "date" + "primary_phone_number_keyword": { + "analyzer": "no_spaces", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ], + "type": "text" }, "professions_filter": { "type": "integer" }, - "grade_id_filter": { + "profile_completion_scorefunction_filter": { "type": "integer" }, - "do_not_work_for_dit_filter": { - "type": "boolean" + "roles": { + "properties": { + "peoplefinder_person__job_title": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ], + "type": "text" + }, + "peoplefinder_person__job_title_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_3_0" + ], + "type": "text" + } + }, + "type": "nested" }, - "_all_text": { + "search_buildings": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], "type": "text" }, - "_all_text_boost_0_8": { + "search_grade_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], "type": "text" }, - "_all_text_boost_1_0": { + "search_location": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_1_0" + ], "type": "text" }, - "_all_text_boost_1_5": { + "search_teams": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], "type": "text" }, - "_all_text_boost_3_0": { + "search_teams_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], + "type": "text" + }, + "secondary_phone_number": { + "analyzer": "snowball", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ], + "type": "text" + }, + "secondary_phone_number_keyword": { + "analyzer": "no_spaces", + "copy_to": [ + "_all_text", + "_all_text_boost_4_0" + ], + "type": "text" + } + } + }, + "": { + "properties": { + "_all_text": { "type": "text" }, - "_all_text_boost_4_0": { + "_all_text_boost_1_0": { "type": "text" }, "_all_text_boost_2_0": { "type": "text" }, - "_all_text_boost_7_0": { + "_all_text_boost_4_0": { "type": "text" - } - } - }, - "": { - "properties": { - "pk": { - "type": "keyword", - "store": true - }, - "content_type": { - "type": "keyword" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "name_explicit": { - "type": "text", - "analyzer": "simple", - "copy_to": [ - "_all_text", - "_all_text_boost_4_0" - ] + "search_analyzer": "standard", + "type": "text" }, - "name": { - "type": "text", + "abbreviation": { "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_4_0" - ] - }, - "name_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + ], + "type": "text" }, "abbreviation_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_4_0" - ] + ], + "type": "text" }, - "abbreviation": { - "type": "text", - "analyzer": "snowball", + "abbreviation_keyword": { + "analyzer": "no_spaces", "copy_to": [ "_all_text", "_all_text_boost_4_0" - ] + ], + "type": "text" }, - "abbreviation_keyword": { - "type": "text", - "analyzer": "no_spaces", + "content_type": { + "type": "keyword" + }, + "description": { + "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_4_0" - ] + "_all_text_boost_1_0" + ], + "type": "text" }, "description_explicit": { - "type": "text", "analyzer": "simple", "copy_to": [ "_all_text", "_all_text_boost_1_0" - ] + ], + "type": "text" }, - "description": { - "type": "text", + "name": { "analyzer": "snowball", "copy_to": [ "_all_text", - "_all_text_boost_1_0" - ] + "_all_text_boost_4_0" + ], + "type": "text" }, - "roles_in_team_explicit": { - "type": "text", + "name_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", + "type": "text" + }, + "name_explicit": { "analyzer": "simple", "copy_to": [ "_all_text", - "_all_text_boost_2_0" - ] + "_all_text_boost_4_0" + ], + "type": "text" + }, + "pk": { + "store": true, + "type": "keyword" }, "roles_in_team": { - "type": "text", "analyzer": "snowball", "copy_to": [ "_all_text", "_all_text_boost_2_0" - ] - }, - "_all_text": { - "type": "text" - }, - "_all_text_boost_1_0": { - "type": "text" - }, - "_all_text_boost_2_0": { + ], "type": "text" }, - "_all_text_boost_4_0": { + "roles_in_team_explicit": { + "analyzer": "simple", + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], "type": "text" } } }, "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_10_0": { + "type": "text" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "collection_id_filter": { "type": "integer" }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_10_0" - ] - }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "content_type": { + "type": "keyword" }, - "title_filter": { + "pk": { + "store": true, "type": "keyword" }, "tags": { - "type": "nested", "properties": { "name": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_10_0" - ] + ], + "type": "text" }, "name_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" } - } - }, - "uploaded_by_user_id_filter": { - "type": "integer" + }, + "type": "nested" }, - "_all_text": { + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ], "type": "text" }, - "_all_text_boost_10_0": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", "type": "text" + }, + "title_filter": { + "type": "keyword" + }, + "uploaded_by_user_id_filter": { + "type": "integer" } } }, "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_10_0": { + "type": "text" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "collection_id_filter": { "type": "integer" }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_10_0" - ] - }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "content_type": { + "type": "keyword" }, - "title_filter": { + "pk": { + "store": true, "type": "keyword" }, "tags": { - "type": "nested", "properties": { "name": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_10_0" - ] + ], + "type": "text" }, "name_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" } - } - }, - "uploaded_by_user_id_filter": { - "type": "integer" + }, + "type": "nested" }, - "_all_text": { + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ], "type": "text" }, - "_all_text_boost_10_0": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", "type": "text" + }, + "title_filter": { + "type": "keyword" + }, + "uploaded_by_user_id_filter": { + "type": "integer" } } }, "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_2_0": { + "type": "text" }, "_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" - }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_2_0" - ] - }, - "title_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, - "title_filter": { + "content_type": { "type": "keyword" }, - "id_filter": { - "type": "integer" - }, - "live_filter": { - "type": "boolean" - }, - "owner_id_filter": { - "type": "integer" - }, "content_type_id_filter": { "type": "integer" }, - "path_filter": { - "type": "keyword" - }, "depth_filter": { "type": "integer" }, - "locked_filter": { - "type": "boolean" - }, - "show_in_menus_filter": { - "type": "boolean" - }, "first_published_at_filter": { "type": "date" }, + "id_filter": { + "type": "integer" + }, "last_published_at_filter": { "type": "date" }, "latest_revision_created_at_filter": { "type": "date" }, + "live_filter": { + "type": "boolean" + }, "locale_id_filter": { "type": "integer" }, - "translation_key_filter": { + "locked_filter": { + "type": "boolean" + }, + "owner_id_filter": { + "type": "integer" + }, + "path_filter": { "type": "keyword" }, - "_all_text": { + "pk": { + "store": true, + "type": "keyword" + }, + "show_in_menus_filter": { + "type": "boolean" + }, + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_2_0" + ], "type": "text" }, - "_all_text_boost_2_0": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", "type": "text" + }, + "title_filter": { + "type": "keyword" + }, + "translation_key_filter": { + "type": "keyword" } } }, "": { "properties": { - "pk": { - "type": "keyword", - "store": true + "_all_text": { + "type": "text" }, - "content_type": { - "type": "keyword" + "_all_text_boost_10_0": { + "type": "text" }, "_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" }, "collection_id_filter": { "type": "integer" }, - "title": { - "type": "text", - "copy_to": [ - "_all_text", - "_all_text_boost_10_0" - ] - }, - "title_edgengrams": { - "type": "text", - "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "content_type": { + "type": "keyword" }, - "title_filter": { + "pk": { + "store": true, "type": "keyword" }, "tags": { - "type": "nested", "properties": { "name": { - "type": "text", "copy_to": [ "_all_text", "_all_text_boost_10_0" - ] + ], + "type": "text" }, "name_edgengrams": { - "type": "text", "analyzer": "edgengram_analyzer", - "search_analyzer": "standard" + "search_analyzer": "standard", + "type": "text" } - } - }, - "uploaded_by_user_id_filter": { - "type": "integer" + }, + "type": "nested" }, - "_all_text": { + "title": { + "copy_to": [ + "_all_text", + "_all_text_boost_10_0" + ], "type": "text" }, - "_all_text_boost_10_0": { + "title_edgengrams": { + "analyzer": "edgengram_analyzer", + "search_analyzer": "standard", "type": "text" + }, + "title_filter": { + "type": "keyword" + }, + "uploaded_by_user_id_filter": { + "type": "integer" } } } From fa92d79ec3724b50cf36c5f8f1380d29540a1df2 Mon Sep 17 00:00:00 2001 From: Cameron Lamb Date: Wed, 12 Jun 2024 12:44:14 +0100 Subject: [PATCH 6/6] Remove unused imports --- .../management/commands/create_index_mapping_json.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/extended_search/management/commands/create_index_mapping_json.py b/src/extended_search/management/commands/create_index_mapping_json.py index e712af809..ca3d680b2 100644 --- a/src/extended_search/management/commands/create_index_mapping_json.py +++ b/src/extended_search/management/commands/create_index_mapping_json.py @@ -1,10 +1,7 @@ from pathlib import Path from django.core.management.base import BaseCommand -from wagtail.documents.models import Document -from wagtail.images.models import Image from wagtail.search.backends import get_search_backend -from wagtailmedia.models import Media from extended_search.index import get_indexed_models