sample-process-models/misc/qa/forms/test-nested-form-with-auto-complete/test-nested-form-with-auto-complete-schema.json
2024-07-15 10:51:00 -04:00

23 lines
485 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": "Cities",
"items": {
"type": "object",
"required": [
"city"
],
"properties": {
"city": {
"type": "string",
"title": "Select a city"
}
}
}
}
}
}