use utf8; package SemanticWeb::Schema::WorkBasedProgram; # ABSTRACT: A program with both an educational and employment component use v5.14; use Moo; extends qw/ SemanticWeb::Schema::EducationalOccupationalProgram /; use MooX::JSON_LD 'WorkBasedProgram'; use Ref::Util qw/ is_plain_hashref /; # RECOMMEND PREREQ: Ref::Util::XS use namespace::autoclean; our $VERSION = 'v21.0.0'; has occupational_category => ( is => 'rw', predicate => '_has_occupational_category', json_ld => 'occupationalCategory', ); has training_salary => ( is => 'rw', predicate => '_has_training_salary', json_ld => 'trainingSalary', ); 1; __END__ =pod =encoding UTF-8 =head1 NAME SemanticWeb::Schema::WorkBasedProgram - A program with both an educational and employment component =head1 VERSION version v21.0.0 =head1 DESCRIPTION A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs. =head1 ATTRIBUTES =head2 C C A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided. Note: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC. A occupational_category should be one of the following types: =over =item C =item C =back =head2 C<_has_occupational_category> A predicate for the L attribute. =head2 C C The estimated salary earned while in the program. A training_salary should be one of the following types: =over =item C =back =head2 C<_has_training_salary> A predicate for the L attribute. =head1 SEE ALSO L =head1 SOURCE The development version is on github at L and may be cloned from L =head1 BUGS Please report any bugs or feature requests on the bugtracker website L 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 =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2018-2022 by Robert Rothenberg. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut