demo-process-models/playground/matplus/dan-funk/simple-user-task-schema.json

40 lines
795 B
JSON
Raw Normal View History

{
"title": "A list of tasks",
"type": "object",
"required": [
"title"
],
"properties": {
"title": {
"type": "string",
"title": "Task list title"
},
"tasks": {
"type": "array",
"title": "Tasks",
"items": {
"type": "object",
"required": [
"title"
],
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "A sample title"
},
"value": {
"type": "string",
"title": "Value",
"description": "Enter the task details"
},
"done": {
"type": "boolean",
"title": "Done?",
"default": false
}
}
}
}
}
}