Module Values.NormalizedValueSource

Contains information relating to dates in a document, including the type of value, and the value.

Sourcetype nonrec t = {
  1. value : String_.t option;
    (*

    The value of the date, written as Year-Month-DayTHour:Minute:Second.

    *)
  2. valueType : ValueType.t option;
    (*

    The normalized type of the value detected. In this case, DATE.

    *)
}
Sourceval make : ?value:??? -> ?valueType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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