NAME
    Data::Schema::Schema::CPANMeta - Schema for CPAN Meta

VERSION
    version 0.01

SYNOPSIS
     use Data::Schema; # ds_validate
     use Data::Schema::Schema::CPANMeta qw($schema_14);
     use YAML; # Load, Dump
     use File::Slurp; # read_file

     my $meta = Load(scalar read_file "META.yml");
     my $res = ds_validate($meta, $schema_14);
     $res->{success} or die Dump $res->{errors};

DESCRIPTION
    This module contains the schema for CPAN META.yml specification version
    1.4, in Data::Schema language. If you browse the source of this module,
    you can find the schema written as YAML.

    You can use the schema to validate META.yml files.

SEE ALSO
    Data::Schema

    Module::Build

    CPAN META.yml specification document,
    http://module-build.sourceforge.net/META-spec-v1.4.html

AUTHOR
      Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2009 by Steven Haryanto.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.

