User: dbayless@humanscalebusiness.org clicked save for playground/human-scale-business/test-process/sample_1-schema.json
This commit is contained in:
parent
4e2617884e
commit
e5a18a6b4f
|
@ -1,14 +1,19 @@
|
||||||
{
|
{
|
||||||
"title": "Sample User Input Form",
|
"title": "Text Field",
|
||||||
"description": "A simple form for gathering user input.",
|
"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",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
"flag_stars"
|
"firstName"
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
"flag_stars": {
|
"flag_stars": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"title": "Flag Stars"
|
"title": "Flag Stars"
|
||||||
|
},
|
||||||
|
"firstName": {
|
||||||
|
"type": "string",
|
||||||
|
"title": "First name",
|
||||||
|
"default": "Chuck"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue