Current section

Files

Jump to
nex_json_schema lib ex_json_schema schema root.ex
Raw

lib/ex_json_schema/schema/root.ex

defmodule NExJsonSchema.Schema.Root do
defstruct schema: %{}, refs: %{}, location: :root
@type t :: %NExJsonSchema.Schema.Root{
schema: NExJsonSchema.Schema.resolved(),
refs: %{String.t() => NExJsonSchema.Schema.resolved()},
location: :root | String.t()
}
end