mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 19:35:28 +00:00
24 lines
464 B
JSON
24 lines
464 B
JSON
{
|
|
"title": "Text Area",
|
|
"description": "A larger resizable area to enter longer text. (field name will be 'bio')",
|
|
"properties": {
|
|
"done": {
|
|
"type": "boolean",
|
|
"title": "Received?",
|
|
"default": false
|
|
},
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "Chuck"
|
|
},
|
|
"bio": {
|
|
"type": "string",
|
|
"title": "Bio"
|
|
}
|
|
},
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
]
|
|
} |