Module Endpoint.Json_response_error

type t = {
  1. error : string;
    (*

    An all-caps string acting as an identifier for the error.

    *)
  2. error_type : string option;
    (*

    An all-caps string identifying a category of errors. May encompass many different error values.

    *)
  3. details : string;
    (*

    A human-readable explanation of the error.

    *)
  4. fields : string list;
    (*

    A list of HTTP parameters with erroneous values.

    *)
}
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t