SemanticWeb-Schema/lib/SemanticWeb/Schema/ComicIssue.pm
use utf8;
package SemanticWeb::Schema::ComicIssue;
# ABSTRACT: Individual comic issues are serially published as part of a larger series
use v5.14;
use Moo;
extends qw/ SemanticWeb::Schema::PublicationIssue /;
use MooX::JSON_LD 'ComicIssue';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v23.0.0';
has artist => (
is => 'rw',
predicate => '_has_artist',
json_ld => 'artist',
);
has colorist => (
is => 'rw',
predicate => '_has_colorist',
json_ld => 'colorist',
);
has inker => (
is => 'rw',
predicate => '_has_inker',
json_ld => 'inker',
);
has letterer => (
is => 'rw',
predicate => '_has_letterer',
json_ld => 'letterer',
);
has penciler => (
is => 'rw',
predicate => '_has_penciler',
json_ld => 'penciler',
);
has variant_cover => (
is => 'rw',
predicate => '_has_variant_cover',
json_ld => 'variantCover',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::ComicIssue - Individual comic issues are serially published as part of a larger series
=head1 VERSION
version v23.0.0
=head1 DESCRIPTION
Individual comic issues are serially published as part of a larger series.
For the sake of consistency, even one-shot issues belong to a series
comprised of a single issue. All comic issues can be uniquely identified
by: the combination of the name and volume number of the series to which
the issue belongs; the issue number; and the variant description of the
issue (if any).
=head1 ATTRIBUTES
=head2 C<artist>
The primary artist for a work in a medium other than pencils or digital
line art--for example, if the primary artwork is done in watercolors or
digital paints.
A artist should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Person']>
=back
=head2 C<_has_artist>
A predicate for the L</artist> attribute.
=head2 C<colorist>
The individual who adds color to inked drawings.
A colorist should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Person']>
=back
=head2 C<_has_colorist>
A predicate for the L</colorist> attribute.
=head2 C<inker>
The individual who traces over the pencil drawings in ink after pencils are
complete.
A inker should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Person']>
=back
=head2 C<_has_inker>
A predicate for the L</inker> attribute.
=head2 C<letterer>
The individual who adds lettering, including speech balloons and sound
effects, to artwork.
A letterer should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Person']>
=back
=head2 C<_has_letterer>
A predicate for the L</letterer> attribute.
=head2 C<penciler>
The individual who draws the primary narrative artwork.
A penciler should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Person']>
=back
=head2 C<_has_penciler>
A predicate for the L</penciler> attribute.
=head2 C<variant_cover>
C<variantCover>
A description of the variant cover for the issue, if the issue is a variant
printing. For example, "Bryan Hitch Variant Cover" or "2nd Printing
Variant".
A variant_cover should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_variant_cover>
A predicate for the L</variant_cover> attribute.
=head1 SEE ALSO
L<SemanticWeb::Schema::PublicationIssue>
=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