linear_createInitiative
Create a new initiative in Linear by defining its name, description, target date, status, and owner. Use markdown for content and customize with emoji icons and color codes for organization.
Instructions
Create a new initiative
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Color of the initiative in hex format | |
content | No | Content in markdown format | |
description | No | Description of the initiative | |
icon | No | Icon emoji for the initiative | |
name | Yes | Name of the initiative | |
ownerId | No | ID of the user who owns the initiative | |
status | No | Status of the initiative | |
targetDate | No | Target completion date (ISO 8601 format) |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Color of the initiative in hex format",
"type": "string"
},
"content": {
"description": "Content in markdown format",
"type": "string"
},
"description": {
"description": "Description of the initiative",
"type": "string"
},
"icon": {
"description": "Icon emoji for the initiative",
"type": "string"
},
"name": {
"description": "Name of the initiative",
"type": "string"
},
"ownerId": {
"description": "ID of the user who owns the initiative",
"type": "string"
},
"status": {
"description": "Status of the initiative",
"enum": [
"notStarted",
"inProgress",
"completed",
"paused"
],
"type": "string"
},
"targetDate": {
"description": "Target completion date (ISO 8601 format)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}