mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 22:25:14 +00:00
27 lines
531 B
JSON
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
|
||
|
}
|
||
|
}
|
||
|
}
|