Stack v 7.17.3
It is not possible to add wildcard multifield to field with type Double through Kibana in Component Template -> Mappings.
Via REST API I am able to add this to mappings in existing index. Searching with wildcard query works so I assume such mapping is allowed.
When I add this to template mappings via REST API, wildcard multifield is not visible in Kibana UI.
I expect possibility to add wildcard multifield in field of type Double in Kibana.
"fooField": {
"type": "double",
"fields": {
"wildcard": {
"type": "wildcard"
}
}
}