Elasticsearch - Index Management
Given this request to create an index:
What will be the type of the
{
"settings": {"number_of_shards": 1},
"mappings": {
"properties": {
"name": {"type": "text"},
"price": {"type": "float"}
}
}
}What will be the type of the
price field in the index?