Atlassian · Schema

WorkflowIDs

The classic workflow identifiers.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
entityId string The entity ID of the workflow.
name string The name of the workflow.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowids-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowIDs",
  "title": "WorkflowIDs",
  "additionalProperties": false,
  "description": "The classic workflow identifiers.",
  "properties": {
    "entityId": {
      "description": "The entity ID of the workflow.",
      "type": "string"
    },
    "name": {
      "description": "The name of the workflow.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}