Atlassian · Schema

WorkflowRules

A collection of transition rules.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
conditionsTree object
postFunctions array The workflow post functions.
validators array The workflow validators.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowrules-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowRules",
  "title": "WorkflowRules",
  "additionalProperties": false,
  "description": "A collection of transition rules.",
  "properties": {
    "conditionsTree": {
      "$ref": "#/components/schemas/WorkflowCondition"
    },
    "postFunctions": {
      "description": "The workflow post functions.",
      "items": {
        "$ref": "#/components/schemas/WorkflowTransitionRule"
      },
      "type": "array"
    },
    "validators": {
      "description": "The workflow validators.",
      "items": {
        "$ref": "#/components/schemas/WorkflowTransitionRule"
      },
      "type": "array"
    }
  },
  "type": "object"
}