demo-process-models/playground/nutech/issue/Check box-schema.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"
]
}