harnessed_agent/json/tasks.json
2026-04-16 15:40:17 +08:00

46 lines
1.7 KiB
JSON

{
"tblname": "tasks",
"title": "Task Management",
"params": {
"sortby": ["execution_order asc"],
"logined_userorgid": "user_id",
"confidential_fields": [],
"browserfields": {
"exclouded": ["id", "user_id", "workflow_id", "task_config"],
"alters": {
"task_type": {
"uitype": "code",
"data": [
{"value": "skill", "text": "Skill Execution"},
{"value": "api_call", "text": "API Call"},
{"value": "subprocess", "text": "Subprocess"},
{"value": "custom_function", "text": "Custom Function"},
{"value": "conditional", "text": "Conditional Branch"}
]
},
"enabled": {
"uitype": "code",
"data": [
{"value": "Y", "text": "Enabled"},
{"value": "N", "text": "Disabled"}
]
}
}
},
"editexclouded": ["id", "user_id", "workflow_id", "created_at", "updated_at"],
"subtables": [
{
"field": "id",
"title": "Dependencies (Dependent)",
"url": "{{entire_url('dependencies_by_dependent')}}",
"subtable": "task_dependencies"
},
{
"field": "id",
"title": "Dependencies (Dependency)",
"url": "{{entire_url('dependencies_by_dependency')}}",
"subtable": "task_dependencies"
}
]
}
}