{
    "analyzer": {
        "he_plain": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer",
                "preserve_original_recorder",
                "icu_folding",
                "preserve_original",
                "remove_empty"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "he_plain_search": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "he_text": {
            "type": "custom",
            "tokenizer": "hebrew",
            "filter": [
                "niqqud",
                "hebrew_lemmatizer",
                "icu_normalizer",
                "icu_folding",
                "remove_empty"
            ]
        },
        "he_text_search": {
            "type": "custom",
            "tokenizer": "hebrew",
            "filter": [
                "niqqud",
                "hebrew_lemmatizer",
                "icu_normalizer",
                "icu_folding",
                "remove_empty"
            ]
        },
        "uk_plain": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "uk_plain_search": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "uk_text": {
            "type": "ukrainian",
            "char_filter": [
                "word_break_helper"
            ]
        },
        "uk_text_search": {
            "type": "ukrainian",
            "char_filter": [
                "word_break_helper"
            ]
        }
    },
    "filter": {
        "icu_normalizer": {
            "type": "icu_normalizer",
            "name": "nfkc_cf"
        },
        "icu_folding": {
            "type": "icu_folding"
        },
        "remove_empty": {
            "type": "length",
            "min": 1
        }
    },
    "char_filter": {
        "word_break_helper": {
            "type": "mapping",
            "mappings": [
                "_=>\\u0020",
                ".=>\\u0020",
                "(=>\\u0020",
                ")=>\\u0020"
            ]
        }
    }
}