50 lines
1.1 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"title": "Nested Form / Repeating Section",
"description": "Allow the form submitter to add multiple entries for a set of fields.",
"type": "object",
"required": ["pushups","thanos","bullet"],
"properties": {
"pushups": {
"type": "boolean",
"title": "When THE Chuck Norris does a pushup, hes 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
}
]
}
}
}