Requires the items in the workflow
dependsOn
property to exist and to be unique.
Arazzo | Compatibility |
---|---|
1.0.0 | ✅ |
To avoid ambiguity or potential clashes, the dependsOn
list values should be unique.
Option | Type | Description |
---|---|---|
severity | string | Possible values: off , warn , error . Default off . |
An example configuration:
rules:
workflow-dependsOn: error
Given the following configuration:
rules:
workflow-dependsOn: error
Example of a correct dependsOn
list:
workflows:
- workflowId: get-museum-hours
description: This workflow demonstrates how to get the museum opening hours and buy tickets.
dependsOn:
- get-museum-hours-2
- get-museum-hours-3