Elasticsearch - Mappings and Data Types
Given this mapping for a field
price as float:
{
"properties": {
"price": { "type": "float" }
}
}
What will happen if you index a document with "price": "cheap"?