mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-24 16:38:56 +00:00
29 lines
539 B
JSON
29 lines
539 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": [
|
|
"name",
|
|
"x",
|
|
"y",
|
|
"z"
|
|
],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"title": "Item name"
|
|
},
|
|
"x": {
|
|
"type": "number",
|
|
"title": "X"
|
|
},
|
|
"y": {
|
|
"type": "number",
|
|
"title": "Y"
|
|
},
|
|
"z": {
|
|
"type": "number",
|
|
"title": "Z"
|
|
}
|
|
}
|
|
} |