File size: 1,993 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
  "name": "list_projects",
  "description": "List projects in the user's Linear workspace",
  "inputSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "properties": {
      "limit": {
        "default": 50,
        "description": "Max results (default 50, max 50)",
        "type": "number",
        "maximum": 50
      },
      "cursor": {
        "description": "Next page cursor",
        "type": "string"
      },
      "orderBy": {
        "default": "updatedAt",
        "description": "Sort: createdAt | updatedAt",
        "type": "string",
        "enum": [
          "createdAt",
          "updatedAt"
        ]
      },
      "query": {
        "description": "Search project name",
        "type": "string"
      },
      "state": {
        "description": "State type, name, or ID",
        "type": "string"
      },
      "initiative": {
        "description": "Initiative name or ID",
        "type": "string"
      },
      "team": {
        "description": "Team name or ID",
        "type": "string"
      },
      "member": {
        "description": "User ID, name, email, or \"me\"",
        "type": "string"
      },
      "label": {
        "description": "Label name or ID",
        "type": "string"
      },
      "createdAt": {
        "description": "Created after: ISO-8601 date/duration (e.g., -P1D)",
        "type": "string"
      },
      "updatedAt": {
        "description": "Updated after: ISO-8601 date/duration (e.g., -P1D)",
        "type": "string"
      },
      "includeMilestones": {
        "default": false,
        "description": "Include milestones",
        "type": "boolean"
      },
      "includeMembers": {
        "default": false,
        "description": "Include project members",
        "type": "boolean"
      },
      "includeArchived": {
        "default": false,
        "description": "Include archived items",
        "type": "boolean"
      }
    },
    "additionalProperties": false
  }
}