linear_updateInitiative
Modify existing initiatives in Linear by updating fields like name, description, content, status, owner, target date, icon, and color using initiative ID.
Instructions
Update an existing initiative
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | Updated color in hex format | |
| content | No | Updated content in markdown format | |
| description | No | Updated description of the initiative | |
| icon | No | Updated icon emoji | |
| initiativeId | Yes | The ID of the initiative to update | |
| name | No | Updated name of the initiative | |
| ownerId | No | Updated owner ID | |
| status | No | Updated status of the initiative | |
| targetDate | No | Updated target completion date (ISO 8601 format) |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Updated color in hex format",
"type": "string"
},
"content": {
"description": "Updated content in markdown format",
"type": "string"
},
"description": {
"description": "Updated description of the initiative",
"type": "string"
},
"icon": {
"description": "Updated icon emoji",
"type": "string"
},
"initiativeId": {
"description": "The ID of the initiative to update",
"type": "string"
},
"name": {
"description": "Updated name of the initiative",
"type": "string"
},
"ownerId": {
"description": "Updated owner ID",
"type": "string"
},
"status": {
"description": "Updated status of the initiative",
"enum": [
"notStarted",
"inProgress",
"completed",
"paused"
],
"type": "string"
},
"targetDate": {
"description": "Updated target completion date (ISO 8601 format)",
"type": "string"
}
},
"required": [
"initiativeId"
],
"type": "object"
}