Atlassian · Schema

WorkflowsWithTransitionRulesDetails

Details of workflows and their transition rules to delete.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
workflows array The list of workflows with transition rules to delete.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowswithtransitionrulesdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowsWithTransitionRulesDetails",
  "title": "WorkflowsWithTransitionRulesDetails",
  "additionalProperties": false,
  "description": "Details of workflows and their transition rules to delete.",
  "properties": {
    "workflows": {
      "description": "The list of workflows with transition rules to delete.",
      "items": {
        "$ref": "#/components/schemas/WorkflowTransitionRulesDetails"
      },
      "type": "array"
    }
  },
  "required": [
    "workflows"
  ],
  "type": "object"
}