Atlassian · Schema

WorkflowTrigger

The trigger configuration associated with a workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-workflowtrigger-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowTrigger",
  "title": "WorkflowTrigger",
  "additionalProperties": false,
  "description": "The trigger configuration associated with a workflow.",
  "properties": {
    "id": {
      "description": "The ID of the trigger.",
      "type": "string"
    },
    "parameters": {
      "additionalProperties": {
        "description": "The parameters of the trigger.",
        "type": "string"
      },
      "description": "The parameters of the trigger.",
      "type": "object"
    },
    "ruleKey": {
      "description": "The rule key of the trigger.",
      "type": "string"
    }
  },
  "required": [
    "parameters",
    "ruleKey"
  ],
  "type": "object"
}