SemanticWeb-Schema/lib/SemanticWeb/Schema/LodgingBusiness.pm
use utf8;
package SemanticWeb::Schema::LodgingBusiness;
# ABSTRACT: A lodging business
use v5.14;
use Moo;
extends qw/ SemanticWeb::Schema::LocalBusiness /;
use MooX::JSON_LD 'LodgingBusiness';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v23.0.0';
has amenity_feature => (
is => 'rw',
predicate => '_has_amenity_feature',
json_ld => 'amenityFeature',
);
has audience => (
is => 'rw',
predicate => '_has_audience',
json_ld => 'audience',
);
has available_language => (
is => 'rw',
predicate => '_has_available_language',
json_ld => 'availableLanguage',
);
has checkin_time => (
is => 'rw',
predicate => '_has_checkin_time',
json_ld => 'checkinTime',
);
has checkout_time => (
is => 'rw',
predicate => '_has_checkout_time',
json_ld => 'checkoutTime',
);
has number_of_rooms => (
is => 'rw',
predicate => '_has_number_of_rooms',
json_ld => 'numberOfRooms',
);
has pets_allowed => (
is => 'rw',
predicate => '_has_pets_allowed',
json_ld => 'petsAllowed',
);
has star_rating => (
is => 'rw',
predicate => '_has_star_rating',
json_ld => 'starRating',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::LodgingBusiness - A lodging business
=head1 VERSION
version v23.0.0
=head1 DESCRIPTION
A lodging business, such as a motel, hotel, or inn.
=head1 ATTRIBUTES
=head2 C<amenity_feature>
C<amenityFeature>
An amenity feature (e.g. a characteristic or service) of the Accommodation.
This generic property does not make a statement about whether the feature
is included in an offer for the main accommodation or available at extra
costs.
A amenity_feature should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::LocationFeatureSpecification']>
=back
=head2 C<_has_amenity_feature>
A predicate for the L</amenity_feature> attribute.
=head2 C<audience>
An intended audience, i.e. a group for whom something was created.
A audience should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Audience']>
=back
=head2 C<_has_audience>
A predicate for the L</audience> attribute.
=head2 C<available_language>
C<availableLanguage>
A language someone may use with or at the item, service or place. Please use one of the language codes from the L<IETF BCP 47 standard|http://tools.ietf.org/html/bcp47>. See also [[inLanguage]].
A available_language should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Language']>
=item C<Str>
=back
=head2 C<_has_available_language>
A predicate for the L</available_language> attribute.
=head2 C<checkin_time>
C<checkinTime>
The earliest someone may check into a lodging establishment.
A checkin_time should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_checkin_time>
A predicate for the L</checkin_time> attribute.
=head2 C<checkout_time>
C<checkoutTime>
The latest someone may check out of a lodging establishment.
A checkout_time should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_checkout_time>
A predicate for the L</checkout_time> attribute.
=head2 C<number_of_rooms>
C<numberOfRooms>
The number of rooms (excluding bathrooms and closets) of the accommodation
or lodging business. Typical unit code(s): ROM for room or C62 for no unit.
The type of room can be put in the unitText property of the
QuantitativeValue.
A number_of_rooms should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::QuantitativeValue']>
=item C<Num>
=back
=head2 C<_has_number_of_rooms>
A predicate for the L</number_of_rooms> attribute.
=head2 C<pets_allowed>
C<petsAllowed>
Indicates whether pets are allowed to enter the accommodation or lodging
business. More detailed information can be put in a text value.
A pets_allowed should be one of the following types:
=over
=item C<Bool>
=item C<Str>
=back
=head2 C<_has_pets_allowed>
A predicate for the L</pets_allowed> 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