Atlassian · Schema
WorkflowStatusUpdate
Details of the status being updated.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the status. |
| id | string | The ID of the status. |
| name | string | The name of the status. |
| statusCategory | string | The category of the status. |
| statusReference | string | The reference of the status. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkflowStatusUpdate",
"title": "WorkflowStatusUpdate",
"additionalProperties": true,
"description": "Details of the status being updated.",
"maximum": 1000,
"properties": {
"description": {
"description": "The description of the status.",
"type": "string"
},
"id": {
"description": "The ID of the status.",
"type": "string"
},
"name": {
"description": "The name of the status.",
"type": "string"
},
"statusCategory": {
"description": "The category of the status.",
"enum": [
"TODO",
"IN_PROGRESS",
"DONE"
],
"type": "string"
},
"statusReference": {
"description": "The reference of the status.",
"type": "string"
}
},
"required": [
"name",
"statusCategory",
"statusReference"
],
"type": "object"
}