-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathcreate_gist.snap
More file actions
39 lines (39 loc) · 825 Bytes
/
create_gist.snap
File metadata and controls
39 lines (39 loc) · 825 Bytes
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
{
"_meta": {
"requiredOAuthScopes": [
"gist"
],
"toolset": "gists"
},
"annotations": {
"title": "Create Gist"
},
"description": "Create a new gist",
"inputSchema": {
"type": "object",
"required": [
"filename",
"content"
],
"properties": {
"content": {
"type": "string",
"description": "Content for simple single-file gist creation"
},
"description": {
"type": "string",
"description": "Description of the gist"
},
"filename": {
"type": "string",
"description": "Filename for simple single-file gist creation"
},
"public": {
"type": "boolean",
"description": "Whether the gist is public",
"default": false
}
}
},
"name": "create_gist"
}