mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 01:08:19 +00:00
40 lines
810 B
JSON
40 lines
810 B
JSON
{
|
|
"title": "A list of tasks",
|
|
"type": "object",
|
|
"required": [
|
|
"title"
|
|
],
|
|
"properties": {
|
|
"title": {
|
|
"type": "string",
|
|
"title": "Task list title"
|
|
},
|
|
"tasks": {
|
|
"type": "array",
|
|
"title": "Extension Properties",
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |