{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkflowStatus",
"title": "WorkflowStatus",
"additionalProperties": false,
"description": "Details of a workflow status.",
"properties": {
"id": {
"description": "The ID of the issue status.",
"type": "string"
},
"name": {
"description": "The name of the status in the workflow.",
"type": "string"
},
"properties": {
"additionalProperties": {
"description": "Additional properties that modify the behavior of issues in this status. Supports the properties jira.issue.editable and issueEditable (deprecated) that indicate whether issues are editable."
},
"description": "Additional properties that modify the behavior of issues in this status. Supports the properties `jira.issue.editable` and `issueEditable` (deprecated) that indicate whether issues are editable.",
"type": "object"
}
},
"required": [
"id",
"name"
],
"type": "object"
}