Statuses
Lists all available issue statuses in Jira, including custom and default statuses used in workflows.
Select
本製品 はJira API を使用して、Id またはName カラムを参照するフィルタを処理します。Name カラムの検索では、大文字と小文字が区別されます。
本製品 はその他のフィルタをクライアント側で内部で実行します。例えば、次のクエリはサーバー側で処理されます。
SELECT * FROM Statuses WHERE Id = '10003' SELECT * FROM Statuses WHERE Name = 'Closed'
Columns
| Name | Type | References | SupportedOperators | Platform | Description |
| Id [KEY] | Integer | = | Common | The unique identifier for the issue status. Used internally to reference the status in workflows and issue transitions. | |
| Name | String | = | Common | The display name of the status, such as 'To Do', 'In Progress', or 'Done'. Shown in issue views and workflows. | |
| Description | String | Common | A description of the status that provides more detail about its intended use or purpose in the workflow. | ||
| CategoryId | Integer | Common | The ID of the status category that this status belongs to. Categories group similar statuses, such as all 'done' states. | ||
| CategoryKey | String | Common | The key value representing the category of the status. Common values include 'new', 'indeterminate', or 'done'. |