FredericHeem/starhackit

View on GitHub
server/src/plugins/users/raml/verifyResetPasswordToken/verifyResetPasswordToken.in.schema.json

Summary

Maintainability
Test Coverage
{
    "type": "object",
    "properties": {
        "token": {
            "type": "string",
            "required": true,
            "minLength": 16,
            "maxLength": 16
        },
        "password": {
            "type": "string",
            "required": true,
            "minLength": 6,
            "maxLength": 64
        }
    }
}