SemanticWeb-Schema/lib/SemanticWeb/Schema/FlightReservation.pm
use utf8;
package SemanticWeb::Schema::FlightReservation;
# ABSTRACT: A reservation for air travel
use v5.14;
use Moo;
extends qw/ SemanticWeb::Schema::Reservation /;
use MooX::JSON_LD 'FlightReservation';
use Ref::Util qw/ is_plain_hashref /;
# RECOMMEND PREREQ: Ref::Util::XS
use namespace::autoclean;
our $VERSION = 'v23.0.0';
has boarding_group => (
is => 'rw',
predicate => '_has_boarding_group',
json_ld => 'boardingGroup',
);
has passenger_priority_status => (
is => 'rw',
predicate => '_has_passenger_priority_status',
json_ld => 'passengerPriorityStatus',
);
has passenger_sequence_number => (
is => 'rw',
predicate => '_has_passenger_sequence_number',
json_ld => 'passengerSequenceNumber',
);
has security_screening => (
is => 'rw',
predicate => '_has_security_screening',
json_ld => 'securityScreening',
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
SemanticWeb::Schema::FlightReservation - A reservation for air travel
=head1 VERSION
version v23.0.0
=head1 DESCRIPTION
A reservation for air travel.
Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use L<SemanticWeb::Schema::Offer>.
=head1 ATTRIBUTES
=head2 C<boarding_group>
C<boardingGroup>
The airline-specific indicator of boarding order / preference.
A boarding_group should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_boarding_group>
A predicate for the L</boarding_group> attribute.
=head2 C<passenger_priority_status>
C<passengerPriorityStatus>
The priority status assigned to a passenger for security or boarding (e.g.
FastTrack or Priority).
A passenger_priority_status should be one of the following types:
=over
=item C<InstanceOf['SemanticWeb::Schema::QualitativeValue']>
=item C<Str>
=back
=head2 C<_has_passenger_priority_status>
A predicate for the L</passenger_priority_status> attribute.
=head2 C<passenger_sequence_number>
C<passengerSequenceNumber>
The passenger's sequence number as assigned by the airline.
A passenger_sequence_number should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_passenger_sequence_number>
A predicate for the L</passenger_sequence_number> attribute.
=head2 C<security_screening>
C<securityScreening>
The type of security screening the passenger is subject to.
A security_screening should be one of the following types:
=over
=item C<Str>
=back
=head2 C<_has_security_screening>
A predicate for the L</security_screening> attribute.
=head1 SEE ALSO
L<SemanticWeb::Schema::Reservation>
=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