workflow_example.json 1012 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "nodes": {
  3. "start": {
  4. "type": "task",
  5. "title": "Initial Review",
  6. "content": "Review the incoming request and gather requirements",
  7. "assignee": "1",
  8. "dependsOn": []
  9. },
  10. "analysis": {
  11. "type": "task",
  12. "title": "Data Analysis",
  13. "content": "Analyze the provided data and create a report",
  14. "assignee": "2",
  15. "dependsOn": ["start"]
  16. },
  17. "approval": {
  18. "type": "task",
  19. "title": "Manager Approval",
  20. "content": "Review analysis and approve for implementation",
  21. "assignee": "3",
  22. "dependsOn": ["analysis"]
  23. },
  24. "implementation": {
  25. "type": "task",
  26. "title": "Implementation",
  27. "content": "Implement the approved solution",
  28. "assignee": "2",
  29. "dependsOn": ["approval"]
  30. },
  31. "complete": {
  32. "type": "task",
  33. "title": "Completion & Handoff",
  34. "content": "Finalize and hand off to the customer",
  35. "assignee": "1",
  36. "dependsOn": ["implementation"]
  37. }
  38. }
  39. }