NAME
    Sah::PSchema - Retrieve and resolve parameterized Sah schema

VERSION
    This document describes version 0.001 of Sah::PSchema (from Perl
    distribution Sah-PSchema), released on 2020-06-05.

SYNOPSIS
    In YourModule.pm:

     package YourModule;
     use Sah::PSchema 'get_schema';

     our %SPEC;
     $SPEC{pick_word_from_wordlist} = {
         v => 1.1,
         args => {
             wordlist => {
                 schema => get_schema('perl::modname', {ns_prefix=>'WordList'}, {req=>1}),
                 req => 1,
                 pos => 0,
             },
         }
     };
     sub pick_word_from_wordlist {
         ...
     }

     1;

DESCRIPTION
    EXPERIMENTAL.

    This module implements parameterized Sah schema in a simple way.

FUNCTIONS
  get_schema
HOMEPAGE
    Please visit the project's homepage at
    <https://metacpan.org/release/Sah-PSchema>.

SOURCE
    Source repository is at <https://github.com/perlancar/perl-Sah-PSchema>.

BUGS
    Please report any bugs or feature requests on the bugtracker website
    <https://rt.cpan.org/Public/Dist/Display.html?Name=Sah-PSchema>

    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.

SEE ALSO
    Sah::Schemas

    Sah and Data::Sah

AUTHOR
    perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2020 by perlancar@cpan.org.

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

