mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 06:05:13 +00:00
21 lines
472 B
JSON
21 lines
472 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 Id",
|
|
"default": "1"
|
|
},
|
|
"itemName": {
|
|
"type": "string",
|
|
"title": "Item name",
|
|
"default": "Item 1"
|
|
}
|
|
}
|
|
} |