demo-process-models/playground/dan/funky-freddie/test-schema.json

19 lines
367 B
JSON

{
"title": "Text Area",
"description": "A larger resizable area to enter longer text. (field name will be 'bio')",
"type": "object",
"required": [
"firstName"
],
"properties": {
"firstName": {
"type": "string",
"title": "First name",
"default": "Chuck"
},
"bio": {
"type": "string",
"title": "Bio"
}
}
}