mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-24 13:48:10 +00:00
15 lines
366 B
JSON
15 lines
366 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')",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"firstName"
|
||
|
],
|
||
|
"properties": {
|
||
|
"firstName": {
|
||
|
"type": "string",
|
||
|
"title": "First name",
|
||
|
"default": "Chuck"
|
||
|
}
|
||
|
}
|
||
|
}
|