20 lines
389 B
JSON
20 lines
389 B
JSON
{
|
|
"title": "Password",
|
|
"description": "A password field, with a min length of 3 and a help tip",
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
],
|
|
"properties": {
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"placeholder": "Your name"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"title": "Password",
|
|
"minLength": 3
|
|
}
|
|
}
|
|
} |