update-issue-property
Modify an existing issue property in Plane project management by updating its name, display name, description, or requirement settings using project and issue type identifiers.
Instructions
Update an existing issue property
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Description of the property | |
| display_name | No | Display name for the property | |
| is_multi | No | Whether multiple values are allowed | |
| is_required | No | Whether this property is required | |
| name | No | Internal name for the property | |
| project_id | Yes | ID of the project | |
| property_id | Yes | ID of the property to update | |
| type_id | Yes | ID of the issue type |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the property",
"type": "string"
},
"display_name": {
"description": "Display name for the property",
"type": "string"
},
"is_multi": {
"description": "Whether multiple values are allowed",
"type": "boolean"
},
"is_required": {
"description": "Whether this property is required",
"type": "boolean"
},
"name": {
"description": "Internal name for the property",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
},
"property_id": {
"description": "ID of the property to update",
"type": "string"
},
"type_id": {
"description": "ID of the issue type",
"type": "string"
}
},
"required": [
"project_id",
"type_id",
"property_id"
],
"type": "object"
}