Atlassian · Schema

WorkflowTransitionRulesDetails

Details about a workflow configuration update request.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
workflowId object
workflowRuleIds array The list of connect workflow rule IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowtransitionrulesdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowTransitionRulesDetails",
  "title": "WorkflowTransitionRulesDetails",
  "additionalProperties": false,
  "description": "Details about a workflow configuration update request.",
  "properties": {
    "workflowId": {
      "$ref": "#/components/schemas/WorkflowId"
    },
    "workflowRuleIds": {
      "description": "The list of connect workflow rule IDs.",
      "items": {
        "description": "The list of connect workflow rule IDs.",
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "workflowId",
    "workflowRuleIds"
  ],
  "type": "object"
}