create-issue-property-option
Add a new dropdown option to an issue property in Plane projects, enabling customization of status, priority, or type fields with specific values and ordering.
Instructions
Create a new option for a dropdown/select issue property
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Description of the option | |
| is_default | No | Whether this is the default option | |
| name | Yes | Name of the option | |
| project_id | Yes | ID of the project | |
| property_id | Yes | ID of the property to add option to | |
| sort_order | No | Sort order for the option |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the option",
"type": "string"
},
"is_default": {
"description": "Whether this is the default option",
"type": "boolean"
},
"name": {
"description": "Name of the option",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
},
"property_id": {
"description": "ID of the property to add option to",
"type": "string"
},
"sort_order": {
"description": "Sort order for the option",
"type": "number"
}
},
"required": [
"project_id",
"property_id",
"name"
],
"type": "object"
}