mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
33 lines
815 B
JSON
33 lines
815 B
JSON
|
{
|
||
|
"title": "Nested Form / Repeating Section",
|
||
|
"description": "Allow the form submitter to add multiple entries for a set of fields.",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"item": {
|
||
|
"type": "array",
|
||
|
"title": "Numeric Ranges",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"numeric_range"
|
||
|
],
|
||
|
"properties": {
|
||
|
"numeric_range": {
|
||
|
"type": "object",
|
||
|
"title": "Numeric Range",
|
||
|
"properties": {
|
||
|
"min": {
|
||
|
"type": "number",
|
||
|
"title": "Minimum Value"
|
||
|
},
|
||
|
"max": {
|
||
|
"type": "number",
|
||
|
"title": "Maximum Value"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|