delete-issue-property
Remove a specific property from an issue type in a Plane project by providing the project, issue type, and property identifiers.
Instructions
Delete an issue property
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project | |
| property_id | Yes | ID of the property to delete | |
| type_id | Yes | ID of the issue type |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "ID of the project",
"type": "string"
},
"property_id": {
"description": "ID of the property to delete",
"type": "string"
},
"type_id": {
"description": "ID of the issue type",
"type": "string"
}
},
"required": [
"project_id",
"type_id",
"property_id"
],
"type": "object"
}