File: BadVocabularySub3.pm

package info (click to toggle)
libjson-schema-modern-perl 0.619-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,372 kB
  • sloc: perl: 4,014; makefile: 9
file content (12 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
# vim: set ft=perl ts=8 sts=2 sw=2 tw=100 et :
package MyVocabulary::BadVocabularySub3;
use Moo;
with 'JSON::Schema::Modern::Vocabulary';

sub vocabulary {
  'https://some/uri' => 'wrongdraft',
}

sub keywords {}

1;