The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use utf8;
# ABSTRACT: An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents
use Moo;
use MooX::JSON_LD 'InfectiousDisease';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
our $VERSION = 'v5.0.1';
has infectious_agent => (
is => 'rw',
predicate => '_has_infectious_agent',
json_ld => 'infectiousAgent',
);
has infectious_agent_class => (
is => 'rw',
predicate => '_has_infectious_agent_class',
json_ld => 'infectiousAgentClass',
);
has transmission_method => (
is => 'rw',
predicate => '_has_transmission_method',
json_ld => 'transmissionMethod',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::InfectiousDisease - An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents
=head1 VERSION
version v5.0.1
=head1 DESCRIPTION
An infectious disease is a clinically evident human disease resulting from
the presence of pathogenic microbial agents, like pathogenic viruses,
pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions.
To be considered an infectious disease, such pathogens are known to be able
to cause this disease.
=head1 ATTRIBUTES
=head2 C<infectious_agent>
C<infectiousAgent>
The actual infectious agent, such as a specific bacterium.
A infectious_agent should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_infectious_agent>
A predicate for the L</infectious_agent> attribute.
=head2 C<infectious_agent_class>
C<infectiousAgentClass>
The class of infectious agent (bacteria, prion, etc.) that causes the
disease.
A infectious_agent_class should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::InfectiousAgentClass']>
=back
=head2 C<_has_infectious_agent_class>
A predicate for the L</infectious_agent_class> attribute.
=head2 C<transmission_method>
C<transmissionMethod>
How the disease spreads, either as a route or vector, for example 'direct
contact', 'Aedes aegypti', etc.
A transmission_method should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_transmission_method>
A predicate for the L</transmission_method> attribute.
=head1 SEE ALSO
L<SemanticWeb::Schema::MedicalCondition>
=head1 SOURCE
The development version is on github at L<https://github.com/robrwo/SemanticWeb-Schema>
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
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-2019 by Robert Rothenberg.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut