User: ueck@net-labs.de clicked save for playground/tech-uni-munich/review-document/upload_document_form-schema.json

This commit is contained in:
sartography-automated-committer 2023-12-01 09:59:55 +00:00
parent bcdfe8f2da
commit 56e16f8260

View File

@ -1 +1,29 @@
{}
{
"title": "Nested Form / Repeating Section",
"description": "Allow the form submitter to add multiple entries for a set of fields.",
"type": "object",
"properties": {
"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
}
}
}
}
}
}