Module Values_0.DataQualityAnalyzerResultSource

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

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

    The name of the data quality analyzer.

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

    A description of the data quality analyzer.

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

    An evaluation message.

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

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

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?evaluationMessage:??? -> ?evaluatedMetrics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of NameString.t ] * [> `Double of NullableDouble.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