NAME
JSON::Schema::Tiny - Validate data against a schema, minimally
VERSION
version 0.005
SYNOPSIS
my $data = { hello => 1 };
my $schema = {
type => "object",
properties => { hello => { type => "integer" } },
};
# functional interface:
use JSON::Schema::Tiny qw(evaluate);
my $result = evaluate($data, $schema); # { valid => true }
# object-oriented interface:
use JSON::Schema::Tiny;
my $js = JSON::Schema::Tiny->new;
my $result = $js->evaluate($data, $schema); # { valid => true }
DESCRIPTION
This module aims to be a slimmed-down JSON Schema evaluator and validator, supporting the most popular keywords used in the draft 2019-09 version of the specification. (See "UNSUPPORTED JSON-SCHEMA FEATURES" below for exclusions.)
FUNCTIONS
evaluate
my $result = evaluate($data, $schema);
Evaluates the provided instance data against the known schema document.
The data is in the form of an unblessed nested Perl data structure representing any type that JSON allows: null, boolean, string, number, object, array. (See "TYPES" below.)
The schema must represent a JSON Schema that respects the Draft 2019-09 meta-schema at https://json-schema.org/draft/2019-09/schema, in the form of a Perl data structure, such as what is returned from a JSON decode operation.
With default configuration settings, the return value is a hashref indicating the validation success or failure, plus (when validation failed), an arrayref of error strings in standard JSON Schema format. For example:
running:
$result = evaluate(1, { type => 'number' });
$result
is:
{ valid => true }
running:
$result = evaluate(1, { type => 'number', multipleOf => 2 });
$result
is:
{
valid => false,
errors => [
{
instanceLocation => '',
keywordLocation => '/multipleOf',
error => 'value is not a multiple of 2',
},
],
}
When "$BOOLEAN_RESULT
" is true, the return value is a boolean (indicating evaluation success or failure).
OPTIONS
All options are available as package-scoped global variables. Use local to configure them for a local scope. They may also be set via the constructor, as lower-cased values in a hash, e.g.: JSON::Schema::Tiny->new(boolean_result => 1, max_traversal_depth => 10);
$BOOLEAN_RESULT
When true, "evaluate" will return a true or false result only, with no error strings. This enables short-circuit mode internally as this cannot effect results except get there faster. Defaults to false.
$SHORT_CIRCUIT
When true, "evaluate" will return from evaluating each subschema as soon as a true or false result can be determined. When $BOOLEAN_RESULT
is false, an incomplete list of errors will be returned. Defaults to false.
$MAX_TRAVERSAL_DEPTH
The maximum number of levels deep a schema traversal may go, before evaluation is halted. This is to protect against accidental infinite recursion, such as from two subschemas that each reference each other, or badly-written schemas that could be optimized. Defaults to 50.
$MOJO_BOOLEANS
When true, any type that is expected to be a boolean in the instance data may also be expressed as scalar references to a number, e.g. \0
or \1
(which are serialized as booleans by Mojo::JSON). (Warning: scalar references and real booleans should not be mixed in data being checked by the uniqueItems
keyword.)
Defaults to false.
UNSUPPORTED JSON-SCHEMA FEATURES
Unlike JSON::Schema::Draft201909, this is not a complete implementation of the JSON Schema specification. Some features and keywords are left unsupported in order to keep the code small and the execution fast. These features are not available:
any output format other than
flag
(when$BOOLEAN_RESULT
is true) orbasic
(when it is false)annotations in successful evaluation results
use of
$ref
other than to locations in the local schema in json-pointer format (e.g.#/path/to/property
). This means that references to external documents, either those available locally or on the network, are not permitted.
In addition, these keywords are implemented only partially or not at all (their presence in a schema will result in an error):
$schema
- only accepted if set to the draft201909 metaschema URI ("https://json-schema.org/draft/2019-09/schema
")$id
$anchor
$recursiveAnchor
and$recursiveRef
$vocabulary
unevaluatedItems
andunevaluatedProperties
(which require annotation support)format
(does not cause an error when used)
For a more full-featured implementation of the JSON Schema specification, see JSON::Schema::Draft201909.
LIMITATIONS
Types
Perl is a more loosely-typed language than JSON. This module delves into a value's internal representation in an attempt to derive the true "intended" type of the value. However, if a value is used in another context (for example, a numeric value is concatenated into a string, or a numeric string is used in an arithmetic operation), additional flags can be added onto the variable causing it to resemble the other type. This should not be an issue if data validation is occurring immediately after decoding a JSON payload.
For more information, see "MAPPING" in Cpanel::JSON::XS.
SECURITY CONSIDERATIONS
The pattern
and patternProperties
keywords evaluate regular expressions from the schema. No effort is taken (at this time) to sanitize the regular expressions for embedded code or potentially pathological constructs that may pose a security risk, either via denial of service or by allowing exposure to the internals of your application. DO NOT USE SCHEMAS FROM UNTRUSTED SOURCES.
SEE ALSO
JSON::Schema::Draft201909: a more specification-compliant JSON Schema evaluator
Test::JSON::Schema::Acceptance: contains the official JSON Schema test suite
Understanding JSON Schema: tutorial-focused documentation
SUPPORT
Bugs may be submitted through https://github.com/karenetheridge/JSON-Schema-Tiny/issues.
I am also usually active on irc, as 'ether' at irc.perl.org
and irc.libera.chat
.
AUTHOR
Karen Etheridge <ether@cpan.org>
CONTRIBUTOR
Matt S Trout <mst@shadowcat.co.uk>
COPYRIGHT AND LICENCE
This software is copyright (c) 2021 by Karen Etheridge.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.