forked from springdoc/springdoc-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp11.json
136 lines (136 loc) · 3.42 KB
/
app11.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"openapi": "3.0.1",
"info": {
"title": "OpenAPI definition",
"version": "v0"
},
"servers": [
{
"url": "http://localhost",
"description": "Generated server url"
}
],
"paths": {
"/foo/trim-kotlin-indent": {
"get": {
"tags": [
"example-controller"
],
"summary": "foo api",
"description": "\nthis api is foo\n\n#### Custom exception case\n| Http Status | Error Code | Error Message | Error Data | Remark |\n|-------------|-------------|--------------|------------|-----------|\n| 403 | NO_PERMISSION |This request is only available to administrators. | | |\n| 400 | STORE_NOT_FOUND |Store not found. | | |\n",
"operationId": "readFoo",
"parameters": [
{
"name": "name",
"in": "query",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/FooResponse"
}
}
}
}
}
}
},
"/foo/trim-kotlin-indent/schema": {
"get": {
"tags": [
"example-controller-2"
],
"operationId": "readFoo_1",
"parameters": [
{
"name": "request",
"in": "query",
"required": true,
"schema": {
"$ref": "#/components/schemas/foo request"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/foo response"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"FooResponse": {
"required": [
"name"
],
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
},
"foo request": {
"required": [
"age"
],
"type": "object",
"properties": {
"age": {
"type": "integer",
"description": "\nfoo request field with kotlin indent\n",
"format": "int32"
}
},
"description": "\nfoo request class description\nwith kotlin indent\n"
},
"foo response": {
"required": [
"name",
"subFoo"
],
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "\nfoo response fields with kotlin indent\n"
},
"subFoo": {
"$ref": "#/components/schemas/sub foo response"
}
},
"description": "\nfoo response class description\nwith kotlin indent\n"
},
"sub foo response": {
"required": [
"subName"
],
"type": "object",
"properties": {
"subName": {
"type": "string",
"description": "\nsub foo response fields with kotlin indent\n"
}
},
"description": "\nsub foo response class description\nwith kotlin indent\n"
}
}
}
}