"tweet" : {
"mappings" : {
"org.hibernate.search.elasticsearch.test.ElasticsearchAnalyzerIT$Tweet" : {
"dynamic" : "strict",
"properties" : {
"customTweet" : {
"type" : "string",
"analyzer" : "custom-analyzer"
},
"englishTweet" : {
"type" : "string",
"analyzer" : "english"
},
"tweetNotAnalyzed" : {
"type" : "string",
"index" : "not_analyzed",
"store" : true
},
"tweetWithCustom" : {
"type" : "string",
"analyzer" : "custom-analyzer"
},
"whitespaceTweet" : {
"type" : "string",
"analyzer" : "whitespace"
}
}
}
}
}