list-issue-properties
Retrieve custom properties for a specific issue type in a Plane project to understand available fields and metadata for issue management.
Instructions
List all custom properties for a specific issue type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project | |
| type_id | Yes | ID of the issue type to get properties for |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "ID of the project",
"type": "string"
},
"type_id": {
"description": "ID of the issue type to get properties for",
"type": "string"
}
},
"required": [
"project_id",
"type_id"
],
"type": "object"
}