DataQualityRule

A rule captures data quality intent about a data source.

JSON representation
{
  "column": string,
  "ignoreNull": boolean,
  "dimension": string,
  "threshold": number,
  "name": string,
  "description": string,

  // Union field rule_type can be only one of the following:
  "rangeExpectation": {
    object (RangeExpectation)
  },
  "nonNullExpectation": {
    object (NonNullExpectation)
  },
  "setExpectation": {
    object (SetExpectation)
  },
  "regexExpectation": {
    object (RegexExpectation)
  },
  "uniquenessExpectation": {
    object (UniquenessExpectation)
  },
  "statisticRangeExpectation": {
    object (StatisticRangeExpectation)
  },
  "rowConditionExpectation": {
    object (RowConditionExpectation)
  },
  "tableConditionExpectation": {
    object (TableConditionExpectation)
  }
  // End of list of possible types for union field rule_type.
}
Fields
column

string

Optional. The unnested column which this rule is evaluated against.

ignoreNull

boolean

Optional. Rows with null values will automatically fail a rule, unless ignoreNull is true. In that case, such null rows are trivially considered passing.

This field is only valid for the following type of rules:

  • RangeExpectation
  • RegexExpectation
  • SetExpectation
  • UniquenessExpectation
dimension

string

Required. The dimension a rule belongs to. Results are also aggregated at the dimension level. Supported dimensions are ["COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"]

threshold

number

Optional. The minimum ratio of passing_rows / total_rows required to pass this rule, with a range of [0.0, 1.0].

0 indicates default value (i.e. 1.0).

This field is only valid for row-level type rules.

name

string

Optional. A mutable name for the rule.

  • The name must contain only letters (a-z, A-Z), numbers (0-9), or hyphens (-).
  • The maximum length is 63 characters.
  • Must start with a letter.
  • Must end with a number or a letter.
description

string

Optional. Description of the rule.

  • The maximum length is 1,024 characters.
Union field rule_type. The rule-specific configuration. rule_type can be only one of the following:
rangeExpectation

object (RangeExpectation)

Row-level rule which evaluates whether each column value lies between a specified range.

nonNullExpectation

object (NonNullExpectation)

Row-level rule which evaluates whether each column value is null.

setExpectation

object (SetExpectation)

Row-level rule which evaluates whether each column value is contained by a specified set.

regexExpectation

object (RegexExpectation)

Row-level rule which evaluates whether each column value matches a specified regex.

uniquenessExpectation

object (UniquenessExpectation)

Row-level rule which evaluates whether each column value is unique.

statisticRangeExpectation

object (StatisticRangeExpectation)

Aggregate rule which evaluates whether the column aggregate statistic lies between a specified range.

rowConditionExpectation

object (RowConditionExpectation)

Row-level rule which evaluates whether each row in a table passes the specified condition.

tableConditionExpectation

object (TableConditionExpectation)

Aggregate rule which evaluates whether the provided expression is true for a table.

RangeExpectation

Evaluates whether each column value lies between a specified range.

JSON representation
{
  "minValue": string,
  "maxValue": string,
  "strictMinEnabled": boolean,
  "strictMaxEnabled": boolean
}
Fields
minValue

string

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

maxValue

string

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

strictMinEnabled

boolean

Optional. Whether each value needs to be strictly greater than ('>') the minimum, or if equality is allowed.

Only relevant if a minValue has been defined. Default = false.

strictMaxEnabled

boolean

Optional. Whether each value needs to be strictly lesser than ('<') the maximum, or if equality is allowed.

Only relevant if a maxValue has been defined. Default = false.

NonNullExpectation

This type has no fields.

Evaluates whether each column value is null.

SetExpectation

Evaluates whether each column value is contained by a specified set.

JSON representation
{
  "values": [
    string
  ]
}
Fields
values[]

string

Optional. Expected values for the column value.

RegexExpectation

Evaluates whether each column value matches a specified regex.

JSON representation
{
  "regex": string
}
Fields
regex

string

Optional. A regular expression the column value is expected to match.

UniquenessExpectation

This type has no fields.

Evaluates whether the column has duplicates.

StatisticRangeExpectation

Evaluates whether the column aggregate statistic lies between a specified range.

JSON representation
{
  "statistic": enum (ColumnStatistic),
  "minValue": string,
  "maxValue": string,
  "strictMinEnabled": boolean,
  "strictMaxEnabled": boolean
}
Fields
statistic

enum (ColumnStatistic)

Optional. The aggregate metric to evaluate.

minValue

string

Optional. The minimum column statistic value allowed for a row to pass this validation.

At least one of minValue and maxValue need to be provided.

maxValue

string

Optional. The maximum column statistic value allowed for a row to pass this validation.

At least one of minValue and maxValue need to be provided.

strictMinEnabled

boolean

Optional. 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.

strictMaxEnabled

boolean

Optional. 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.

ColumnStatistic

The list of aggregate metrics a rule can be evaluated against.

Enums
STATISTIC_UNDEFINED Unspecified statistic type
MEAN Evaluate the column mean
MIN Evaluate the column min
MAX Evaluate the column max

RowConditionExpectation

Evaluates whether each row passes the specified condition.

The SQL expression needs to use BigQuery standard SQL syntax and should produce a boolean value per row as the result.

Example: col1 >= 0 AND col2 < 10

JSON representation
{
  "sqlExpression": string
}
Fields
sqlExpression

string

Optional. The SQL expression.

TableConditionExpectation

Evaluates whether the provided expression is true.

The SQL expression needs to use BigQuery standard SQL syntax and should produce a scalar boolean result.

Example: MIN(col1) >= 0

JSON representation
{
  "sqlExpression": string
}
Fields
sqlExpression

string

Optional. The SQL expression.