create-sub-issue
Create a new sub-issue under a parent issue in Plane projects to organize related tasks and maintain clear hierarchical relationships within your project management workflow.
Instructions
Create a new sub-issue under a parent issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignees | No | Array of user IDs to assign to this sub-issue (optional) | |
| description_html | No | HTML description of the sub-issue | |
| name | Yes | Title of the sub-issue | |
| parent_issue_id | Yes | ID of the parent issue | |
| priority | No | Priority of the sub-issue (urgent, high, medium, low, none) | |
| project_id | Yes | ID of the project | |
| state_id | No | ID of the state for this sub-issue (optional) |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"description": "Array of user IDs to assign to this sub-issue (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"description_html": {
"description": "HTML description of the sub-issue",
"type": "string"
},
"name": {
"description": "Title of the sub-issue",
"type": "string"
},
"parent_issue_id": {
"description": "ID of the parent issue",
"type": "string"
},
"priority": {
"description": "Priority of the sub-issue (urgent, high, medium, low, none)",
"enum": [
"urgent",
"high",
"medium",
"low",
"none"
],
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
},
"state_id": {
"description": "ID of the state for this sub-issue (optional)",
"type": "string"
}
},
"required": [
"project_id",
"parent_issue_id",
"name"
],
"type": "object"
}