Atlassian · Schema
WorkflowTransitionRules
A workflow with transition rules.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| conditions | array | The list of conditions within the workflow. |
| postFunctions | array | The list of post functions within the workflow. |
| validators | array | The list of validators within the workflow. |
| workflowId | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkflowTransitionRules",
"title": "WorkflowTransitionRules",
"additionalProperties": false,
"description": "A workflow with transition rules.",
"properties": {
"conditions": {
"description": "The list of conditions within the workflow.",
"items": {
"$ref": "#/components/schemas/AppWorkflowTransitionRule"
},
"type": "array"
},
"postFunctions": {
"description": "The list of post functions within the workflow.",
"items": {
"$ref": "#/components/schemas/AppWorkflowTransitionRule"
},
"type": "array"
},
"validators": {
"description": "The list of validators within the workflow.",
"items": {
"$ref": "#/components/schemas/AppWorkflowTransitionRule"
},
"type": "array"
},
"workflowId": {
"$ref": "#/components/schemas/WorkflowId"
}
},
"required": [
"workflowId"
],
"type": "object"
}