File tree Expand file tree Collapse file tree
transform/server/routes/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ export const indexPatternTitleSchema = schema.object({
1414export const dataVisualizerFieldHistogramsSchema = schema . object ( {
1515 /** Query to match documents in the index. */
1616 query : schema . any ( ) ,
17+ /** The fields to return histogram data. */
1718 fields : schema . arrayOf ( schema . any ( ) ) ,
1819 /** Number of documents to be collected in the sample processed on each shard, or -1 for no sampling. */
1920 samplerShardSize : schema . number ( ) ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { schema } from '@kbn/config-schema';
88export const fieldHistogramsSchema = schema . object ( {
99 /** Query to match documents in the index. */
1010 query : schema . any ( ) ,
11+ /** The fields to return histogram data. */
1112 fields : schema . arrayOf ( schema . any ( ) ) ,
1213 /** Number of documents to be collected in the sample processed on each shard, or -1 for no sampling. */
1314 samplerShardSize : schema . number ( ) ,
You can’t perform that action at this time.
0 commit comments