create-issue-type
Create custom issue types in Plane projects to categorize and organize project management workflows effectively.
Instructions
Create a new custom issue type in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Description of the issue type (optional) | |
| name | Yes | Name of the issue type | |
| project_id | Yes | ID of the project to create issue type in |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the issue type (optional)",
"type": "string"
},
"name": {
"description": "Name of the issue type",
"type": "string"
},
"project_id": {
"description": "ID of the project to create issue type in",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}