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