mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 08:35:42 +00:00
22 lines
474 B
JSON
22 lines
474 B
JSON
{
|
|
"title": "Text Field",
|
|
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')",
|
|
"properties": {
|
|
"done": {
|
|
"type": "boolean",
|
|
"title": "Received?",
|
|
"default": false
|
|
},
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "Chuck"
|
|
},
|
|
|
|
|
|
},
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
]
|
|
} |