WorkflowTemplate
The WorkflowTemplate
model has (at least) the following fields:
name
: a unique name given to the workflow within the workspaceworkspace
: a foreign key to the workspace containing the workflowtask_name
: a name that refers back to theWorkflow
class to use to manage the execution of the workflowtask_data
: JSON dict field representing a subset of the parameters needed by the workflow that cannot be overridden when instantiating the rootWorkRequest
The root WorkRequest
of the workflow copies the following fields from
WorkflowTemplate
:
workspace
task_name
task_data
, combining the user-supplied data and theWorkflowTemplate
-imposed data)