linear_updateProject
Modify project details in Linear by updating its name, description, content, or state using the project ID. Ensure accurate project management with real-time adjustments.
Instructions
Update an existing project in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | New content of the project (Markdown supported) | |
description | No | New short summary of the project | |
id | Yes | ID of the project to update | |
name | No | New name of the project | |
state | No | New state of the project (e.g., 'planned', 'started', 'paused', 'completed', 'canceled') |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "New content of the project (Markdown supported)",
"type": "string"
},
"description": {
"description": "New short summary of the project",
"type": "string"
},
"id": {
"description": "ID of the project to update",
"type": "string"
},
"name": {
"description": "New name of the project",
"type": "string"
},
"state": {
"description": "New state of the project (e.g., 'planned', 'started', 'paused', 'completed', 'canceled')",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}