linear_removeProjectFromInitiative
Disassociate a project from an initiative in the Linear project management system by specifying the initiative ID and project ID.
Instructions
Remove a project from an initiative
Input Schema
Name | Required | Description | Default |
---|---|---|---|
initiativeId | Yes | The ID of the initiative | |
projectId | Yes | The ID of the project to remove |
Input Schema (JSON Schema)
{
"properties": {
"initiativeId": {
"description": "The ID of the initiative",
"type": "string"
},
"projectId": {
"description": "The ID of the project to remove",
"type": "string"
}
},
"required": [
"initiativeId",
"projectId"
],
"type": "object"
}