diff --git a/mailpoet/lib/Automation/Engine/Validation/WorkflowSchema.php b/mailpoet/lib/Automation/Engine/Validation/WorkflowSchema.php index 09d8ca6c32..bbd31fb11c 100644 --- a/mailpoet/lib/Automation/Engine/Validation/WorkflowSchema.php +++ b/mailpoet/lib/Automation/Engine/Validation/WorkflowSchema.php @@ -18,7 +18,7 @@ class WorkflowSchema { public static function getStepsSchema(): ObjectSchema { return Builder::object() - ->properties(['root' => self::getRootStepSchema()]) + ->properties(['root' => self::getRootStepSchema()->required()]) ->additionalProperties(self::getStepSchema()); }