Module Openapi.Response

type t = {
  1. code : int option;
  2. description : string;
  3. schema : Schema.t;
}
val make : ?code:int -> description:string -> Schema.t -> t