Atlassian · Schema

WorkflowRuleConfiguration

The configuration of the rule.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the rule.
parameters object The parameters related to the rule.
ruleKey string The rule key of the rule.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowruleconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowRuleConfiguration",
  "title": "WorkflowRuleConfiguration",
  "additionalProperties": false,
  "description": "The configuration of the rule.",
  "nullable": true,
  "properties": {
    "id": {
      "description": "The ID of the rule.",
      "nullable": true,
      "type": "string"
    },
    "parameters": {
      "additionalProperties": {
        "description": "The parameters related to the rule.",
        "type": "string"
      },
      "description": "The parameters related to the rule.",
      "type": "object"
    },
    "ruleKey": {
      "description": "The rule key of the rule.",
      "type": "string"
    }
  },
  "required": [
    "ruleKey"
  ],
  "type": "object"
}