Atlassian · Schema

WorkflowSchemeProjectAssociation

An associated workflow scheme and project.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
projectId string The ID of the project.
workflowSchemeId string The ID of the workflow scheme. If the workflow scheme ID is `null`, the operation assigns the default workflow scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowschemeprojectassociation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowSchemeProjectAssociation",
  "title": "WorkflowSchemeProjectAssociation",
  "additionalProperties": false,
  "description": "An associated workflow scheme and project.",
  "properties": {
    "projectId": {
      "description": "The ID of the project.",
      "type": "string"
    },
    "workflowSchemeId": {
      "description": "The ID of the workflow scheme. If the workflow scheme ID is `null`, the operation assigns the default workflow scheme.",
      "type": "string"
    }
  },
  "required": [
    "projectId"
  ],
  "type": "object"
}