Module Values.BatchGetSchemaAnalysisRuleErrorSource

An error that describes why a schema could not be fetched.

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

    An error name for the error.

    *)
  2. type_ : AnalysisRuleType.t option;
    (*

    The analysis rule type.

    *)
  3. code : String_.t option;
    (*

    An error code for the error.

    *)
  4. message : String_.t option;
    (*

    A description of why the call failed.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?code:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TableAlias.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