package ppx_deriving_jsonschema

  1. Overview
  2. Docs

Module Ppx_deriving_jsonschema_runtimeSource

Sourceval schema_version : string
Sourcetype t = [
  1. | `Assoc of (string * t) list
  2. | `Bool of bool
  3. | `Float of float
  4. | `Int of int
  5. | `List of t list
  6. | `Null
  7. | `String of string
]
Sourceval classify : ('a -> t) -> 'a -> t
Sourceval json_schema : ?id:string -> ?title:string -> ?description:string -> ?definitions:'a -> [< `Assoc of (string * ([> `Assoc of 'a | `String of string ] as 'b)) list ] -> [> `Assoc of (string * 'b) list ]