-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgmail-api.json
41 lines (41 loc) · 1.11 KB
/
gmail-api.json
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
{
"openapi": "3.0.0",
"info": {
"title": "gmail",
"description": "Optional multiline or single-liner description in [CommonMark](http://commonmark.org/help/) or HTML. Adding more",
"version": "0.3.1"
},
"servers": [
{
"url": "https://climbon.com/trails",
"description": "Optional server description, e.g. Main (production) server"
},
{
"url": "https://climbon.com/trails",
"description": "Optional server description, e.g. Internal staging server for testing"
}
],
"paths": {
"/users": {
"get": {
"summary": "Returns a list of users.",
"description": "Optional extended description in CommonMark or HTML.",
"responses": {
"200": {
"description": "A JSON array of user names",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
}
}