Atlassian · Schema

PublishedWorkflowId

Properties that identify a published workflow.

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-publishedworkflowid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublishedWorkflowId",
  "title": "PublishedWorkflowId",
  "additionalProperties": false,
  "description": "Properties that identify a published workflow.",
  "properties": {
    "entityId": {
      "description": "The entity ID of the workflow.",
      "type": "string"
    },
    "name": {
      "description": "The name of the workflow.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}