Module Values.SchemaAnalysisRuleRequestSource

Defines the information that's necessary to retrieve an analysis rule schema. Schema analysis rules are uniquely identified by a combination of the schema name and the analysis rule type for a given collaboration.

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

    The name of the analysis rule schema that you are requesting.

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

    The type of analysis rule schema that you are requesting.

    *)
}
Sourceval context_ : string
Sourceval make : name:TableAlias.t -> type_:AnalysisRuleType.t -> 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