Atlassian · Schema

WorkflowSchemeIdName

The ID and the name of the workflow scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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