demo-process-models/playground/human-scale-business/test-process/sample_1-schema.json

19 lines
445 B
JSON
Raw Normal View History

{
"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": [
"firstName"
],
"properties": {
"flag_stars": {
"type": "string",
"title": "Flag Stars"
},
"firstName": {
"type": "string",
"title": "First name",
"default": "Chuck"
}
}
}