@itentialopensource/adapter-oracle_assure1 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +5 -0
- package/.eslintrc.js +18 -0
- package/.jshintrc +3 -0
- package/AUTH.md +39 -0
- package/BROKER.md +211 -0
- package/CALLS.md +249 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +13 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +646 -0
- package/README.md +343 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +17 -0
- package/TAB1.md +10 -0
- package/TAB2.md +311 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +1410 -0
- package/adapterBase.js +1452 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +3 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +53 -0
- package/entities/.system/schemaTokenResp.json +53 -0
- package/entities/Devices/action.json +127 -0
- package/entities/Devices/schema.json +24 -0
- package/entities/PerformanceData/action.json +25 -0
- package/entities/PerformanceData/schema.json +96 -0
- package/error.json +190 -0
- package/metadata.json +74 -0
- package/package.json +81 -0
- package/pronghorn.json +1442 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1574 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/assure1-api-5.3.3-openapi.json +507 -0
- package/report/auto-adapter-openapi.json +405 -0
- package/report/creationReport.json +260 -0
- package/sampleProperties.json +257 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +118 -0
- package/test/integration/adapterTestIntegration.js +662 -0
- package/test/unit/adapterBaseTestUnit.js +1024 -0
- package/test/unit/adapterTestUnit.js +1707 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +152 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +239 -0
- package/utils/tbUtils.js +489 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +193 -0
|
Binary file
|
|
@@ -0,0 +1,507 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "Assure1 API",
|
|
5
|
+
"description": "# Introduction\nThis API is documented in **OpenAPI format** and is based on the\n[OpenAPI Specification](https://swagger.io/specification/). The OpenAPI syntax we use has a few\n[vendor extensions](https://github.com/Redocly/redoc/blob/master/docs/redoc-vendor-extensions.md).\n\n# Authentication\nAssure1 offers two forms of authentication:\n - HTTP auth\n - (e.g. username `operator` or `api`)\n - TLS client certificate auth\n - (e.g. `User-api.crt` and `User-api-key`)\n \n# Authorization\nAssure1 _Users_ are assigned to _User Groups_ with associated _Roles_. These _Roles_ are assigned _Permissions_ which\nallow access to specific APIs and their methods. It is recommended to use the default `api` user. If further\nrestrictions are desired, additional users, groups, and roles should be created.",
|
|
6
|
+
"version": "5.3.3",
|
|
7
|
+
"x-logo": {
|
|
8
|
+
"url": "../../../resources/assure1/images/Assure1byFederosLogo.svg"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"paths": {
|
|
12
|
+
"/api/device/Devices/{id}": {
|
|
13
|
+
"get": {
|
|
14
|
+
"tags": [
|
|
15
|
+
"Devices"
|
|
16
|
+
],
|
|
17
|
+
"summary": "View one Device",
|
|
18
|
+
"operationId": "device::Devices::Read_byID",
|
|
19
|
+
"parameters": [
|
|
20
|
+
{
|
|
21
|
+
"name": "id",
|
|
22
|
+
"in": "path",
|
|
23
|
+
"description": "Device ID",
|
|
24
|
+
"required": true,
|
|
25
|
+
"schema": {
|
|
26
|
+
"type": "integer",
|
|
27
|
+
"format": "int32"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"responses": {
|
|
32
|
+
"200": {
|
|
33
|
+
"description": "Successful operation",
|
|
34
|
+
"content": {
|
|
35
|
+
"application/json": {
|
|
36
|
+
"schema": {
|
|
37
|
+
"properties": {
|
|
38
|
+
"success": {
|
|
39
|
+
"description": "Success or failure response",
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"example": "true"
|
|
42
|
+
},
|
|
43
|
+
"message": {
|
|
44
|
+
"description": "Textual message",
|
|
45
|
+
"type": "string",
|
|
46
|
+
"example": "Loaded 1 entries"
|
|
47
|
+
},
|
|
48
|
+
"data": {
|
|
49
|
+
"type": "array",
|
|
50
|
+
"items": {
|
|
51
|
+
"$ref": "#/components/schemas/deviceDevicesRead"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"type": "object"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"default": {
|
|
61
|
+
"$ref": "#/components/responses/FailedOperation"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"put": {
|
|
66
|
+
"tags": [
|
|
67
|
+
"Devices"
|
|
68
|
+
],
|
|
69
|
+
"summary": "Update a Device",
|
|
70
|
+
"operationId": "Devices::update",
|
|
71
|
+
"parameters": [
|
|
72
|
+
{
|
|
73
|
+
"name": "id",
|
|
74
|
+
"in": "path",
|
|
75
|
+
"description": "Device ID",
|
|
76
|
+
"required": true,
|
|
77
|
+
"schema": {
|
|
78
|
+
"type": "integer",
|
|
79
|
+
"format": "int32"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"requestBody": {
|
|
84
|
+
"content": {
|
|
85
|
+
"application/json": {
|
|
86
|
+
"schema": {
|
|
87
|
+
"$ref": "#/components/schemas/Devices"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"responses": {
|
|
93
|
+
"200": {
|
|
94
|
+
"$ref": "#/components/responses/SuccessfulAddOperation"
|
|
95
|
+
},
|
|
96
|
+
"default": {
|
|
97
|
+
"$ref": "#/components/responses/FailedOperation"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"delete": {
|
|
102
|
+
"tags": [
|
|
103
|
+
"Devices"
|
|
104
|
+
],
|
|
105
|
+
"summary": "Delete a Device",
|
|
106
|
+
"operationId": "Devices::delete",
|
|
107
|
+
"parameters": [
|
|
108
|
+
{
|
|
109
|
+
"name": "id",
|
|
110
|
+
"in": "path",
|
|
111
|
+
"description": "Device ID",
|
|
112
|
+
"required": true,
|
|
113
|
+
"schema": {
|
|
114
|
+
"type": "integer",
|
|
115
|
+
"format": "int32"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"responses": {
|
|
120
|
+
"200": {
|
|
121
|
+
"$ref": "#/components/responses/SuccessfulAddOperation"
|
|
122
|
+
},
|
|
123
|
+
"default": {
|
|
124
|
+
"$ref": "#/components/responses/FailedOperation"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"/api/device/Devices": {
|
|
130
|
+
"get": {
|
|
131
|
+
"tags": [
|
|
132
|
+
"Devices"
|
|
133
|
+
],
|
|
134
|
+
"summary": "View all Devices",
|
|
135
|
+
"operationId": "device::Devices::Read",
|
|
136
|
+
"parameters": [
|
|
137
|
+
{
|
|
138
|
+
"$ref": "#/components/parameters/filter"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"$ref": "#/components/parameters/limit"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"$ref": "#/components/parameters/sort"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"$ref": "#/components/parameters/start"
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"responses": {
|
|
151
|
+
"200": {
|
|
152
|
+
"description": "Successful operation",
|
|
153
|
+
"content": {
|
|
154
|
+
"application/json": {
|
|
155
|
+
"schema": {
|
|
156
|
+
"properties": {
|
|
157
|
+
"success": {
|
|
158
|
+
"description": "Success or failure response",
|
|
159
|
+
"type": "boolean",
|
|
160
|
+
"example": "true"
|
|
161
|
+
},
|
|
162
|
+
"message": {
|
|
163
|
+
"description": "Textual message",
|
|
164
|
+
"type": "string",
|
|
165
|
+
"example": "Loaded 1 entries"
|
|
166
|
+
},
|
|
167
|
+
"total": {
|
|
168
|
+
"description": "The total number of results regardless of paging",
|
|
169
|
+
"type": "integer",
|
|
170
|
+
"example": "1"
|
|
171
|
+
},
|
|
172
|
+
"data": {
|
|
173
|
+
"description": "Record(s)",
|
|
174
|
+
"type": "array",
|
|
175
|
+
"items": {
|
|
176
|
+
"$ref": "#/components/schemas/deviceDevicesRead"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"type": "object"
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"default": {
|
|
186
|
+
"$ref": "#/components/responses/FailedOperation"
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"post": {
|
|
191
|
+
"tags": [
|
|
192
|
+
"Devices"
|
|
193
|
+
],
|
|
194
|
+
"summary": "Add a Device",
|
|
195
|
+
"operationId": "Devices::create",
|
|
196
|
+
"requestBody": {
|
|
197
|
+
"content": {
|
|
198
|
+
"application/json": {
|
|
199
|
+
"schema": {
|
|
200
|
+
"$ref": "#/components/schemas/Devices"
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"responses": {
|
|
206
|
+
"200": {
|
|
207
|
+
"$ref": "#/components/responses/SuccessfulAddOperation"
|
|
208
|
+
},
|
|
209
|
+
"default": {
|
|
210
|
+
"$ref": "#/components/responses/FailedOperation"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"/api/device/Devices/readForSelect": {
|
|
216
|
+
"get": {
|
|
217
|
+
"tags": [
|
|
218
|
+
"Devices"
|
|
219
|
+
],
|
|
220
|
+
"summary": "Show Devices for Comboboxes and ItemSelectors",
|
|
221
|
+
"operationId": "Devices::readForSelect",
|
|
222
|
+
"parameters": [
|
|
223
|
+
{
|
|
224
|
+
"$ref": "#/components/parameters/filter"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"$ref": "#/components/parameters/limit"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"$ref": "#/components/parameters/query"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"$ref": "#/components/parameters/sort"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"$ref": "#/components/parameters/start"
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"responses": {
|
|
240
|
+
"200": {
|
|
241
|
+
"description": "Successful operation",
|
|
242
|
+
"content": {
|
|
243
|
+
"application/json": {
|
|
244
|
+
"schema": {
|
|
245
|
+
"properties": {
|
|
246
|
+
"success": {
|
|
247
|
+
"description": "Success or failure response",
|
|
248
|
+
"type": "boolean",
|
|
249
|
+
"example": "true"
|
|
250
|
+
},
|
|
251
|
+
"message": {
|
|
252
|
+
"description": "Textual message",
|
|
253
|
+
"type": "string",
|
|
254
|
+
"example": "Loaded 1 entries"
|
|
255
|
+
},
|
|
256
|
+
"total": {
|
|
257
|
+
"description": "The total number of results regardless of paging",
|
|
258
|
+
"type": "integer",
|
|
259
|
+
"example": "1"
|
|
260
|
+
},
|
|
261
|
+
"data": {
|
|
262
|
+
"description": "Record(s)",
|
|
263
|
+
"type": "array",
|
|
264
|
+
"items": {
|
|
265
|
+
"$ref": "#/components/schemas/deviceDevicesReadForSelect"
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"type": "object"
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"default": {
|
|
275
|
+
"$ref": "#/components/responses/FailedOperation"
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"/api/metric/PerformanceData": {
|
|
281
|
+
"get": {
|
|
282
|
+
"tags": [
|
|
283
|
+
"PerformanceData"
|
|
284
|
+
],
|
|
285
|
+
"summary": "Get all performance data",
|
|
286
|
+
"description": "Series are identified by passing:\n- DeviceName\n- Measurement or MetricType\n- Instance\n\n(e.g. Recommended: `DeviceName=router.example.com&Measurement=metrictype_Latency&Instance=Device`)\n\n(e.g. SOA apps only: `DeviceName=router.example.com&MetricType=Latency&Instance=Device`)\n\n___DEPRECATED___ - Series are identified by passing:\n- DeviceID\n- MetricID\n\n(e.g. `DeviceID=1&MetricID=1`)\n\nTime ranges are identified by passing:\n- TimeRange (start and end separated by `..`)\n\nExamples:\n\n- Last 2 days `now-2d..now`\n- Last 7 days `now-7d..now`\n- Last 30 days `now-30d..now`\n- Last 90 days `now-90d..now`\n- Last 6 months `now-6M..now`\n- Last 1 year `now-1y..now`\n- Last 2 years `now-2y..now`\n- Last 5 years `now-5y..now`\n- Yesterday `now-1d..now-1d`\n- Last week `now-1w..now-1w`\n- Last month `now-1M..now-1M`\n\n#### Limitations:\n- Performance Data only available for **Metrics**. Metrics must be created on your devices.\n- Device Metrics must have data in the last 5 years.\n- Series are restricted to the last 5 years.\n- Aggregates are limited to 10 series.",
|
|
287
|
+
"operationId": "performanceData::getAll",
|
|
288
|
+
"parameters": [
|
|
289
|
+
{
|
|
290
|
+
"name": "DeviceName",
|
|
291
|
+
"in": "query",
|
|
292
|
+
"description": "The Device Name",
|
|
293
|
+
"required": true,
|
|
294
|
+
"schema": {
|
|
295
|
+
"type": "string"
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "MetricType",
|
|
300
|
+
"in": "query",
|
|
301
|
+
"description": "Metric Type",
|
|
302
|
+
"required": true,
|
|
303
|
+
"schema": {
|
|
304
|
+
"type": "string"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "Instance",
|
|
309
|
+
"in": "query",
|
|
310
|
+
"description": "The Instance",
|
|
311
|
+
"required": true,
|
|
312
|
+
"schema": {
|
|
313
|
+
"type": "string"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "TimeRange",
|
|
318
|
+
"in": "query",
|
|
319
|
+
"description": "Time Range",
|
|
320
|
+
"required": true,
|
|
321
|
+
"schema": {
|
|
322
|
+
"type": "string"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"name": "Offset",
|
|
327
|
+
"in": "query",
|
|
328
|
+
"description": "Pagination offset",
|
|
329
|
+
"schema": {
|
|
330
|
+
"type": "integer"
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"name": "Limit",
|
|
335
|
+
"in": "query",
|
|
336
|
+
"description": "Pagination limit",
|
|
337
|
+
"schema": {
|
|
338
|
+
"type": "integer"
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"name": "Sort",
|
|
343
|
+
"in": "query",
|
|
344
|
+
"description": "Sort order",
|
|
345
|
+
"schema": {
|
|
346
|
+
"type": "string"
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"responses": {
|
|
351
|
+
"200": {
|
|
352
|
+
"description": "Successful operation",
|
|
353
|
+
"content": {
|
|
354
|
+
"application/json": {
|
|
355
|
+
"schema": {
|
|
356
|
+
"type": "array",
|
|
357
|
+
"items": {
|
|
358
|
+
"$ref": "#/components/schemas/PerformanceData"
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"default": {
|
|
365
|
+
"$ref": "#/components/responses/FailedOperation"
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"components": {
|
|
372
|
+
"schemas": {
|
|
373
|
+
"Devices": {
|
|
374
|
+
"type": "object",
|
|
375
|
+
"properties": {
|
|
376
|
+
"id": {
|
|
377
|
+
"type": "integer",
|
|
378
|
+
"format": "int32"
|
|
379
|
+
},
|
|
380
|
+
"name": {
|
|
381
|
+
"type": "string"
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"deviceDevicesRead": {
|
|
386
|
+
"type": "object",
|
|
387
|
+
"properties": {
|
|
388
|
+
"id": {
|
|
389
|
+
"type": "integer",
|
|
390
|
+
"format": "int32"
|
|
391
|
+
},
|
|
392
|
+
"name": {
|
|
393
|
+
"type": "string"
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"deviceDevicesReadForSelect": {
|
|
398
|
+
"type": "object",
|
|
399
|
+
"properties": {
|
|
400
|
+
"id": {
|
|
401
|
+
"type": "integer",
|
|
402
|
+
"format": "int32"
|
|
403
|
+
},
|
|
404
|
+
"name": {
|
|
405
|
+
"type": "string"
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"PerformanceData": {
|
|
410
|
+
"type": "object",
|
|
411
|
+
"properties": {
|
|
412
|
+
"timestamp": {
|
|
413
|
+
"type": "string",
|
|
414
|
+
"format": "date-time"
|
|
415
|
+
},
|
|
416
|
+
"value": {
|
|
417
|
+
"type": "number"
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"responses": {
|
|
423
|
+
"SuccessfulAddOperation": {
|
|
424
|
+
"description": "Successful operation",
|
|
425
|
+
"content": {
|
|
426
|
+
"application/json": {
|
|
427
|
+
"schema": {
|
|
428
|
+
"type": "object",
|
|
429
|
+
"properties": {
|
|
430
|
+
"success": {
|
|
431
|
+
"type": "boolean",
|
|
432
|
+
"example": "true"
|
|
433
|
+
},
|
|
434
|
+
"message": {
|
|
435
|
+
"type": "string",
|
|
436
|
+
"example": "Operation successful"
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"FailedOperation": {
|
|
444
|
+
"description": "Failed operation",
|
|
445
|
+
"content": {
|
|
446
|
+
"application/json": {
|
|
447
|
+
"schema": {
|
|
448
|
+
"type": "object",
|
|
449
|
+
"properties": {
|
|
450
|
+
"success": {
|
|
451
|
+
"type": "boolean",
|
|
452
|
+
"example": "false"
|
|
453
|
+
},
|
|
454
|
+
"message": {
|
|
455
|
+
"type": "string",
|
|
456
|
+
"example": "Operation failed"
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"parameters": {
|
|
465
|
+
"filter": {
|
|
466
|
+
"name": "filter",
|
|
467
|
+
"in": "query",
|
|
468
|
+
"description": "Filter",
|
|
469
|
+
"schema": {
|
|
470
|
+
"type": "string"
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
"limit": {
|
|
474
|
+
"name": "limit",
|
|
475
|
+
"in": "query",
|
|
476
|
+
"description": "Limit",
|
|
477
|
+
"schema": {
|
|
478
|
+
"type": "integer"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
"sort": {
|
|
482
|
+
"name": "sort",
|
|
483
|
+
"in": "query",
|
|
484
|
+
"description": "Sort order",
|
|
485
|
+
"schema": {
|
|
486
|
+
"type": "string"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
"start": {
|
|
490
|
+
"name": "start",
|
|
491
|
+
"in": "query",
|
|
492
|
+
"description": "Start",
|
|
493
|
+
"schema": {
|
|
494
|
+
"type": "integer"
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"query": {
|
|
498
|
+
"name": "query",
|
|
499
|
+
"in": "query",
|
|
500
|
+
"description": "Query parameter",
|
|
501
|
+
"schema": {
|
|
502
|
+
"type": "string"
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
}
|