mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 06:05:13 +00:00
23 lines
498 B
JSON
23 lines
498 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": "Date Ranges",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [
|
|
"date_range"
|
|
],
|
|
"properties": {
|
|
"date_range": {
|
|
"type": "string",
|
|
"title": "Date Range"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |