File size: 552 Bytes
31c9f7d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "name": "get_diff",
  "description": "Exact lookup for a Linear diff. Use with review URLs, GitHub PR URLs, Linear full identifiers, UUIDs, or slugs.",
  "inputSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "properties": {
      "urlOrId": {
        "type": "string",
        "minLength": 1,
        "description": "Linear review URL, diff slug, pull request ID, Linear full identifier, or GitHub PR URL"
      }
    },
    "required": [
      "urlOrId"
    ],
    "additionalProperties": false
  }
}