mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
24 lines
531 B
JSON
24 lines
531 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": "Addresses",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [
|
|
"address"
|
|
],
|
|
"properties": {
|
|
"address": {
|
|
"type": "string",
|
|
"title": "Address",
|
|
"description": "Enter address"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |