2024-02-16 11:01:22 +00:00
|
|
|
{
|
2024-02-20 13:55:01 +00:00
|
|
|
"title": "Nested Form / Repeating Section",
|
|
|
|
"description": "Allow the form submitter to add multiple entries for a set of fields.",
|
2024-02-16 11:01:22 +00:00
|
|
|
"type": "object",
|
|
|
|
"required": [
|
2024-02-16 11:02:51 +00:00
|
|
|
"partNumber",
|
2024-02-16 11:02:55 +00:00
|
|
|
"serialNumber"
|
2024-02-16 11:01:22 +00:00
|
|
|
],
|
|
|
|
"properties": {
|
2024-02-16 11:03:09 +00:00
|
|
|
"partNumber": {
|
|
|
|
"type": "string",
|
2024-02-16 11:03:19 +00:00
|
|
|
"title": "Part Number",
|
2024-02-16 11:03:09 +00:00
|
|
|
"default": "12345"
|
|
|
|
},
|
2024-02-16 11:04:00 +00:00
|
|
|
"serialNumber": {
|
|
|
|
"type": "string",
|
|
|
|
"title": "Serial Number",
|
|
|
|
"default": "01"
|
|
|
|
},
|
2024-02-16 11:04:06 +00:00
|
|
|
"confirmationNumber": {
|
2024-02-16 11:01:22 +00:00
|
|
|
"type": "string",
|
2024-02-16 11:04:14 +00:00
|
|
|
"title": "Confirmation Number",
|
2024-02-16 11:04:19 +00:00
|
|
|
"default": "1234"
|
2024-02-16 11:04:26 +00:00
|
|
|
},
|
2024-02-16 11:04:47 +00:00
|
|
|
"partDesignation": {
|
2024-02-16 11:04:27 +00:00
|
|
|
"type": "string",
|
2024-02-16 11:04:38 +00:00
|
|
|
"title": "Part Designation",
|
2024-02-16 11:06:54 +00:00
|
|
|
"default": "Test Part"
|
2024-02-20 13:54:44 +00:00
|
|
|
},
|
|
|
|
"city": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date",
|
|
|
|
"title": "Select a city"
|
2024-02-20 13:55:01 +00:00
|
|
|
},
|
|
|
|
"tasks": {
|
|
|
|
"type": "array",
|
|
|
|
"title": "Tasks",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"required": [
|
|
|
|
"title"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"title": {
|
|
|
|
"type": "string",
|
|
|
|
"title": "Title",
|
|
|
|
"description": "Please describe the task to complete"
|
|
|
|
},
|
|
|
|
"done": {
|
|
|
|
"type": "boolean",
|
|
|
|
"title": "Done?",
|
|
|
|
"default": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-02-16 11:04:27 +00:00
|
|
|
}
|
2024-02-16 11:01:22 +00:00
|
|
|
}
|
|
|
|
}
|