linear_getInitiativeById
Retrieve detailed information about a specific Linear initiative using its unique ID, optionally including associated projects for comprehensive insights.
Instructions
Get details of a specific initiative by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeProjects | No | Include associated projects in the response | |
initiativeId | Yes | The ID of the initiative to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"includeProjects": {
"default": true,
"description": "Include associated projects in the response",
"type": "boolean"
},
"initiativeId": {
"description": "The ID of the initiative to retrieve",
"type": "string"
}
},
"required": [
"initiativeId"
],
"type": "object"
}