use utf8; package SemanticWeb::Schema::CookAction; # ABSTRACT: The act of producing/preparing food. use v5.14; use Moo; extends qw/ SemanticWeb::Schema::CreateAction /; use MooX::JSON_LD 'CookAction'; use Ref::Util qw/ is_plain_hashref /; # RECOMMEND PREREQ: Ref::Util::XS use namespace::autoclean; our $VERSION = 'v21.0.0'; has food_establishment => ( is => 'rw', predicate => '_has_food_establishment', json_ld => 'foodEstablishment', ); has food_event => ( is => 'rw', predicate => '_has_food_event', json_ld => 'foodEvent', ); has recipe => ( is => 'rw', predicate => '_has_recipe', json_ld => 'recipe', ); 1; __END__ =pod =encoding UTF-8 =head1 NAME SemanticWeb::Schema::CookAction - The act of producing/preparing food. =head1 VERSION version v21.0.0 =head1 DESCRIPTION The act of producing/preparing food. =head1 ATTRIBUTES =head2 C C A sub property of location. The specific food establishment where the action occurred. A food_establishment should be one of the following types: =over =item C =item C =back =head2 C<_has_food_establishment> A predicate for the L attribute. =head2 C C A sub property of location. The specific food event where the action occurred. A food_event should be one of the following types: =over =item C =back =head2 C<_has_food_event> A predicate for the L attribute. =head2 C A sub property of instrument. The recipe/instructions used to perform the action. A recipe should be one of the following types: =over =item C =back =head2 C<_has_recipe> 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