sample-process-models/misc/qa/forms/test-nested-form-with-text-area/test-nested-form-with-text-area-schema.json

24 lines
531 B
JSON
Raw Normal View History

2024-07-15 10:51:00 -04:00
{
"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"
}
}
}
}
}
}