package awsm

  1. Overview
  2. Docs
type t =
  1. | String of string
  2. | List of t list
  3. | Structure of (string * t) list
  4. | Map of (string * string) list
type value = [
  1. | `Blob of string
  2. | `Boolean of bool
  3. | `Double of Core.Float.t
  4. | `Enum of string
  5. | `Float of Core.Float.t
  6. | `Integer of int
  7. | `List of value list
  8. | `Long of Core.Int64.t
  9. | `Map of (value * value) list
  10. | `String of string
  11. | `Structure of (string * value) list
  12. | `Timestamp of string
]
val of_value : value -> t
val render : t -> (Core.String.t * string list) list
OCaml

Innovation. Community. Security.