What does the JSON mapping look like if I have a field that is of type: keyword array.
If I wanted multiple keywords associated with a JSON document, how would I create the mapping for the index's field?
Something like:
"my_index" : {
"mappings" : {
"item": {
"properties" : {
"NickNames" : { "type" : "keyword array"}
}
}
}
}
Thanks!