Hi Team,
When put the mappings in Index, we have some field name that contains dots, for example: Server.users.
PUT my_index
{
"mappings": {
"_doc": {
"properties": {
"Server.users": {
"type": "text"
}
}
}
}
}
I got the mappings as below. The question is that is there a way the keep the 'Server.users' as the field name ?
"my_index" : {
"aliases" : { },
"mappings" : {
"_doc" : {
"properties" : {
"Server" : {
"properties" : {
"users" : {
"type" : "text"
}
}
}
}
}
},