Atlassian · Schema
StatusDetails
A status.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the status. |
| iconUrl | string | The URL of the icon used to represent the status. |
| id | string | The ID of the status. |
| name | string | The name of the status. |
| scope | object | The scope of the field. |
| self | string | The URL of the status. |
| statusCategory | object | The category assigned to the status. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StatusDetails",
"title": "StatusDetails",
"additionalProperties": true,
"description": "A status.",
"properties": {
"description": {
"description": "The description of the status.",
"readOnly": true,
"type": "string"
},
"iconUrl": {
"description": "The URL of the icon used to represent the status.",
"readOnly": true,
"type": "string"
},
"id": {
"description": "The ID of the status.",
"readOnly": true,
"type": "string"
},
"name": {
"description": "The name of the status.",
"readOnly": true,
"type": "string"
},
"scope": {
"allOf": [
{
"$ref": "#/components/schemas/Scope"
}
],
"description": "The scope of the field.",
"readOnly": true
},
"self": {
"description": "The URL of the status.",
"readOnly": true,
"type": "string"
},
"statusCategory": {
"allOf": [
{
"$ref": "#/components/schemas/StatusCategory"
}
],
"description": "The category assigned to the status.",
"readOnly": true
}
},
"type": "object"
}