File size: 585 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
{
  "name": "list_cycles",
  "description": "Retrieve cycles for a specific Linear team",
  "inputSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "properties": {
      "teamId": {
        "type": "string",
        "description": "Team ID"
      },
      "type": {
        "description": "Filter: current, previous, next, or all",
        "type": "string",
        "enum": [
          "current",
          "previous",
          "next"
        ]
      }
    },
    "required": [
      "teamId"
    ],
    "additionalProperties": false
  }
}