Module Values.ISO8601TimeRangeSource

Time range specified using ISO 8601 format timestamps.

Sourcetype nonrec t = {
  1. startTime : SyntheticTimestamp_date_time.t;
    (*

    Start time in ISO 8601 format in Coordinated Universal Time (UTC). Example: 2026-11-15T10:28:48.000Z

    *)
  2. endTime : SyntheticTimestamp_date_time.t;
    (*

    End time in ISO 8601 format in Coordinated Universal Time (UTC). Example: 2024-01-15T12:00:00.000Z

    *)
}
Sourceval context_ : string
Sourceval make : startTime:SyntheticTimestamp_date_time.t -> endTime:SyntheticTimestamp_date_time.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Timestamp of SyntheticTimestamp_date_time.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