OBJECT

DatasetConfidence

link GraphQL Schema definition

1type DatasetConfidence {
2
3# Mininum Confidence Filter. Sources with confidence lower than this will be
4# ignore
5min: Float
6
7# Maximum Confidence Filter. Sources with confidence higher than this will be
8# ignore
9max: Float
10
11# allow sources with null confidence values
12allowNull: Boolean
13
14}