PUT users_index
{
"mappings": {
"user": {
"_all": { "enabled": false },
"properties": {
"account_type": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
},
"firstname": { "type": "text" },
"lastname": { "type": "integer" },
"friends": { "type": "long" }
}
}
}
}
https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html https://www.elastic.co/guide/en/elasticsearch/reference/current/multi-fields.html