mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 18:38:11 +00:00
21 lines
495 B
JSON
21 lines
495 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": [
|
|
"partNumber",
|
|
"serialNumber"
|
|
],
|
|
"properties": {
|
|
"partNumber": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "12345"
|
|
},
|
|
"serialNumber": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "12345"
|
|
}
|
|
}
|
|
} |