SemanticWeb-Schema/lib/SemanticWeb/Schema/Permit.pm
use utf8;
package SemanticWeb::Schema::Permit;
# ABSTRACT: A permit issued by an organization, e
use v5.14;
use Moo;
extends qw/ SemanticWeb::Schema::Intangible /;
use MooX::JSON_LD 'Permit';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v23.0.0';
has issued_by => (
is => 'rw',
predicate => '_has_issued_by',
json_ld => 'issuedBy',
);
has issued_through => (
is => 'rw',
predicate => '_has_issued_through',
json_ld => 'issuedThrough',
);
has permit_audience => (
is => 'rw',
predicate => '_has_permit_audience',
json_ld => 'permitAudience',
);
has valid_for => (
is => 'rw',
predicate => '_has_valid_for',
json_ld => 'validFor',
);
has valid_from => (
is => 'rw',
predicate => '_has_valid_from',
json_ld => 'validFrom',
);
has valid_in => (
is => 'rw',
predicate => '_has_valid_in',
json_ld => 'validIn',
);
has valid_until => (
is => 'rw',
predicate => '_has_valid_until',
json_ld => 'validUntil',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::Permit - A permit issued by an organization, e
=head1 VERSION
version v23.0.0
=head1 DESCRIPTION
A permit issued by an organization, e.g. a parking pass.
=head1 ATTRIBUTES
=head2 C<issued_by>
C<issuedBy>
The organization issuing the ticket or permit.
A issued_by should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Organization']>
=back
=head2 C<_has_issued_by>
A predicate for the L</issued_by> attribute.
=head2 C<issued_through>
C<issuedThrough>
The service through which the permit was granted.
A issued_through should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Service']>
=back
=head2 C<_has_issued_through>
A predicate for the L</issued_through> attribute.
=head2 C<permit_audience>
C<permitAudience>
The target audience for this permit.
A permit_audience should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Audience']>
=back
=head2 C<_has_permit_audience>
A predicate for the L</permit_audience> attribute.
=head2 C<valid_for>
C<validFor>
The duration of validity of a permit or similar thing.
A valid_for should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Duration']>
=back
=head2 C<_has_valid_for>
A predicate for the L</valid_for> attribute.
=head2 C<valid_from>
C<validFrom>
The date when the item becomes valid.
A valid_from should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_valid_from>
A predicate for the L</valid_from> attribute.
=head2 C<valid_in>
C<validIn>
The geographic area where a permit or similar thing is valid.
A valid_in should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::AdministrativeArea']>
=back
=head2 C<_has_valid_in>
A predicate for the L</valid_in> attribute.
=head2 C<valid_until>
C<validUntil>
The date when the item is no longer valid.
A valid_until should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_valid_until>
A predicate for the L</valid_until> attribute.
=head1 SEE ALSO
L<SemanticWeb::Schema::Intangible>
=head1 SOURCE
The development version is on github at L<https://github.com/robrwo/SemanticWeb-Schema>
and may be cloned from L<git://github.com/robrwo/SemanticWeb-Schema.git>
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
L<https://github.com/robrwo/SemanticWeb-Schema/issues>
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
Robert Rothenberg <rrwo@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2018-2023 by Robert Rothenberg.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut