The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
=head1 NAME

XML::Compile::Schema::Specs - Predefined Schema Information

=head1 SYNOPSIS

 # not for end-users
 use XML::Compile::Schema::Specs;

=head1 DESCRIPTION

This package defines the various schema-specifications.

=head1 METHODS

=over 4

=item XML::Compile::Schema::Specs-E<gt>B<builtInType>((NODE|undef), EXPANDED | (URI,LOCAL), OPTIONS)

Provide an EXPANDED (full) type name or an namespace URI and a LOCAL node
name.  Returned is a HASH with process information or C<undef> if not
found.

 -Option         --Default
  sloppy_floats    <false>
  sloppy_integers  <false>

=over 2

=item sloppy_floats => BOOLEAN

The float types of XML are all quite big, and support NaN, INF, and -INF.
Perl's normal floats do not, and therefore Math::BigFloat is used.  This,
however, is slow.  When true, your application will crash on any value which
is not understood by Perl's default float... but run much faster.

=item sloppy_integers => BOOLEAN

the <integer> types must accept huge integers, which require
C<Math::BigInt> objects to process.  But often, Perl's normal signed
32bit integers suffice... which is good for performance, but not standard
compliant.

=back

=item XML::Compile::Schema::Specs-E<gt>B<predefinedSchema>(URI)

Return a HASH which contains the schema information for the specified
URI (or undef if it doesn't exist).

=item XML::Compile::Schema::Specs-E<gt>B<predefinedSchemas>()

Returns the uri of all predefined schemas.

=back

=head1 SEE ALSO

This module is part of XML-Compile distribution version 1.31,
built on January 24, 2013. Website: F<http://perl.overmeer.net/xml-compile/>

Other distributions in this suite:
L<XML::Compile>,
L<XML::Compile::SOAP>,
L<XML::Compile::SOAP12>,
L<XML::Compile::SOAP::Daemon>,
L<XML::Compile::SOAP::WSA>,
L<XML::Compile::C14N>,
L<XML::Compile::WSS>,
L<XML::Compile::WSS::Signature>,
L<XML::Compile::Tester>,
L<XML::Compile::Cache>,
L<XML::Compile::Dumper>,
L<XML::Compile::RPC>,
L<XML::Rewrite>,
L<XML::eXistDB>,
and
L<XML::LibXML::Simple>.

Please post questions or ideas to the mailinglist at
F<http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/xml-compile>

For live contact with other developers, visit the C<#xml-compile> channel
on C<irc.perl.org>.

=head1 LICENSE

Copyrights 2006-2013 by [Mark Overmeer]. For other contributors see ChangeLog.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See F<http://www.perl.com/perl/misc/Artistic.html>