The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package T::User;

use Validation::Class;

field  'string' => { mixin => ':str' };

document 'user' => {
    'id'          => 'string',
    'type'        => 'string',
    'name'        => 'string',
    'company'     => 'string',
    'login'       => 'string',
    'email'       => 'string',
    'locations.@' => 'location'
};

1;