Module Values_1.JsonClassifierSource

A classifier for JSON content.

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

    The name of the classifier.

    *)
  2. creationTime : Values_0.Timestamp.t option;
    (*

    The time that this classifier was registered.

    *)
  3. lastUpdated : Values_0.Timestamp.t option;
    (*

    The time that this classifier was last updated.

    *)
  4. version : Values_0.VersionId.t option;
    (*

    The version of this classifier.

    *)
  5. jsonPath : JsonPath.t option;
    (*

    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 make : ?name:??? -> ?creationTime:??? -> ?lastUpdated:??? -> ?version:??? -> ?jsonPath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Values_0.VersionId.t | `String of Values_0.NameString.t | `Timestamp of Values_0.Timestamp.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