linear_getInitiativeProjects
Retrieve all projects linked to a specific initiative in Linear, including archived projects if specified, using the initiative ID for precise filtering.
Instructions
Get all projects associated with an initiative
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeArchived | No | Include archived projects in the results | |
initiativeId | Yes | The ID of the initiative |
Input Schema (JSON Schema)
{
"properties": {
"includeArchived": {
"default": false,
"description": "Include archived projects in the results",
"type": "boolean"
},
"initiativeId": {
"description": "The ID of the initiative",
"type": "string"
}
},
"required": [
"initiativeId"
],
"type": "object"
}