2024-02-16 11:01:06 +00:00
|
|
|
{
|
2024-02-16 11:06:37 +00:00
|
|
|
"title": "A registration form",
|
|
|
|
"description": "A simple form example.",
|
2024-02-16 11:01:06 +00:00
|
|
|
"type": "object",
|
|
|
|
"required": [
|
2024-02-16 11:11:19 +00:00
|
|
|
"first_name",
|
2024-02-16 11:06:37 +00:00
|
|
|
"lastName"
|
2024-02-16 11:01:06 +00:00
|
|
|
],
|
|
|
|
"properties": {
|
2024-02-16 11:11:16 +00:00
|
|
|
"first": {
|
2024-02-16 11:06:37 +00:00
|
|
|
"type": "string",
|
|
|
|
"title": "First name",
|
2024-02-16 11:01:06 +00:00
|
|
|
"default": "Chuck"
|
2024-02-16 11:06:37 +00:00
|
|
|
},
|
|
|
|
"lastName": {
|
|
|
|
"type": "string",
|
|
|
|
"title": "Last name"
|
|
|
|
},
|
|
|
|
"age": {
|
|
|
|
"type": "integer",
|
|
|
|
"title": "Age"
|
|
|
|
},
|
|
|
|
"bio": {
|
|
|
|
"type": "string",
|
|
|
|
"title": "Bio"
|
|
|
|
},
|
|
|
|
"password": {
|
|
|
|
"type": "string",
|
|
|
|
"title": "Password",
|
|
|
|
"minLength": 3
|
|
|
|
},
|
|
|
|
"telephone": {
|
|
|
|
"type": "string",
|
|
|
|
"title": "Telephone",
|
|
|
|
"minLength": 10
|
2024-02-16 11:01:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|