FredericHeem/starhackit

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

Summary

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