Atlassian · Schema

WorkflowId

Properties that identify a workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
draft boolean Whether the workflow is in the draft state.
name string The name of the workflow.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowId",
  "title": "WorkflowId",
  "additionalProperties": false,
  "description": "Properties that identify a workflow.",
  "properties": {
    "draft": {
      "description": "Whether the workflow is in the draft state.",
      "type": "boolean"
    },
    "name": {
      "description": "The name of the workflow.",
      "type": "string"
    }
  },
  "required": [
    "draft",
    "name"
  ],
  "type": "object"
}