Sourcetype ezjsonm = [ | `O of (string * ezjsonm) list| `A of ezjsonm list| `Bool of bool| `Float of float| `String of string| `Null
] Sourcetype yojson = [ | `Bool of bool| `Assoc of (string * yojson) list| `Float of float| `Int of int| `Intlit of string| `List of yojson list| `Null| `String of string| `Tuple of yojson list| `Variant of string * yojson option
]