Module Values.AutomatedReasoningCheckLogicWarningSource

Identifies logical issues in the translated statements that exist independent of any policy rules, such as statements that are always true or always false.

Sourcetype nonrec t = {
  1. type_ : AutomatedReasoningCheckLogicWarningType.t option;
    (*

    The category of the detected logical issue, such as statements that are always true or always false.

    *)
  2. premises : AutomatedReasoningLogicStatementList.t option;
    (*

    The logical statements that serve as premises under which the claims are validated.

    *)
  3. claims : AutomatedReasoningLogicStatementList.t option;
    (*

    The logical statements that are validated while assuming the policy and premises.

    *)
}
Sourceval make : ?type_:??? -> ?premises:??? -> ?claims:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of AutomatedReasoningLogicStatementContent.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