linear_add_attachment
Attach files or links to Linear issues by providing the issue ID, URL, and title to organize project resources.
Instructions
Add an attachment to an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
icon | No | Icon URL for attachment | |
issueId | Yes | Issue ID to add attachment to | |
subtitle | No | Subtitle for attachment | |
title | Yes | Title of attachment | |
url | Yes | URL of attachment |
Input Schema (JSON Schema)
{
"properties": {
"icon": {
"description": "Icon URL for attachment",
"type": "string"
},
"issueId": {
"description": "Issue ID to add attachment to",
"type": "string"
},
"subtitle": {
"description": "Subtitle for attachment",
"type": "string"
},
"title": {
"description": "Title of attachment",
"type": "string"
},
"url": {
"description": "URL of attachment",
"type": "string"
}
},
"required": [
"issueId",
"url",
"title"
],
"type": "object"
}