mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 22:25:14 +00:00
21 lines
474 B
JSON
21 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')",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"itemId",
|
||
|
"itemName"
|
||
|
],
|
||
|
"properties": {
|
||
|
"itemId": {
|
||
|
"type": "string",
|
||
|
"title": "Item name",
|
||
|
"default": "1"
|
||
|
},
|
||
|
"itemName": {
|
||
|
"type": "string",
|
||
|
"title": "Item name",
|
||
|
"default": "Item 1"
|
||
|
}
|
||
|
}
|
||
|
}
|