The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

JSON::Schema::AsType::Draft6::Types - JSON-schema v6 keywords as types

VERSION

version 0.4.4

SYNOPSIS

my $type = Object &
Properties[
foo => Minimum[3]
];
$type->check({ foo => 5 }); # => 1
$type->check({ foo => 1 }); # => 0

EXPORTED TYPES

Null Boolean Array Object String Integer Pattern Number Enum
OneOf AllOf AnyOf
Not
Minimum ExclusiveMinimum Maximum ExclusiveMaximum MultipleOf
MaxLength MinLength
Items AdditionalItems MaxItems MinItems UniqueItems
PatternProperties AdditionalProperties MaxProperties MinProperties
Dependencies Dependency

Schema

Only verifies that the variable is a Type::Tiny.

Can coerce the value from a hashref defining the schema.

my $schema = Schema->coerce( \%schema );
# equivalent to
$schema = JSON::Schema::AsType::Draft4->new(
draft_version => 6,
schema => \%schema;
)->type;

AUTHOR

Yanick Champoux <yanick@babyl.dyndns.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2024 by Yanick Champoux.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.