{
        "analysis": {
        	"filter": {
                "eng_stop": {
                    "type":       "stop",
                    "stopwords": "_english_"
                }
            },
	        "analyzer": {
	            "custom_analyzer": {
	                "type": "custom",
	                "tokenizer": "standard",
	                "filter": [
	                	"lowercase",
	                    "asciifolding",
	                    "eng_stop"
	                ]
	            }
	        }
    	}
   }