-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.json
42 lines (42 loc) · 1.3 KB
/
swagger.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
42
{
"openapi": "3.0.0",
"info": {
"version": "1.0.0",
"title": "Simple Express API",
"description": "A simple Express API"
},
"servers": [
{
"url": "http://localhost:3000"
}
],
"paths": {
"/": {
"get": {
"summary": "Get a user",
"responses": {
"200": {
"description": "A user object",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "User ID"
},
"name": {
"type": "",
"description": "User name"
}
}
}
}
}
}
}
}
}
}
}