Atlassian · Schema

WorkflowSimpleCondition

A workflow transition rule condition. This object returns `nodeType` as `simple`.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
configuration object EXPERIMENTAL. The configuration of the transition rule.
nodeType string
type string The type of the transition rule.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowsimplecondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowSimpleCondition",
  "title": "WorkflowSimpleCondition",
  "description": "A workflow transition rule condition. This object returns `nodeType` as `simple`.",
  "properties": {
    "configuration": {
      "description": "EXPERIMENTAL. The configuration of the transition rule.",
      "type": "object"
    },
    "nodeType": {
      "type": "string"
    },
    "type": {
      "description": "The type of the transition rule.",
      "type": "string"
    }
  },
  "required": [
    "nodeType",
    "type"
  ],
  "type": "object"
}