type json = t
type t<_> = | String: t<Js_string.t> | Number: t<float> | Object: t<Js_dict.t<json>> | Array: t<array<json>> | Boolean: t<bool> | Null: t<Js_types.null_val>
Underlying type of a JSON value