Module Values_0.DataQualityObservationSource

Describes the observation generated after evaluating the rules and analyzers.

Sourcetype nonrec t = {
  1. description : DataQualityObservationDescription.t option;
    (*

    A description of the data quality observation.

    *)
  2. metricBasedObservation : MetricBasedObservation.t option;
    (*

    An object of type MetricBasedObservation representing the observation that is based on evaluated data quality metrics.

    *)
}
Sourceval make : ?description:??? -> ?metricBasedObservation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DataQualityObservationDescription.t | `Structure of (string * [> `List of [> `String of NameString.t ] list | `String of NameString.t | `Structure of (string * [> `Double of NullableDouble.t ]) list ]) list ]) 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