The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
{
    plugins => [
        [ 'PODRenderer' ],
        [ 'Test' => { args => "one" } ],
    ],
    backend => 'test://localhost/',
    read_schema => 1,
    collections => {
        people => {
            properties => {
                email => {
                    pattern => '^[^@]+@[^@]+$',
                },
            },
        },
        users => {
            properties => {
                password => {
                    format => 'password',
                },
            },
        },
    },
}