Pooled Task

Here is an example of a pooled task workflow. To use this, simply assign the workflow to a group.

{
    "id": "pooled-task1",
    "title": "Pooled Task Test with Group Email",
    "nodes": {
        "start": {
            "type": "start",
            "transitions": {
                "start": "review"
            }
        },
        "review": {
            "type": "participant",
            "title": "Review Content",
            "transitions": {
                "approve": "approve",
                "reject": "reject"
            },
            "swimlane": "review-group"
        },
        "approve": {
            "type": "passthru",
            "transitions": {
                "finish": "end"
            }
        },
        "reject": {
            "type": "passthru",
            "transitions": {
                "finish": "end"
            }
        },
        "end": {
            "type": "end"
        }
    },
    "swimlanes": {
        "review-group": {
            "principals": []
        }
    }
}