Atlassian · Schema

WorkflowRulesSearchDetails

Details of workflow transition rules.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
invalidRules array List of workflow rule IDs that do not belong to the workflow or can not be found.
validRules array List of valid workflow transition rules.
workflowEntityId string The workflow ID.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowrulessearchdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowRulesSearchDetails",
  "title": "WorkflowRulesSearchDetails",
  "description": "Details of workflow transition rules.",
  "properties": {
    "invalidRules": {
      "description": "List of workflow rule IDs that do not belong to the workflow or can not be found.",
      "items": {
        "description": "Workflow rule ID.",
        "example": "55d44f1d-c859-42e5-9c27-2c5ec3f340b1",
        "format": "uuid",
        "type": "string"
      },
      "type": "array"
    },
    "validRules": {
      "description": "List of valid workflow transition rules.",
      "items": {
        "$ref": "#/components/schemas/WorkflowTransitionRules"
      },
      "type": "array"
    },
    "workflowEntityId": {
      "description": "The workflow ID.",
      "example": "a498d711-685d-428d-8c3e-bc03bb450ea7",
      "format": "uuid",
      "type": "string"
    }
  },
  "type": "object"
}