/usr/share/perl5/Sah/Schema/DefHash.pm is in libdefhash-perl 1.0.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | package Sah::Schema::DefHash;
our $DATE = '2015-09-03'; # DATE
our $VERSION = '1.0.11'; # VERSION
use strict;
use warnings;
our %SCHEMAS;
$SCHEMAS{defhash} = [hash => {
# tmp
_prop => {
v => {},
defhash_v => {},
name => {},
caption => {},
summary => {},
description => {},
tags => {},
default_lang => {},
x => {},
},
keys => {
v => ['float*', default=>1],
defhash_v => ['int*', default=>1],
name => [
'str*',
'clset&' => [
{
match => qr/\A\w+\z/,
'match.err_level' => 'warn',
'match.err_msg' => 'should be a word',
},
{
max_len => 32,
'max_len.err_level' => 'warn',
'max_len.err_msg' => 'should be short',
},
],
],
caption => [
'str*',
],
summary => [
'str',
'clset&' => [
{
max_len => 72,
'max_len.err_level' => 'warn',
'max_len.err_msg' => 'should be short',
},
{
'match' => qr/\n/,
'match.op' => 'not',
'match.err_level' => 'warn',
'match.err_msg' => 'should only be a single-line text',
},
],
],
description => [
'str',
],
tags => [
'array',
of => [
'any*',
of => [
'str*',
'hash*', # XXX defhash, but this is circular
],
],
],
default_lang => [
'str*', # XXX check format, e.g. 'en' or 'en_US'
],
x => [
'any',
],
},
'keys.restrict' => 0,
'allowed_keys_re' => qr/\A\w+(\.\w+)*\z/,
}];
$SCHEMAS{defhash_v1} = [defhash => {
keys => {
defhash_v => ['int*', is=>1],
},
}];
# XXX check known attributes (.alt, etc)
# XXX check alt.XXX format (e.g. must be alt\.(lang\.\w+|env_lang\.\w+)
# XXX *.alt.*.X should also be of the same type (e.g. description.alt.lang.foo
1;
# ABSTRACT: Sah schemas to validate DefHash
__END__
=pod
=encoding UTF-8
=head1 NAME
Sah::Schema::DefHash - Sah schemas to validate DefHash
=head1 VERSION
This document describes version 1.0.11 of Sah::Schema::DefHash (from Perl distribution DefHash), released on 2015-09-03.
=head1 SYNOPSIS
# schemas are put in the %SCHEMAS package variable
=head1 DESCRIPTION
This module contains L<Sah> schemas to validate L<DefHash>.
=head1 SCHEMAS
=over
=item * defhash
=item * defhash_v1
=back
=head1 SEE ALSO
L<Sah>, L<Data::Sah>
L<DefHash>
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/DefHash>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-DefHash>.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=DefHash>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
perlancar <perlancar@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|