sig
  type t = {
    schema : Sarif.Uri.t;
    version : Sarif.Version.t;
    runs : Sarif.Run.t list;
  }
  val to_yojson : Sarif.Schema.t -> Yojson.Safe.t
  val of_yojson :
    Yojson.Safe.t -> Sarif.Schema.t Ppx_deriving_yojson_runtime.error_or
  val _ :
    Yojson.Safe.t -> Sarif.Schema.t Ppx_deriving_yojson_runtime.error_or
  val create :
    ?schema:Sarif.Uri.t ->
    ?version:Sarif.Version.t ->
    runs:Sarif.Run.t list -> unit -> Sarif.Schema.t
end