1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
Source: libjson-validator-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Lucas Kanashiro <kanashiro@debian.org>,
Nick Morrott <nickm@debian.org>,
Andrius Merkys <merkys@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: jq,
libboolean-perl <!nocheck>,
libcpanel-json-xs-perl (>= 3.0200) <!nocheck>,
libdata-validate-domain-perl <!nocheck>,
libdata-validate-ip-perl <!nocheck>,
libmojolicious-perl (>= 7.28) <!nocheck>,
libnet-idn-encode-perl <!nocheck>,
libscalar-list-utils-perl <!nocheck>,
libsereal-encoder-perl (>= 4.00) <!nocheck>,
libtest-deep-perl <!nocheck>,
libtest-simple-perl (>= 1.300000) <!nocheck>,
libyaml-libyaml-perl (>= 0.80) <!nocheck>,
libyaml-pp-perl <!nocheck>,
openapi-specification
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libjson-validator-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libjson-validator-perl.git
Homepage: https://metacpan.org/release/JSON-Validator
Rules-Requires-Root: no
Package: libjson-validator-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libmojolicious-perl (>= 7.28),
libyaml-pp-perl,
openapi-specification
Recommends: libcpanel-json-xs-perl (>= 3.0200),
libdata-validate-domain-perl,
libdata-validate-ip-perl,
libnet-idn-encode-perl,
libscalar-list-utils-perl,
libsereal-encoder-perl (>= 4.00)
Breaks: sreview-web (<< 0.6.1-2)
Replaces: sreview-web (<< 0.6.1-2)
Description: module to validate data against a JSON schema
JSON::Validator is a class for validating data against JSON schemas. You
might want to use this instead of JSON::Schema if you need to validate data
against draft 4 of the JSON schema specification.
.
JSON::Validator can load JSON schemas in multiple formats: Plain perl data
structured or files on disk/web in the JSON/YAML format. The JSON parsing is
done using Mojo::JSON, while the YAML parsing is done with an optional
modules which need to be installed manually. JSON::Validator will look for
the YAML modules in this order: YAML::XS, YAML::Syck. The order is set by
which module that performs the best, so it might change in the future.
|