User: admin@spiffworkflow.org clicked save for examples/0-2-basic-example/norris-schema.json

This commit is contained in:
sartography-automated-committer 2024-03-04 09:18:19 +00:00
parent 6f81b8d8c7
commit 4aca1ee203
3 changed files with 19 additions and 4 deletions

View File

@ -2,5 +2,5 @@
"pushups": false,
"thanos": false,
"bulletproof": false,
"stage":"NEW"
"stage": "NEW"
}

View File

@ -1,7 +1,7 @@
{
"type": "object",
"required": [
"pushups",
"firstName",
"thanos",
"bulletproof"
],
@ -47,6 +47,13 @@
"const": false
}
]
},
"firstName": {
"type": "string",
"title": "First name",
"default": "Chuck"
}
}
}
},
"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')"
}

View File

@ -16,5 +16,13 @@
"ui:options": {
"inline": true
}
},
"firstName": {
"ui:autofocus": true,
"ui:emptyValue": "",
"ui:placeholder": "ui:emptyValue causes this field to always be valid despite being required",
"ui:autocomplete": "family-name",
"ui:enableMarkdownInDescription": true,
"ui:description": "Make text **bold** or *italic*. Take a look at other options [here](https://probablyup.com/markdown-to-jsx/)."
}
}