SemanticWeb-Schema/lib/SemanticWeb/Schema/RealEstateListing.pm
use utf8;
package SemanticWeb::Schema::RealEstateListing;
# ABSTRACT: A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out
use v5.14;
use Moo;
extends qw/ SemanticWeb::Schema::WebPage /;
use MooX::JSON_LD 'RealEstateListing';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v23.0.0';
has date_posted => (
is => 'rw',
predicate => '_has_date_posted',
json_ld => 'datePosted',
);
has lease_length => (
is => 'rw',
predicate => '_has_lease_length',
json_ld => 'leaseLength',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::RealEstateListing - A [[RealEstateListing]] is a listing that describes one or more real-estate [[Offer]]s (whose [[businessFunction]] is typically to lease out
=head1 VERSION
version v23.0.0
=head1 DESCRIPTION
A L<SemanticWeb::Schema::RealEstateListing> is a listing that describes one or more real-estate L<SemanticWeb::Schema::Offer>s (whose [[businessFunction]] is typically to lease out, or to sell).
The L<SemanticWeb::Schema::RealEstateListing> type itself represents the overall listing, as manifested in some L<SemanticWeb::Schema::WebPage>.
=head1 ATTRIBUTES
=head2 C<date_posted>
C<datePosted>
Publication date of an online listing.
A date_posted should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_date_posted>
A predicate for the L</date_posted> attribute.
=head2 C<lease_length>
C<leaseLength>
Length of the lease for some L<SemanticWeb::Schema::Accommodation>, either particular to some L<SemanticWeb::Schema::Offer> or in some cases intrinsic to the property.
A lease_length should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::Duration']>
=item C<InstanceOf['SemanticWeb::Schema::QuantitativeValue']>
=back
=head2 C<_has_lease_length>
A predicate for the L</lease_length> attribute.
=head1 SEE ALSO
L<SemanticWeb::Schema::WebPage>
=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