root@localhost:~# curl localhost:9200/myindex01
{"myindex01":{"aliases":{},"mappings":{"properties":{"hello":{"type":"text","fields":{"keyword":{"type":"keyword","ignore_above":256}}}}},"settings":{"index":{"creation_date":"1576118665777","number_of_shards":"1","number_of_replicas":"1","uuid":"MRsSGjKRSu2mE-D2wAK_ew","version":{"created":"7050099"},"provided_name":"myindex01"}}}}
root@localhost:~# curl localhost:9200/myindex01?pretty
{
"myindex01" : {
"aliases" : { },
"mappings" : {
"properties" : {
"hello" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
}
}
},
"settings" : {
"index" : {
"creation_date" : "1576118665777",
"number_of_shards" : "1",
"number_of_replicas" : "1",
"uuid" : "MRsSGjKRSu2mE-D2wAK_ew",
"version" : {
"created" : "7050099"
},
"provided_name" : "myindex01"
}
}
}
}