Slide 18
Slide 18 text
Index Mappings
PUT /employees/_mappings
{
“employee”: {
“properties”: {
“name”: {“type”: “string”},
“gender”: {“type”: “string”, “index”: “not_analyzed”},
“email”: {“type”: “string”, “index”: “not_analyzed”},
“dob”: {“type”: “date”},
“country”: {“type”: “string”, “index”: “not_analyzed”},
“salary”: {“type”: “double”},
}
}
}