Merge pull request #1399 from nikhen/i845

data.email should NOT be shorter than 8 characters #845
This commit is contained in:
jc21 2021-09-13 11:03:22 +10:00 committed by GitHub
commit 784516283f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,7 +153,7 @@
"example": "john@example.com", "example": "john@example.com",
"format": "email", "format": "email",
"type": "string", "type": "string",
"minLength": 8, "minLength": 6,
"maxLength": 100 "maxLength": 100
}, },
"password": { "password": {