DatascanDataQualitySpecRuleStatisticRangeExpectation

data class DatascanDataQualitySpecRuleStatisticRangeExpectation(val maxValue: String? = null, val minValue: String? = null, val statistic: String, val strictMaxEnabled: Boolean? = null, val strictMinEnabled: Boolean? = null)

Constructors

constructor(maxValue: String? = null, minValue: String? = null, statistic: String, strictMaxEnabled: Boolean? = null, strictMinEnabled: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val maxValue: String? = null

The maximum column statistic value allowed for a row to pass this validation. At least one of minValue and maxValue need to be provided.

Link copied to clipboard
val minValue: String? = null

The minimum column statistic value allowed for a row to pass this validation. At least one of minValue and maxValue need to be provided.

Link copied to clipboard

column statistics. Possible values are: STATISTIC_UNDEFINED, MEAN, MIN, MAX.

Link copied to clipboard

Whether column statistic needs to be strictly lesser than ('<') the maximum, or if equality is allowed. Only relevant if a maxValue has been defined. Default = false.

Link copied to clipboard

Whether column statistic needs to be strictly greater than ('>') the minimum, or if equality is allowed. Only relevant if a minValue has been defined. Default = false.