DatascanDataQualityResult

data class DatascanDataQualityResult(val dimensions: List<DatascanDataQualityResultDimension>? = null, val passed: Boolean? = null, val rowCount: String? = null, val rules: List<DatascanDataQualityResultRule>? = null, val scannedDatas: List<DatascanDataQualityResultScannedData>? = null)

Constructors

Link copied to clipboard
constructor(dimensions: List<DatascanDataQualityResultDimension>? = null, passed: Boolean? = null, rowCount: String? = null, rules: List<DatascanDataQualityResultRule>? = null, scannedDatas: List<DatascanDataQualityResultScannedData>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A list of results at the dimension level. Structure is documented below.

Link copied to clipboard
val passed: Boolean? = null

(Output) Whether the rule passed or failed.

Link copied to clipboard
val rowCount: String? = null

The count of rows scanned.

Link copied to clipboard

The list of rules to evaluate against a data source. At least one rule is required. Structure is documented below.

Link copied to clipboard

(Output) The data scanned for this result. Structure is documented below.