Values.DateTimeValueSourceRepresents a point in time that can be specified as either an absolute date (for example, "2025-07-01") or a relative time period using ISO 8601 duration format (for example, "-P3M" for three months ago).
type nonrec t = {type_ : DateTimeType.t;The type of date/time value: ABSOLUTE for specific dates or RELATIVE for dynamic time periods.
*)value : GenericString.t;The actual date/time value.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of GenericString.t ]) list ]