HI, I have a field called "unqiue_db_tag" in my document.
somehow it does not show on the table but only on JSON
I looked at other discussion says it could be due to this field is not yet dont the mapping since I add this field by enrich processor.
If I would like to map this field so that It will show up on the discover left search bar and on the table.
Is my below mapping correct?
this is the field:

PUT index/_mapping
{
"properties": {
"unqiue_db_tag": {
"type": "object",
"properties": {
"codeNumCount": {
"type": "long"
},
"brandIdCount": {
"type": "long"
},
"region": {
"type": "keyword"
},
"deviceId": {
"type": "long"
},
"db_tag": {
"type": "keyword"
}
}
}
}
}
could anyone help?

