User: thies.marwitz@matplus.eu clicked save for playground/matplus/thies-marwitz/create-part-information-schema.json

This commit is contained in:
sartography-automated-committer 2024-02-20 13:55:01 +00:00
parent d41ddad897
commit 0468998b78

View File

@ -1,6 +1,6 @@
{
"title": "Auto Complete",
"description": "Connect a field to a data store to auto-complete entered values.",
"title": "Nested Form / Repeating Section",
"description": "Allow the form submitter to add multiple entries for a set of fields.",
"type": "object",
"required": [
"partNumber",
@ -31,6 +31,28 @@
"type": "string",
"format": "date",
"title": "Select a city"
},
"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
}
}
}
}
}
}