Data Quality Action

class DataQuality(
table: str,
classifiers: Classifier | list[Classifier],
operators: Operator | list[Operator],
)

Bases: OnTablesAction

Categories:

dq-action

Represents a data quality action to be performed on a table.

This class encapsulates a set of data quality rules, defined by classifiers and operators, that are applied to a specified table. It serves as a container for a complete data quality workflow.

property classifiers: list[Classifier]

Returns the list of classifiers used in this data quality action.

property operators: list[Operator]

Returns the list of operators that will be executed based on the classifier results.

property table: str

Returns the name of the table targeted by this data quality action.