Atlassian · Schema

CreateWorkflowStatusDetails

The details of a transition status.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the status.
properties object The properties of the status.
View JSON Schema on GitHub

JSON Schema

atlassian-createworkflowstatusdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateWorkflowStatusDetails",
  "title": "CreateWorkflowStatusDetails",
  "additionalProperties": false,
  "description": "The details of a transition status.",
  "properties": {
    "id": {
      "description": "The ID of the status.",
      "type": "string"
    },
    "properties": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "The properties of the status.",
      "type": "object"
    }
  },
  "required": [
    "id"
  ],
  "type": "object",
  "writeOnly": true
}