PUT /my_index
{
"mappings": {
"my_type": {
"properties": {
"title": {
"type": "string",
"index": "analyzed",
"analyzer": "ik_smart"
}
}
}
}
}