mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Merge pull request #7853 from Bargs/consoleFloats
Add new float support to console autocomplete
This commit is contained in:
commit
5ba2c186b8
1 changed files with 2 additions and 1 deletions
|
@ -81,7 +81,7 @@ module.exports = function (api) {
|
|||
'properties': {
|
||||
'*': {
|
||||
type: {
|
||||
__one_of: ['text', 'keyword', 'float', 'double', 'byte', 'short', 'integer', 'long', 'date', 'boolean',
|
||||
__one_of: ['text', 'keyword', 'float', 'half_float', 'scaled_float', 'double', 'byte', 'short', 'integer', 'long', 'date', 'boolean',
|
||||
'binary', 'object', 'nested', "geo_point", "geo_shape"
|
||||
]
|
||||
},
|
||||
|
@ -111,6 +111,7 @@ module.exports = function (api) {
|
|||
// numeric
|
||||
precision_step: 4,
|
||||
ignore_malformed: BOOLEAN,
|
||||
scaling_factor: 100,
|
||||
|
||||
// geo_point
|
||||
lat_lon: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue