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

24 lines
529 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": "Leave Dates",
"items": {
"type": "object",
"required": [
"leave_date"
],
"properties": {
"leave_date": {
"type": "string",
"title": "Leave Date",
"format": "date"
}
}
}
}
}
}