SemanticWeb-Schema
view release on metacpan or search on metacpan
lib/SemanticWeb/Schema/Action.pm view on Meta::CPAN
use utf8;
package SemanticWeb::Schema::Action;
# ABSTRACT: An action performed by a direct agent and indirect participants upon a direct object
use Moo;
extends qw/ SemanticWeb::Schema::Thing /;
use MooX::JSON_LD 'Action';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v9.0.0';
has action_status => (
is => 'rw',
predicate => '_has_action_status',
json_ld => 'actionStatus',
);
has agent => (
is => 'rw',
predicate => '_has_agent',
json_ld => 'agent',
);
has end_time => (
is => 'rw',
predicate => '_has_end_time',
json_ld => 'endTime',
);
has error => (
is => 'rw',
predicate => '_has_error',
json_ld => 'error',
);
has instrument => (
is => 'rw',
predicate => '_has_instrument',
json_ld => 'instrument',
);
has location => (
is => 'rw',
predicate => '_has_location',
json_ld => 'location',
);
has object => (
is => 'rw',
predicate => '_has_object',
json_ld => 'object',
);
( run in 0.428 second using v1.01-cache-2.11-cpan-39bf76dae61 )