39 lines
925 B
Plaintext
39 lines
925 B
Plaintext
{
|
|
"annotations": {
|
|
"destructiveHint": true,
|
|
"idempotentHint": false,
|
|
"openWorldHint": true,
|
|
"readOnlyHint": false,
|
|
"title": "Remove Sub-Issue"
|
|
},
|
|
"description": "Remove a sub-issue from a parent issue.",
|
|
"inputSchema": {
|
|
"properties": {
|
|
"issue_number": {
|
|
"description": "The parent issue number",
|
|
"minimum": 1,
|
|
"type": "number"
|
|
},
|
|
"owner": {
|
|
"description": "Repository owner (username or organization)",
|
|
"type": "string"
|
|
},
|
|
"repo": {
|
|
"description": "Repository name",
|
|
"type": "string"
|
|
},
|
|
"sub_issue_id": {
|
|
"description": "The ID of the sub-issue to remove. ID is not the same as issue number",
|
|
"type": "number"
|
|
}
|
|
},
|
|
"required": [
|
|
"owner",
|
|
"repo",
|
|
"issue_number",
|
|
"sub_issue_id"
|
|
],
|
|
"type": "object"
|
|
},
|
|
"name": "remove_sub_issue"
|
|
} |