User: dbayless@humanscalebusiness.org clicked save for playground/human-scale-business/test-process/sample_1-schema.json

This commit is contained in:
sartography-automated-committer 2023-10-26 22:38:19 +00:00
parent 4e2617884e
commit e5a18a6b4f
1 changed files with 8 additions and 3 deletions

View File

@ -1,14 +1,19 @@
{
"title": "Sample User Input Form",
"description": "A simple form for gathering user input.",
"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": [
"flag_stars"
"firstName"
],
"properties": {
"flag_stars": {
"type": "string",
"title": "Flag Stars"
},
"firstName": {
"type": "string",
"title": "First name",
"default": "Chuck"
}
}
}