Atlassian · Schema

WorkflowOperations

Operations allowed on a workflow

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
canDelete boolean Whether the workflow can be deleted.
canEdit boolean Whether the workflow can be updated.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowoperations-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowOperations",
  "title": "WorkflowOperations",
  "additionalProperties": false,
  "description": "Operations allowed on a workflow",
  "properties": {
    "canDelete": {
      "description": "Whether the workflow can be deleted.",
      "type": "boolean"
    },
    "canEdit": {
      "description": "Whether the workflow can be updated.",
      "type": "boolean"
    }
  },
  "required": [
    "canDelete",
    "canEdit"
  ],
  "type": "object"
}