mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
19 lines
336 B
JSON
19 lines
336 B
JSON
|
{
|
||
|
"title": "Text Field",
|
||
|
"description": "This is markdown enabled text field.",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"firstName"
|
||
|
],
|
||
|
"properties": {
|
||
|
"firstName": {
|
||
|
"type": "string",
|
||
|
"title": "First name",
|
||
|
"default": "Chuck"
|
||
|
},
|
||
|
"city": {
|
||
|
"type": "string",
|
||
|
"title": "City"
|
||
|
}
|
||
|
}
|
||
|
}
|