Module Values_1.CreateJsonClassifierRequestSource

Specifies a JSON classifier for CreateClassifier to create.

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

    The name of the classifier.

    *)
  2. jsonPath : JsonPath.t;
    (*

    A JsonPath string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.

    *)
}
Sourceval context_ : string
Sourceval make : name:Values_0.NameString.t -> jsonPath:JsonPath.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.NameString.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