SemanticWeb-Schema/lib/SemanticWeb/Schema/FoodEstablishment.pm
use utf8;
package SemanticWeb::Schema::FoodEstablishment;
# ABSTRACT: A food-related business.
use v5.14;
use Moo;
extends qw/ SemanticWeb::Schema::LocalBusiness /;
use MooX::JSON_LD 'FoodEstablishment';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v23.0.0';
has accepts_reservations => (
is => 'rw',
predicate => '_has_accepts_reservations',
json_ld => 'acceptsReservations',
);
has has_menu => (
is => 'rw',
predicate => '_has_has_menu',
json_ld => 'hasMenu',
);
has menu => (
is => 'rw',
predicate => '_has_menu',
json_ld => 'menu',
);
has serves_cuisine => (
is => 'rw',
predicate => '_has_serves_cuisine',
json_ld => 'servesCuisine',
);
has star_rating => (
is => 'rw',
predicate => '_has_star_rating',
json_ld => 'starRating',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::FoodEstablishment - A food-related business.
=head1 VERSION
version v23.0.0
=head1 DESCRIPTION
A food-related business.
=head1 ATTRIBUTES
=head2 C<accepts_reservations>
C<acceptsReservations>
Indicates whether a FoodEstablishment accepts reservations. Values can be
Boolean, an URL at which reservations can be made or (for backwards
compatibility) the strings ```Yes``` or ```No```.
A accepts_reservations should be one of the following types:
=over
=item C<Bool>
=item C<Str>
=back
=head2 C<_has_accepts_reservations>
A predicate for the L</accepts_reservations> attribute.
=head2 C<has_menu>
C<hasMenu>
Either the actual menu as a structured representation, as text, or a URL of
the menu.
A has_menu should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Menu']>
=item C<Str>
=back
=head2 C<_has_has_menu>
A predicate for the L</has_menu> attribute.
=head2 C<menu>
Either the actual menu as a structured representation, as text, or a URL of
the menu.
A menu should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Menu']>
=item C<Str>
=back
=head2 C<_has_menu>
A predicate for the L</menu> attribute.
=head2 C<serves_cuisine>
C<servesCuisine>
The cuisine of the restaurant.
A serves_cuisine should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_serves_cuisine>
A predicate for the L</serves_cuisine> attribute.
=head2 C<star_rating>
C<starRating>
An official rating for a lodging business or food establishment, e.g. from
national associations or standards bodies. Use the author property to
indicate the rating organization, e.g. as an Organization with name such as
(e.g. HOTREC, DEHOGA, WHR, or Hotelstars).
A star_rating should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Rating']>
=back
=head2 C<_has_star_rating>
A predicate for the L</star_rating> attribute.
=head1 SEE ALSO
L<SemanticWeb::Schema::LocalBusiness>
=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