searchIssues
Search for Backlog issues by project ID, keywords, and status to find specific tickets and track progress in project management workflows.
Instructions
Backlogの課題を検索します
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | No | 検索キーワード | |
projectId | Yes | プロジェクトID(数値) | |
status | No | ステータス(未対応、処理中、処理済み、完了) |
Input Schema (JSON Schema)
{
"properties": {
"keyword": {
"description": "検索キーワード",
"type": "string"
},
"projectId": {
"description": "プロジェクトID(数値)",
"type": "number"
},
"status": {
"description": "ステータス(未対応、処理中、処理済み、完了)",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"projectId"
],
"type": "object"
}