{
    "analyzer": {
        "en_plain": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer",
                "preserve_original_recorder",
                "icu_folding",
                "preserve_original",
                "remove_empty"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "en_plain_search": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "ru_plain": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper",
                "russian_charfilter"
            ]
        },
        "ru_plain_search": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper",
                "russian_charfilter"
            ]
        },
        "es_plain": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "es_plain_search": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "de_plain": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "de_plain_search": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "zh_plain": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "smartcn_stop",
                "icu_normalizer"
            ],
            "char_filter": [
                "word_break_helper"
            ]
        },
        "zh_plain_search": {
            "type": "custom",
            "tokenizer": "standard",
            "filter": [
                "smartcn_stop",
                "icu_normalizer"
            ],
            "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
        },
        "smartcn_stop": {
            "type": "stop",
            "stopwords": [
                ","
            ]
        }
    },
    "char_filter": {
        "word_break_helper": {
            "type": "mapping",
            "mappings": [
                "_=>\\u0020",
                ".=>\\u0020",
                "(=>\\u0020",
                ")=>\\u0020"
            ]
        },
        "russian_charfilter": {
            "type": "mapping",
            "mappings": [
                "\\u0301=>",
                "\\u0130=>I",
                "\\u0435\\u0308=>\\u0435",
                "\\u0415\\u0308=>\\u0415",
                "\\u0451=>\\u0435",
                "\\u0401=>\\u0415"
            ]
        }
    }
}