Module Values.GetSchemaAnalysisRuleInputSource

Retrieves a schema analysis rule.

Sourcetype nonrec t = {
  1. collaborationIdentifier : CollaborationIdentifier.t;
    (*

    A unique identifier for the collaboration that the schema belongs to. Currently accepts a collaboration ID.

    *)
  2. name : TableAlias.t;
    (*

    The name of the schema to retrieve the analysis rule for.

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

    The type of the schema analysis rule to retrieve. Schema analysis rules are uniquely identified by a combination of the collaboration, the schema name, and their type.

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