Last active
May 22, 2020 16:06
-
-
Save adrianlemess/363780bc0f61b975a97dd0f94ac9c63b to your computer and use it in GitHub Desktop.
Form schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"age": { | |
"title": "Age", | |
"type": "number", | |
"min": 0, | |
"max": 120, | |
"validations": { | |
"required": "Age must be filled", | |
"min":"Age should not be less than 0", | |
"max":"Age should not be more than 120" | |
} | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment