Linear

by tacticlaunch
Verified

linear_convertIssueToSubtask

Convert an issue to a subtask

Input Schema

NameRequiredDescriptionDefault
issueIdYesID or identifier of the issue to convert (e.g., ABC-123)
parentIssueIdYesID or identifier of the parent issue (e.g., ABC-456)

Input Schema (JSON Schema)

{ "properties": { "issueId": { "description": "ID or identifier of the issue to convert (e.g., ABC-123)", "type": "string" }, "parentIssueId": { "description": "ID or identifier of the parent issue (e.g., ABC-456)", "type": "string" } }, "required": [ "issueId", "parentIssueId" ], "type": "object" }