mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-23 12:48:12 +00:00
75 lines
1.6 KiB
JSON
75 lines
1.6 KiB
JSON
{
|
||
"title": "Nested Form / Repeating Section",
|
||
"description": "Allow the form submitter to add multiple entries for a set of fields.",
|
||
"type": "object",
|
||
"required": [
|
||
"pushups",
|
||
"thanos",
|
||
"bulletproof"
|
||
],
|
||
|
||
"type": "boolean",
|
||
"title": "When Chuck Norris does a pushup, he’s pushing the Earth down.",
|
||
"oneOf": [
|
||
{
|
||
"title": "True",
|
||
"const": true
|
||
},
|
||
{
|
||
"title": "False",
|
||
"const": false
|
||
}
|
||
]
|
||
},
|
||
"thanos": {
|
||
"type": "boolean",
|
||
"title": "Chuck Norris was given a bloody nose by Thanos the god like villan from the Avengers Movies",
|
||
"oneOf": [
|
||
{
|
||
"title": "True",
|
||
"const": true
|
||
},
|
||
{
|
||
"title": "False",
|
||
"const": false
|
||
}
|
||
]
|
||
},
|
||
"bulletproof": {
|
||
"type": "boolean",
|
||
"title": "A bulletproof vest wears Chuck Norris for protection.",
|
||
"oneOf": [
|
||
{
|
||
"title": "True",
|
||
"const": true
|
||
},
|
||
{
|
||
"title": "False",
|
||
"const": false
|
||
}
|
||
]
|
||
},
|
||
"tasks": {
|
||
"type": "array",
|
||
"title": "Tasks",
|
||
"items": {
|
||
"type": "object",
|
||
"required": [
|
||
"title"
|
||
],
|
||
"properties": {
|
||
"title": {
|
||
"type": "string",
|
||
"title": "Title",
|
||
"description": "Please describe the task to complete"
|
||
},
|
||
"done": {
|
||
"type": "boolean",
|
||
"title": "Done?",
|
||
"default": false
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
} |