2024-07-15 10:51:00 -04:00

27 lines
531 B
JSON

{
"title": "Share with us some information about yourself.",
"type": "object",
"required": [
"firstName","bio"
],
"properties": {
"firstName": {
"type": "string",
"title": "First name"
},
"lastName": {
"type": "string",
"title": "Last name",
"maxLength" : 20
},
"bio": {
"type": "string",
"title": "Tell us about your self"
},
"country": {
"type": "string",
"title": "Tell us about your Country",
"maxLength" : 300
}
}
}