View Source Exonerate (exonerate v1.1.3)
An opinionated JSONSchema compiler for elixir.
Currently supports JSONSchema drafts 4, 6, 7, 2019, and 2020. except:
- multipleOf is not supported for number types. This is because
elixir does not support a floating point remainder guard, and also
because it is impossible for a floating point to guarantee sane results
(e.g. for IEEE Float64,
1.2 / 0.1 != 12
) - id fields with fragments in their uri identifier (draft 7 and earlier only)
- dynamicRefs and anchors.
- contentMediaType, contentEncoding, contentSchema
For details, see: http://json-schema.org
Exonerate is automatically tested against the JSONSchema test suite.
Note that Exonerate does not generally validate that the schema presented to it is valid, unless the violation results in an uncompilable entity.
usage
Usage
Exonerate yields 100% compile-time generated code. You may include Exonerate
with the runtime: false
option in mix.exs
, unless you believe you will
need to edit and recompile modules with Exonerate at runtime.
in-your-module
In your module:
defmodule MyModule do
require Exonerate
Exonerate.function_from_string(:def, :function_name, """
{
"type": "string"
}
""")
end
The above module generates a function MyModule.function_name/1
that takes an BEAM JSON term
(string | number | list | map | bool | nil
) and validates it based on the the JSONschema. If
the term validates, it produces :ok
. If the term fails to validate, it produces
{:error, keyword}
, where the key :instance_location
and points to the error location in the passed
parameter, the :schema_pointers
points to the validation that failed, and error_value
is the
failing inner term.
error-keywords
Error keywords
The following error keywords conform to the JSONSchema spec (https://json-schema.org/draft/2020-12/json-schema-core.html#name-format):
:absolute_keyword_location
: a JSON pointer to the keyword in the schema that failed.:instance_location
: a JSON pointer to the location in the instance that failed.:errors
: a list of errors generated when a combining filter fails to match.
The following error keywords are not standard and are specific to Exonerate:
:error_value
: the innermost term that failed to validate.:matches
: a list of JSON pointers to the keywords that matched a combining filter.:reason
: a string describing the error, when the failing filter can fail for nonobvious reasons. For exampleoneOf
will fail with the reason "no matches" when none of the child schemas match; but it will fail with the reason "multiple matches" when more than of the child schemas match.:required
: a list of object keys that were required but missing.:ref_trace
: a list of$ref
keywords that were followed to get to the failing keyword.
options
Options
The following options are available:
:dump
:true
to dump the generated code to the console. Note that this will create function names that aren't the function names when compiled otherwise, but adjusted so that you can copy/paste them into the elixir console. This could cause collisions when more than one dumped templates are present in the same module.:metadata
:true
to enable all metadata decorator functions or a list of atoms parameters to enable. The following metadata are accessible by passing the corresponding atom to the generated function in lieu of a JSON term to validate.JSONschema tag atom parameter $id or id :id
$schema :schema_id
default :default
examples :examples
description :description
title :title
<entire schema> :schema
:format
: instructions for using (optional) format filters. This should be eithertrue
or a keyword list:true
: shorthand for[default: true]
keywords:
:at
: a list of{<json pointer>, <filter-spec>}
tuples to apply format filters in specific locations in the schema. This can be used to specify custom filters for non-default format types. It can also be used to override default formatting.<json pointer>
should be a string which may be relative if no"id"
or"$id"
metadata are present in the parents of the location. Otherwise, the pointer must the a uri of the nearest parent containing"id"
or"$id"
metadata, with the relative pointer applied as the fragment of the uri.<filter-spec>
may either be a module, which implies the existence of themodule.validate/1
function,{module, function}
which implies the existence ofmodule.function/1
, or{module, function, [extra-args]}
which implies the existence ofmodule.function/n
where the extra args are appended to the end of string to be validated.In all cases, the validation function is expected to emit
:ok
if the string validates, or{:error, reason}
, if it does not.reason
should either be a string ornil
.:type
: a list of{<format-type>, <filter-spec>}
to apply across the schema whenever<format-type>
is encountered. This can be used to specify custom filters for non-default format types. It can also be used to override default formatting.<filter-spec>
is as above.:default
:true
to enable all default filters or a list of strings specifying the default format types to enable. The following format types are available:"date-time"
: enables the default date-time filter for all{"format": "date-time"}
contexts. This uses Elixir'sNaiveDateTime.from_iso8601/1
parser."date-time-utc"
: enables the default date-time-utc filter for all{"format": "date-time-utc"}
contexts. This uses Elixir'sDateTime.from_iso8601/1
parser, and requires the offset to be 0 from UTC."date-time-tz"
: enables the default date-time filter for all{"format": "date-time-tz"}
context strings. This uses Elixir'sDateTime.from_iso8601/1
parser, which requires an offset to be specified."date"
: enables the default date filter for all{"format": "date"}
context strings. This uses Elixir'sDate.from_iso8601/1
parser."time"
: enables the default time filter for all{"format": "time"}
context strings. This uses Elixir'sTime.from_iso8601/1
parser."duration"
: enables the default duration filter for all{"format": "duration"}
context strings. This uses a custom ABNF validator that matches Appendix A of RFC 3339: https://www.rfc-editor.org/rfc/rfc3339.txtThe validation function can be generated by
Exonerate.Formats.Duration
. requiresNimbleParsec
andPegasus
dependencies."ipv4"
: enables the default ipv4 filter for all{"format": "ipv4"}
context strings. This uses Erlang's:inet.parse_ipv4strict_address/1
parser."ipv6"
: enables the default ipv6 filter for all{"format": "ipv6"}
context strings. This uses Erlang's:inet.parse_ipv6strict_address/1
parser."uuid"
: enables the default uuid filter for all{"format": "uuid"}
context strings."email"
: enables the default email filter for all{"format": "email"}
context strings. This uses a custom ABNF validator that matches section 4.1.2 of RFC 5322: https://www.rfc-editor.org/rfc/rfc5322.txtThe validation function can be generated by
Exonerate.Formats.Email
. requiresNimbleParsec
andPegasus
dependencies."idn-email"
: enables the default idn-email (i18n email address) filter for all{"format": "idn-email"}
context strings. This uses a custom ABNF validator that matches section 3.3 of RFC 6531: https://www.rfc-editor.org/rfc/rfc5322.txtThe validation function can be generated by
Exonerate.Formats.IdnEmail
. requiresNimbleParsec
andPegasus
dependencies."hostname"
: enables the default hostname filter for all{"format": "hostname"}
context strings. This uses a custom ABNF validator that matches section 2.1 of RFC 1123: https://www.rfc-editor.org/rfc/rfc1123.txtThe validation function can be generated by
Exonerate.Formats.Hostname
. requiresNimbleParsec
andPegasus
dependencies."idn-hostname"
: enables the default idn-hostname (i18n hostname) filter for all{"format": "idn-hostname"}
context strings.Note that in order to use this filter, you must add the
:idna
library to your dependencies.The validation function can be generated by
Exonerate.Formats.IdnHostname
. requiresNimbleParsec
andPegasus
dependencies."uri"
: enables the default uri filter for all{"format": "uri"}
context strings. This uses a custom ABNF validator that matches section 3 of RFC 3986: https://www.rfc-editor.org/rfc/rfc3986.txt.absolute-uris
Absolute URIsuris must be absolute, i.e. they must contain a scheme, host, and path. If you need relative uris, use the
uri-reference
filter.The validation function can be generated by
Exonerate.Formats.Uri
. requiresNimbleParsec
andPegasus
dependencies."uri-reference"
: enables the default uri-reference filter for all{"format": "uri-reference"}
context strings. This uses a custom ABNF validator that matches section 3 of RFC 3986: https://www.rfc-editor.org/rfc/rfc3986.txt.The validation function can be generated by
Exonerate.Formats.UriReference
. requiresNimbleParsec
andPegasus
dependencies."iri"
: enables the default iri (i18n uri) filter for all{"format": "iri"}
context strings. This uses a custom ABNF validator that matches section 2.2 of RFC 3987: https://www.rfc-editor.org/rfc/rfc3987.txt.absolute-iris
Absolute IRIsiris must be absolute, i.e. they must contain a scheme, host, and path. If you need relative iris, use the
iri-reference
filter.The validation function can be generated by
Exonerate.Formats.Iri
. requiresNimbleParsec
andPegasus
dependencies."iri-reference"
: enables the default iri-reference (i18n uri) for all{"format": "iri-reference"}
context strings. This uses a custom ABNF validator that matches section 2.2 of RFC 3987: https://www.rfc-editor.org/rfc/rfc3987.txt.The validation function can be generated by
Exonerate.Formats.IriReference
. requiresNimbleParsec
andPegasus
dependencies."uri-template"
: enables the default uri-template filter for all{"format": "uri-template"}
context strings. This uses a custom ABNF validator that matches section 2.3 of RFC 6570: https://www.rfc-editor.org/rfc/rfc6570.txt.uri-template-parent
URI-Template parenturi-templates are templated against iri-reference strings. This means they do not need to be absolute, and they may include unicode characters.
The validation function can be generated by
Exonerate.Formats.UriTemplate
. requiresNimbleParsec
andPegasus
dependencies."json-pointer"
: enables the default json-pointer filter for all{"format": "json-pointer"}
context strings. This uses a custom ABNF validator that matches section 3 of RFC 6901: https://www.rfc-editor.org/rfc/rfc6901.txtThe validation function can be generated by
Exonerate.Formats.JsonPointer
. requiresNimbleParsec
andPegasus
dependencies."relative-json-pointer"
: enables the default relative-json-pointer filter for all{"format": "relative-json-pointer"}
context strings. This uses a custom ABNF validator that matches the followowing rfc proposal: https://datatracker.ietf.org/doc/html/draft-handrews-relative-json-pointer-01The validation function can be generated by
Exonerate.Formats.RelativeJsonPointer
. requiresNimbleParsec
andPegasus
dependencies."regex"
: enables the default regex filter for all{"format": "regex"}
context strings. Note: this does not compile the regex, instead it uses a custom ABNF validator that matches the ECMA-262 standard: https://www.ecma-international.org/publications-and-standards/standards/ecma-262/The validation function can be generated by
Exonerate.Formats.Regex
. requiresNimbleParsec
andPegasus
dependencies.
:entrypoint
: a JSONpointer to the internal location inside of a json document where you would like to start the JSONschema. This should be in JSONPointer form (not URI form). See https://datatracker.ietf.org/doc/html/rfc6901 for more information about JSONPointer:decoders
: a list of{<mimetype>, <decoder>}
tuples.<encoding-type>
should be a string that matches thecontent-type
of the schema.<decoder>
should be one of the following:Jason
(default) for json parsingYamlElixir
for yaml parsing{module, function}
for custom parsing; the function should accept a string and return json term, raising if the string is not valid input for the decoder.
Defaults to
[{"application/json", Jason}, {"application/yaml", YamlElixir}]
. Tuples specified in this option will override or add to the defaults.:draft
: specifies any special draft information. Defaults to"2020"
,"2019"
,"4"
,"6"
, and"7"
are also supported. This overrides draft information provided in the schemavalidation
ValidationValidation is NOT performed on the schema, so intermingling draft components is possible (but not recommended). In the future, using components in the wrong draft may cause a compile-time warning.
remoteref-schema-retrieval-options
remoteRef schema retrieval options
:remote_fetch_adapter
: specifies the module to use for fetching remote resources. This module must export afetch_remote!/2
function which is passed aURI.t/0
struct and returns{<body>, <content-type>}
pair. content-type may benil
. Defaults toExonerate.Remote
, which uses theReq
library to perform the http request.:force_remote
: bypasses the manual prompt confirming if remote resources should be downoladed. Use with caution! Defaults tofalse
.:cache
: if remote JSONs should be cached to the local filesystem. Defaults tofalse
:cache_app
: specifies the otp app whose priv directory cached remote JSONs are stored. Defaults to:exonerate
.:cache_path
: specifies the subdirectory of priv where cached remote JSONs are stored. Defaults to/
.:proxy
: a string proplist which describes string substitution of url resources for proxied remote content.Example
[proxy: [{"https://my.remote.resource/", "http://localhost:4000"}]]
Link to this section Summary
Functions
generates a series of functions that validates a JSONschema in a file at the provided path.
generates a series of functions from a previously provided JSONSchema found
registered using register_resource/3
.
generates a series of functions that validates a provided JSONSchema.
saves in the compile-time registry a schema under the given name. The schema
can then be used to generate a validation function with
function_from_resource/3
. This is useful for clearly reusing a string
schema across multiple functions with potentially different entrypoints, but
without having to repeat the (potentially large) schema string literal in
your module code.
Link to this section Functions
generates a series of functions that validates a JSONschema in a file at the provided path.
Note that the path
parameter must be a Path.t/0
value. The function
names will contain the file url.
options
Options
The options described at the top of the module are available to this macro,
in addition to the options described in register_resource/3
function_from_resource(type, function_name, resource, opts \\ [])
View Source (macro)generates a series of functions from a previously provided JSONSchema found
registered using register_resource/3
.
Note that the resource
parameter must be a string literal defined earlier
in a register_resource/3
call
options
Options
Only supply options described in the module section.
function_from_string(type, function_name, schema_ast, opts \\ [])
View Source (macro)generates a series of functions that validates a provided JSONSchema.
Note that the schema
parameter must be a string literal.
extra-options
Extra options
The options described at the top of the module are available to this macro,
in addition to the options described in register_resource/3
saves in the compile-time registry a schema under the given name. The schema
can then be used to generate a validation function with
function_from_resource/3
. This is useful for clearly reusing a string
schema across multiple functions with potentially different entrypoints, but
without having to repeat the (potentially large) schema string literal in
your module code.
note
Notethis function is optional,
function_from_string/4
will also create a resource for the string and reuse private functions between calls.
file-schemas
File schemas
function_from_file/4
will perform the equivalent of this process under the hood, so don't run this function for file functions.
extra-options
Extra options
:encoding
: specifies the content-type of the provided schema string literal. Defaults toapplication/json
if the file extension is.json
, andapplication/yaml
if the file extension is.yaml
If:encoding
is unspecified and the file extension is unrecognized, Exonerate will not be able to compile.:mimetype_mapping
: a proplist of{<extension>, <mimetype>}
tuples. This is used to determine the content-type of the schema if the file extension is unrecognized. E.g.[{".html", "text/html"}]
. The mappings{".json", "application/json"}
and{".yaml", "application/yaml"}
are not overrideable.