File size: 1,820 Bytes
31c9f7d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | {
"name": "list_comments",
"description": "List comments on a Linear issue, project, initiative, document, or project milestone. Provide exactly one of `issueId`, `projectId`, `initiativeId`, `documentId`, or `milestoneId`. For issues, projects, and initiatives this returns both top-level discussion threads and inline description comments. Inline (anchored) comments carry a non-null `quotedText` set to the snippet of description text they reference.",
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"limit": {
"default": 50,
"description": "Max results (default 50, max 250)",
"type": "number",
"maximum": 250
},
"cursor": {
"description": "Next page cursor",
"type": "string"
},
"orderBy": {
"default": "updatedAt",
"description": "Sort: createdAt | updatedAt",
"type": "string",
"enum": [
"createdAt",
"updatedAt"
]
},
"issueId": {
"description": "Issue ID or identifier (e.g., LIN-123) (provide exactly one parent)",
"type": "string"
},
"projectId": {
"description": "Project name, ID, or slug (provide exactly one parent)",
"type": "string"
},
"initiativeId": {
"description": "Initiative name or ID (provide exactly one parent)",
"type": "string"
},
"documentId": {
"description": "Document ID or slug (provide exactly one parent)",
"type": "string"
},
"milestoneId": {
"description": "Milestone UUID (provide exactly one parent). Resolve milestone names via `list_milestones` first.",
"type": "string"
}
},
"additionalProperties": false
}
} |