You can search for identifiers within the package.
in-package search v0.2.0
Basic JSON-RPC Incoming Messages
type t =
| Notification of {
method_ : string;
params : (string * Yojson.Safe.t) list;
}
| Request of {
id : int;
val from_yojson : Yojson.Safe.t -> (t, string) Result.t
Reify an incoming message
val method_ : t -> string
val params : t -> (string * Yojson.Safe.t) list