mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 08:25:11 +00:00
42 lines
864 B
JSON
42 lines
864 B
JSON
{
|
|
"title": "Checkbox",
|
|
"description": "A super simple checkbox",
|
|
"type": "object",
|
|
"required": [
|
|
"firstName"
|
|
],
|
|
"properties": {
|
|
"firstName": {
|
|
"type": "string",
|
|
"title": "First name",
|
|
"default": "Chuck"
|
|
},
|
|
"bio": {
|
|
"type": "string",
|
|
"title": "Bio"
|
|
},
|
|
"done": {
|
|
"type": "boolean",
|
|
"title": "Done?",
|
|
"default": false
|
|
},
|
|
"delivery_date": {
|
|
"type": "string",
|
|
"format": "date",
|
|
"title": "Preferred Delivery Date",
|
|
"validationErrorMessage": "Date must be today's date or later"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"title": "Password",
|
|
"minLength": 3
|
|
},
|
|
"favoriteFruit": {
|
|
"title": "Select your favorite fruit",
|
|
"type": "string",
|
|
"anyOf": [
|
|
"options_from_task_data_var:fruits"
|
|
]
|
|
}
|
|
}
|
|
} |