Atlassian · Schema

AvailableWorkflowForgeRule

The Forge provided ecosystem rules available.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The rule description.
id string The unique ARI of the forge rule type.
name string The rule name.
ruleKey string The rule key.
ruleType string The rule type.
View JSON Schema on GitHub

JSON Schema

atlassian-availableworkflowforgerule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AvailableWorkflowForgeRule",
  "title": "AvailableWorkflowForgeRule",
  "additionalProperties": false,
  "description": "The Forge provided ecosystem rules available.",
  "properties": {
    "description": {
      "description": "The rule description.",
      "type": "string"
    },
    "id": {
      "description": "The unique ARI of the forge rule type.",
      "type": "string"
    },
    "name": {
      "description": "The rule name.",
      "type": "string"
    },
    "ruleKey": {
      "description": "The rule key.",
      "type": "string"
    },
    "ruleType": {
      "description": "The rule type.",
      "enum": [
        "Condition",
        "Validator",
        "Function",
        "Screen"
      ],
      "type": "string"
    }
  },
  "type": "object"
}