You can search for identifiers within the package.
in-package search v0.2.0
type t = [
| `Assoc of (string * t) list
| `Bool of bool
| `Float of float
| `Int of int
| `Intlit of string
| `List of t list
| `Null
| `String of string
| `Tuple of t list
| `Variant of string * t option
]
exception Of_json of string * t
Raised when conversions from json fail
module Jsonable : sig ... end