-
Notifications
You must be signed in to change notification settings - Fork 45
/
reserved-words.json
234 lines (234 loc) · 6.26 KB
/
reserved-words.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "ReservedWordsClient",
"description": "Swagger that has operation groups etc. with reserved words"
},
"host": "localhost:3000",
"schemes": ["http"],
"produces": ["application/json"],
"paths": {
"/reservedWords/operationGroup/import": {
"put": {
"operationId": "import_operationOne",
"description": "Operation in operation group import, a reserved word",
"parameters": [
{
"name": "parameter1",
"in": "query",
"description": "Pass in 'foo' to pass this test.",
"type": "string",
"required": true
}
],
"responses": {
"200": {
"description": "Answer from service",
"schema": {
"type": "object"
}
}
}
}
},
"/reservedWords/operation/content": {
"put": {
"operationId": "operationWithContentParam",
"description": "Operation with body param called content. Pass in b'hello, world'",
"consumes": ["application/octet-stream"],
"parameters": [
{
"name": "content",
"in": "body",
"description": "Pass in b'hello, world'",
"required": true,
"schema": {
"format": "binary",
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Answer from service",
"schema": {
"type": "object"
}
}
}
}
},
"/reservedWords/operation/json": {
"put": {
"operationId": "operationWithJsonParam",
"description": "Operation with body param called 'json'. Pass in {'hello': 'world'}",
"parameters": [
{
"name": "json",
"in": "body",
"description": "Pass in {'hello': 'world'}",
"required": true,
"schema": {
"$ref": "#/definitions/Anything"
}
}
],
"responses": {
"200": {
"description": "Answer from service",
"schema": {
"type": "object"
}
}
}
}
},
"/reservedWords/operation/data": {
"put": {
"operationId": "operationWithDataParam",
"description": "Operation with urlencoded body param called 'data'.",
"consumes": ["application/x-www-form-urlencoded"],
"parameters": [
{
"$ref": "#/parameters/Data"
},
{
"$ref": "#/parameters/World"
}
],
"responses": {
"200": {
"description": "Answer from service",
"schema": {
"type": "object"
}
}
}
}
},
"/reservedWords/operation/files": {
"put": {
"operationId": "operationWithFilesParam",
"description": "Operation with multipart body param called 'files'.",
"consumes": ["multipart/form-data"],
"parameters": [
{
"name": "files",
"description": "Files to upload. Pass in list of input streams",
"required": true,
"type": "file",
"in": "formData"
},
{
"name": "fileName",
"description": "File name to upload. Pass in 'my.txt'.",
"required": true,
"in": "formData",
"type": "string"
}
],
"responses": {
"200": {
"description": "Answer from service",
"schema": {
"type": "object"
}
}
}
}
},
"/reservedWords/{url}": {
"get": {
"operationId": "operationWithUrl",
"description": "Operation with path format argument URL, header param headerParameters, and query param queryParameters",
"parameters": [
{ "$ref": "#/parameters/Url" },
{
"name": "headerParameters",
"description": "Header arg that uses same name as headerParameters in generated code. Pass in 'x-ms-header' to pass. ",
"required": true,
"in": "header",
"type": "string"
},
{
"name": "queryParameters",
"description": "Query args that uses same name as queryParameters in generated code. Pass in ['one', 'two'] to pass test",
"in": "query",
"type": "array",
"items": {
"type": "string"
},
"required": false,
"collectionFormat": "multi"
}
],
"responses": {
"200": {
"description": "Answer from service",
"schema": {
"type": "object"
}
}
}
}
},
"/reservedWords/enum": {
"get": {
"operationId": "reservedEnum",
"description": "Operation that accepts a reserved enum value",
"parameters": [
{
"name": "enumParameter",
"description": "Pass in MyEnum.IMPORT to pass",
"required": true,
"in": "header",
"type": "string",
"enum": ["import", "other"],
"x-ms-enum": {
"name": "MyEnum",
"modelAsString": true
}
}
],
"responses": {
"200": {
"description": "Answer from service",
"schema": {
"type": "object"
}
}
}
}
}
},
"parameters": {
"Data": {
"name": "data",
"in": "formData",
"required": true,
"description": "Pass in 'hello'.",
"type": "string",
"x-ms-parameter-location": "method"
},
"World": {
"name": "world",
"in": "formData",
"required": true,
"description": "Pass in 'world'.",
"type": "string",
"x-ms-parameter-location": "method"
},
"Url": {
"name": "url",
"in": "path",
"required": true,
"description": "Pass in 'foo'.",
"type": "string",
"x-ms-parameter-location": "method"
}
},
"definitions": {
"Anything": {}
}
}