SemanticWeb-Schema/lib/SemanticWeb/Schema/EducationalOccupationalCredential.pm
use utf8;
package SemanticWeb::Schema::EducationalOccupationalCredential;
# ABSTRACT: An educational or occupational credential
use v5.14;
use Moo;
extends qw/ SemanticWeb::Schema::CreativeWork /;
use MooX::JSON_LD 'EducationalOccupationalCredential';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v23.0.0';
has competency_required => (
is => 'rw',
predicate => '_has_competency_required',
json_ld => 'competencyRequired',
);
has credential_category => (
is => 'rw',
predicate => '_has_credential_category',
json_ld => 'credentialCategory',
);
has educational_level => (
is => 'rw',
predicate => '_has_educational_level',
json_ld => 'educationalLevel',
);
has recognized_by => (
is => 'rw',
predicate => '_has_recognized_by',
json_ld => 'recognizedBy',
);
has valid_for => (
is => 'rw',
predicate => '_has_valid_for',
json_ld => 'validFor',
);
has valid_in => (
is => 'rw',
predicate => '_has_valid_in',
json_ld => 'validIn',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::EducationalOccupationalCredential - An educational or occupational credential
=head1 VERSION
version v23.0.0
=head1 DESCRIPTION
An educational or occupational credential. A diploma, academic degree,
certification, qualification, badge, etc., that may be awarded to a person
or other entity that meets the requirements defined by the credentialer.
=head1 ATTRIBUTES
=head2 C<competency_required>
C<competencyRequired>
Knowledge, skill, ability or personal attribute that must be demonstrated
by a person or other entity in order to do something such as earn an
Educational Occupational Credential or understand a LearningResource.
A competency_required should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::DefinedTerm']>
=item C<Str>
=back
=head2 C<_has_competency_required>
A predicate for the L</competency_required> attribute.
=head2 C<credential_category>
C<credentialCategory>
The category or type of credential being described, for example "degree”,
“certificate”, “badge”, or more specific term.
A credential_category should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::DefinedTerm']>
=item C<Str>
=back
=head2 C<_has_credential_category>
A predicate for the L</credential_category> attribute.
=head2 C<educational_level>
C<educationalLevel>
The level in terms of progression through an educational or training
context. Examples of educational levels include 'beginner', 'intermediate'
or 'advanced', and formal sets of level indicators.
A educational_level should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::DefinedTerm']>
=item C<Str>
=back
=head2 C<_has_educational_level>
A predicate for the L</educational_level> attribute.
=head2 C<recognized_by>
C<recognizedBy>
An organization that acknowledges the validity, value or utility of a
credential. Note: recognition may include a process of quality assurance or
accreditation.
A recognized_by should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Organization']>
=back
=head2 C<_has_recognized_by>
A predicate for the L</recognized_by> 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_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.
=head1 SEE ALSO
L<SemanticWeb::Schema::CreativeWork>
=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