Skip to content

Instantly share code, notes, and snippets.

@adrianlemess
Last active May 22, 2020 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrianlemess/363780bc0f61b975a97dd0f94ac9c63b to your computer and use it in GitHub Desktop.
Save adrianlemess/363780bc0f61b975a97dd0f94ac9c63b to your computer and use it in GitHub Desktop.
Form schema
{
"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