Module Values_0.DataQualityRuleResultSource

Describes the result of the evaluation of a data quality rule.

Sourcetype nonrec t = {
  1. name : NameString.t option;
    (*

    The name of the data quality rule.

    *)
  2. description : DataQualityRuleResultDescription.t option;
    (*

    A description of the data quality rule.

    *)
  3. evaluationMessage : DataQualityRuleResultDescription.t option;
    (*

    An evaluation message.

    *)
  4. result : DataQualityRuleResultStatus.t option;
    (*

    A pass or fail status for the rule.

    *)
  5. evaluatedMetrics : EvaluatedMetricsMap.t option;
    (*

    A map of metrics associated with the evaluation of the rule.

    *)
  6. evaluatedRule : DataQualityRuleResultDescription.t option;
    (*

    The evaluated rule.

    *)
  7. ruleMetrics : RuleMetricsMap.t option;
    (*

    A map containing metrics associated with the evaluation of the rule based on row-level results.

    *)
  8. labels : Labels.t option;
    (*

    A map containing labels assigned to the data quality rule.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?evaluationMessage:??? -> ?result:??? -> ?evaluatedMetrics:??? -> ?evaluatedRule:??? -> ?ruleMetrics:??? -> ?labels:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of NameString.t ] * [> `Double of NullableDouble.t | `String of NameString.t ]) list | `String of NameString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t