User: admin@spiffworkflow.org clicked save for playground/dan/dans-first-progress-model/example-schema.json

This commit is contained in:
sartography-automated-committer 2023-09-20 18:30:34 +00:00
parent 388d69c1bd
commit 1417644f6a

View File

@ -1,6 +1,6 @@
{
"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')",
"title": "Checkbox",
"description": "A super simple checkbox",
"type": "object",
"required": [
"firstName"
@ -10,6 +10,11 @@
"type": "string",
"title": "First name",
"default": "Chuck"
},
"done": {
"type": "boolean",
"title": "Done?",
"default": false
}
}
}