demo-process-models/playground/matplus/dan-funk/simple-user-task-schema.json

15 lines
371 B
JSON

{
"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": [
"first_name"
],
"properties": {
"first_name": {
"type": "number",
"title": "My First name",
"default": "Chuck"
}
}
}