list-issue-property-options
Retrieve available dropdown options for issue properties in Plane projects to populate form fields and maintain data consistency.
Instructions
List all options for a dropdown/select issue property
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project | |
| property_id | Yes | ID of the property to get options for |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "ID of the project",
"type": "string"
},
"property_id": {
"description": "ID of the property to get options for",
"type": "string"
}
},
"required": [
"project_id",
"property_id"
],
"type": "object"
}