create-issue-property
Add custom properties to issue types in Plane projects to track specific data fields like text, numbers, dates, or options, enhancing issue categorization and workflow management.
Instructions
Create a new custom property for an issue type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Description of the property | |
| display_name | Yes | Display name for the property | |
| is_multi | No | Whether multiple values are allowed (for OPTION type) | |
| is_required | No | Whether this property is required | |
| name | Yes | Internal name for the property | |
| project_id | Yes | ID of the project | |
| property_type | Yes | Type of property (TEXT, NUMBER, DATE, OPTION, etc.) | |
| 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 (for OPTION type)",
"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_type": {
"description": "Type of property (TEXT, NUMBER, DATE, OPTION, etc.)",
"enum": [
"TEXT",
"NUMBER",
"DATE",
"OPTION",
"MULTI_OPTION",
"BOOLEAN"
],
"type": "string"
},
"type_id": {
"description": "ID of the issue type",
"type": "string"
}
},
"required": [
"project_id",
"type_id",
"name",
"display_name",
"property_type"
],
"type": "object"
}