User: gecastro@gmail.com added process model file playground/unsw/edit-test/edit-row-schema.json

This commit is contained in:
sartography-automated-committer 2024-01-23 04:46:07 +00:00
parent e553a94bfe
commit 3d441261ae

View File

@ -0,0 +1,29 @@
{
"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"
}
}
}