get-issue-property
Retrieve specific property details for issues in Plane projects by providing project, issue type, and property identifiers to access structured issue information.
Instructions
Get details of a specific issue property
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project | |
| property_id | Yes | ID of the property to retrieve | |
| 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 retrieve",
"type": "string"
},
"type_id": {
"description": "ID of the issue type",
"type": "string"
}
},
"required": [
"project_id",
"type_id",
"property_id"
],
"type": "object"
}