mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-25 01:38:07 +00:00
40 lines
890 B
JSON
40 lines
890 B
JSON
{
|
||
"title": "Список организаций для проверки",
|
||
"type": "object",
|
||
"required": [
|
||
"title"
|
||
],
|
||
"properties": {
|
||
"title": {
|
||
"type": "string",
|
||
"title": "Номер проверки"
|
||
},
|
||
"tasks": {
|
||
"type": "array",
|
||
"title": "Tasks",
|
||
"items": {
|
||
"type": "object",
|
||
"required": [
|
||
"title"
|
||
],
|
||
"properties": {
|
||
"title": {
|
||
"type": "string",
|
||
"title": "ИНН",
|
||
"description": "В"
|
||
},
|
||
"details": {
|
||
"type": "string",
|
||
"title": "Task details",
|
||
"description": "Enter the task details"
|
||
},
|
||
"done": {
|
||
"type": "boolean",
|
||
"title": "Done?",
|
||
"default": false
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
} |