diff --git a/playground/matplus/thies-marwitz/create-part-information-schema.json b/playground/matplus/thies-marwitz/create-part-information-schema.json index b6acf512..fd926168 100644 --- a/playground/matplus/thies-marwitz/create-part-information-schema.json +++ b/playground/matplus/thies-marwitz/create-part-information-schema.json @@ -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 + } + } + } } } } \ No newline at end of file