@itentialopensource/adapter-nokia_nsp_network 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.
Files changed (100) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +18 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +0 -0
  9. package/AUTH.md +39 -0
  10. package/BROKER.md +199 -0
  11. package/CALLS.md +170 -0
  12. package/CHANGELOG.md +9 -0
  13. package/CODE_OF_CONDUCT.md +43 -0
  14. package/CONTRIBUTING.md +172 -0
  15. package/ENHANCE.md +69 -0
  16. package/LICENSE +201 -0
  17. package/PROPERTIES.md +641 -0
  18. package/README.md +337 -0
  19. package/SUMMARY.md +9 -0
  20. package/SYSTEMINFO.md +11 -0
  21. package/TROUBLESHOOT.md +47 -0
  22. package/adapter.js +3443 -0
  23. package/adapterBase.js +1787 -0
  24. package/entities/.generic/action.json +214 -0
  25. package/entities/.generic/schema.json +28 -0
  26. package/entities/.system/action.json +50 -0
  27. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  28. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  29. package/entities/.system/schema.json +19 -0
  30. package/entities/.system/schemaTokenReq.json +53 -0
  31. package/entities/.system/schemaTokenResp.json +53 -0
  32. package/entities/CardSlots/action.json +46 -0
  33. package/entities/CardSlots/mockdatafiles/getCardSlotsUsingGET-default.json +256 -0
  34. package/entities/CardSlots/schema.json +20 -0
  35. package/entities/Cards/action.json +46 -0
  36. package/entities/Cards/mockdatafiles/getCardsUsingGET-default.json +103 -0
  37. package/entities/Cards/schema.json +20 -0
  38. package/entities/Lags/action.json +46 -0
  39. package/entities/Lags/mockdatafiles/getLAGsUsingGET-default.json +1054 -0
  40. package/entities/Lags/schema.json +20 -0
  41. package/entities/NetworkElements/action.json +298 -0
  42. package/entities/NetworkElements/mockdatafiles/getCardPortsUsingGET-default.json +235 -0
  43. package/entities/NetworkElements/mockdatafiles/getLagMembersUsingGET-default.json +60 -0
  44. package/entities/NetworkElements/mockdatafiles/getNELAGsUsingGET-default.json +1226 -0
  45. package/entities/NetworkElements/mockdatafiles/getNERadioEquipmentsUsingGET-default.json +338 -0
  46. package/entities/NetworkElements/mockdatafiles/getNEShelvesUsingGET-default.json +86 -0
  47. package/entities/NetworkElements/mockdatafiles/getNEsUsingGET-default.json +166 -0
  48. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentCardPortsUsingGET-default.json +410 -0
  49. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentLagMembersUsingGET-default.json +19 -0
  50. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentLagsUsingGET-default.json +312 -0
  51. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentShelfCardsUsingGET-default.json +106 -0
  52. package/entities/NetworkElements/mockdatafiles/getRadioEquipmentShelvesUsingGET-default.json +66 -0
  53. package/entities/NetworkElements/mockdatafiles/getShelfCardsUsingGET-default.json +218 -0
  54. package/entities/NetworkElements/mockdatafiles/getShelfPortsUsingGET-default.json +342 -0
  55. package/entities/NetworkElements/schema.json +32 -0
  56. package/entities/PhysicalLinks/action.json +86 -0
  57. package/entities/PhysicalLinks/mockdatafiles/getPhysicalLinksUsingGET-default.json +283 -0
  58. package/entities/PhysicalLinks/schema.json +22 -0
  59. package/entities/Ports/action.json +46 -0
  60. package/entities/Ports/mockdatafiles/getPortsUsingGET-default.json +440 -0
  61. package/entities/Ports/schema.json +20 -0
  62. package/entities/RadioEquipment/action.json +46 -0
  63. package/entities/RadioEquipment/mockdatafiles/getRadioEquipmentsUsingGET-default.json +86 -0
  64. package/entities/RadioEquipment/schema.json +20 -0
  65. package/entities/Shelves/action.json +46 -0
  66. package/entities/Shelves/mockdatafiles/getShelvesUsingGET-default.json +90 -0
  67. package/entities/Shelves/schema.json +20 -0
  68. package/error.json +190 -0
  69. package/package.json +86 -0
  70. package/pronghorn.json +8731 -0
  71. package/propertiesDecorators.json +14 -0
  72. package/propertiesSchema.json +1248 -0
  73. package/refs?service=git-upload-pack +0 -0
  74. package/report/creationReport.json +365 -0
  75. package/report/networkSupervision-22.9-v1.json-Swagger20.json +5789 -0
  76. package/sampleProperties.json +195 -0
  77. package/test/integration/adapterTestBasicGet.js +83 -0
  78. package/test/integration/adapterTestConnectivity.js +93 -0
  79. package/test/integration/adapterTestIntegration.js +1143 -0
  80. package/test/unit/adapterBaseTestUnit.js +949 -0
  81. package/test/unit/adapterTestUnit.js +2283 -0
  82. package/utils/adapterInfo.js +206 -0
  83. package/utils/addAuth.js +94 -0
  84. package/utils/artifactize.js +146 -0
  85. package/utils/basicGet.js +50 -0
  86. package/utils/checkMigrate.js +63 -0
  87. package/utils/entitiesToDB.js +178 -0
  88. package/utils/findPath.js +74 -0
  89. package/utils/methodDocumentor.js +225 -0
  90. package/utils/modify.js +154 -0
  91. package/utils/packModificationScript.js +35 -0
  92. package/utils/patches2bundledDeps.js +90 -0
  93. package/utils/pre-commit.sh +32 -0
  94. package/utils/removeHooks.js +20 -0
  95. package/utils/setup.js +33 -0
  96. package/utils/tbScript.js +246 -0
  97. package/utils/tbUtils.js +490 -0
  98. package/utils/testRunner.js +298 -0
  99. package/utils/troubleshootingAdapter.js +195 -0
  100. package/workflows/README.md +3 -0
@@ -0,0 +1,440 @@
1
+ [
2
+ {
3
+ "links": [
4
+ {
5
+ "href": "string",
6
+ "rel": "string",
7
+ "templated": false
8
+ },
9
+ {
10
+ "href": "string",
11
+ "rel": "string",
12
+ "templated": true
13
+ }
14
+ ],
15
+ "fdn": "string",
16
+ "sourceType": null,
17
+ "sourceSystem": "string",
18
+ "sources": [
19
+ "string",
20
+ "string",
21
+ "string",
22
+ "string"
23
+ ],
24
+ "name": "string",
25
+ "neName": "string",
26
+ "neId": "string",
27
+ "description": "string",
28
+ "positionId": 10,
29
+ "position": "string",
30
+ "adminState": null,
31
+ "operState": null,
32
+ "standbyState": null,
33
+ "availabilityStates": [
34
+ "offDuty",
35
+ "dependency",
36
+ "logFull",
37
+ "failed",
38
+ "inTest",
39
+ "notInstalled",
40
+ "powerOff",
41
+ "logFull"
42
+ ],
43
+ "stateReasons": [
44
+ "string",
45
+ "string",
46
+ "string",
47
+ "string",
48
+ "string",
49
+ "string",
50
+ "string",
51
+ "string"
52
+ ],
53
+ "objectDetails": {},
54
+ "manufacturer": "string",
55
+ "serialNumber": "string",
56
+ "partNumber": "string",
57
+ "manufacturerAssemblyNumber": "string",
58
+ "manufactureDate": "string",
59
+ "manufacturingDeviations": "string",
60
+ "macAddress": "string",
61
+ "hwMacAddress": "string",
62
+ "portDetails": {
63
+ "fdn": "fdn:model:equipment:PortDetails:2209",
64
+ "sourceType": null,
65
+ "sourceSystem": "fdn:realm:sam",
66
+ "sources": [
67
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card:port-1@portDetails"
68
+ ],
69
+ "objectDetails": {},
70
+ "portIndex": 67141632,
71
+ "portType": null,
72
+ "rate": "ethernet100",
73
+ "actualRateUnits": null,
74
+ "actualRate": 100000,
75
+ "portMode": null,
76
+ "encapType": null,
77
+ "mtuValue": 1578
78
+ },
79
+ "lagDetails": {
80
+ "encapType": "string",
81
+ "fdn": "string",
82
+ "lagId": "string",
83
+ "objectDetails": {},
84
+ "portFdn": "string",
85
+ "portName": "string",
86
+ "priority": 5,
87
+ "sourceSystem": "string",
88
+ "sourceType": "string",
89
+ "sources": [
90
+ "string",
91
+ "string",
92
+ "string"
93
+ ],
94
+ "standbyState": "string"
95
+ }
96
+ },
97
+ {
98
+ "links": [
99
+ {
100
+ "href": "string",
101
+ "rel": "string",
102
+ "templated": false
103
+ },
104
+ {
105
+ "href": "string",
106
+ "rel": "string",
107
+ "templated": true
108
+ },
109
+ {
110
+ "href": "string",
111
+ "rel": "string",
112
+ "templated": true
113
+ }
114
+ ],
115
+ "fdn": "string",
116
+ "sourceType": null,
117
+ "sourceSystem": "string",
118
+ "sources": [
119
+ "string",
120
+ "string"
121
+ ],
122
+ "name": "string",
123
+ "neName": "string",
124
+ "neId": "string",
125
+ "description": "string",
126
+ "positionId": 4,
127
+ "position": "string",
128
+ "adminState": null,
129
+ "operState": null,
130
+ "standbyState": null,
131
+ "availabilityStates": [
132
+ "logFull",
133
+ "degraded",
134
+ "powerOff",
135
+ "notInstalled",
136
+ "inTest",
137
+ "offLine",
138
+ "offDuty"
139
+ ],
140
+ "stateReasons": [
141
+ "string",
142
+ "string",
143
+ "string",
144
+ "string"
145
+ ],
146
+ "objectDetails": {},
147
+ "manufacturer": "string",
148
+ "serialNumber": "string",
149
+ "partNumber": "string",
150
+ "manufacturerAssemblyNumber": "string",
151
+ "manufactureDate": "string",
152
+ "manufacturingDeviations": "string",
153
+ "macAddress": "string",
154
+ "hwMacAddress": "string",
155
+ "portDetails": {
156
+ "fdn": "fdn:model:equipment:PortDetails:2209",
157
+ "sourceType": null,
158
+ "sourceSystem": "fdn:realm:sam",
159
+ "sources": [
160
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card:port-1@portDetails"
161
+ ],
162
+ "objectDetails": {},
163
+ "portIndex": 67141632,
164
+ "portType": null,
165
+ "rate": "ethernet100",
166
+ "actualRateUnits": null,
167
+ "actualRate": 100000,
168
+ "portMode": null,
169
+ "encapType": null,
170
+ "mtuValue": 1578
171
+ },
172
+ "lagDetails": {
173
+ "encapType": "string",
174
+ "fdn": "string",
175
+ "lagId": "string",
176
+ "objectDetails": {},
177
+ "portFdn": "string",
178
+ "portName": "string",
179
+ "priority": 4,
180
+ "sourceSystem": "string",
181
+ "sourceType": "string",
182
+ "sources": [
183
+ "string",
184
+ "string",
185
+ "string",
186
+ "string",
187
+ "string",
188
+ "string",
189
+ "string",
190
+ "string",
191
+ "string"
192
+ ],
193
+ "standbyState": "string"
194
+ }
195
+ },
196
+ {
197
+ "links": [
198
+ {
199
+ "href": "string",
200
+ "rel": "string",
201
+ "templated": true
202
+ },
203
+ {
204
+ "href": "string",
205
+ "rel": "string",
206
+ "templated": true
207
+ },
208
+ {
209
+ "href": "string",
210
+ "rel": "string",
211
+ "templated": false
212
+ },
213
+ {
214
+ "href": "string",
215
+ "rel": "string",
216
+ "templated": true
217
+ },
218
+ {
219
+ "href": "string",
220
+ "rel": "string",
221
+ "templated": false
222
+ },
223
+ {
224
+ "href": "string",
225
+ "rel": "string",
226
+ "templated": false
227
+ },
228
+ {
229
+ "href": "string",
230
+ "rel": "string",
231
+ "templated": true
232
+ },
233
+ {
234
+ "href": "string",
235
+ "rel": "string",
236
+ "templated": true
237
+ }
238
+ ],
239
+ "fdn": "string",
240
+ "sourceType": null,
241
+ "sourceSystem": "string",
242
+ "sources": [
243
+ "string",
244
+ "string",
245
+ "string",
246
+ "string"
247
+ ],
248
+ "name": "string",
249
+ "neName": "string",
250
+ "neId": "string",
251
+ "description": "string",
252
+ "positionId": 5,
253
+ "position": "string",
254
+ "adminState": null,
255
+ "operState": null,
256
+ "standbyState": null,
257
+ "availabilityStates": [
258
+ "failed",
259
+ "inTest",
260
+ "powerOff",
261
+ "dependency",
262
+ "failed",
263
+ "inTest",
264
+ "offLine",
265
+ "dependency"
266
+ ],
267
+ "stateReasons": [
268
+ "string",
269
+ "string",
270
+ "string",
271
+ "string",
272
+ "string",
273
+ "string",
274
+ "string",
275
+ "string",
276
+ "string",
277
+ "string"
278
+ ],
279
+ "objectDetails": {},
280
+ "manufacturer": "string",
281
+ "serialNumber": "string",
282
+ "partNumber": "string",
283
+ "manufacturerAssemblyNumber": "string",
284
+ "manufactureDate": "string",
285
+ "manufacturingDeviations": "string",
286
+ "macAddress": "string",
287
+ "hwMacAddress": "string",
288
+ "portDetails": {
289
+ "fdn": "fdn:model:equipment:PortDetails:2209",
290
+ "sourceType": null,
291
+ "sourceSystem": "fdn:realm:sam",
292
+ "sources": [
293
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card:port-1@portDetails"
294
+ ],
295
+ "objectDetails": {},
296
+ "portIndex": 67141632,
297
+ "portType": null,
298
+ "rate": "ethernet100",
299
+ "actualRateUnits": null,
300
+ "actualRate": 100000,
301
+ "portMode": null,
302
+ "encapType": null,
303
+ "mtuValue": 1578
304
+ },
305
+ "lagDetails": {
306
+ "encapType": "string",
307
+ "fdn": "string",
308
+ "lagId": "string",
309
+ "objectDetails": {},
310
+ "portFdn": "string",
311
+ "portName": "string",
312
+ "priority": 5,
313
+ "sourceSystem": "string",
314
+ "sourceType": "string",
315
+ "sources": [
316
+ "string",
317
+ "string",
318
+ "string"
319
+ ],
320
+ "standbyState": "string"
321
+ }
322
+ },
323
+ {
324
+ "links": [
325
+ {
326
+ "href": "string",
327
+ "rel": "string",
328
+ "templated": false
329
+ },
330
+ {
331
+ "href": "string",
332
+ "rel": "string",
333
+ "templated": false
334
+ },
335
+ {
336
+ "href": "string",
337
+ "rel": "string",
338
+ "templated": false
339
+ },
340
+ {
341
+ "href": "string",
342
+ "rel": "string",
343
+ "templated": false
344
+ },
345
+ {
346
+ "href": "string",
347
+ "rel": "string",
348
+ "templated": false
349
+ }
350
+ ],
351
+ "fdn": "string",
352
+ "sourceType": null,
353
+ "sourceSystem": "string",
354
+ "sources": [
355
+ "string",
356
+ "string",
357
+ "string",
358
+ "string",
359
+ "string"
360
+ ],
361
+ "name": "string",
362
+ "neName": "string",
363
+ "neId": "string",
364
+ "description": "string",
365
+ "positionId": 1,
366
+ "position": "string",
367
+ "adminState": null,
368
+ "operState": null,
369
+ "standbyState": null,
370
+ "availabilityStates": [
371
+ "degraded",
372
+ "inTest",
373
+ "offLine",
374
+ "unknown",
375
+ "powerOff",
376
+ "unknown",
377
+ "failed",
378
+ "unknown",
379
+ "dependency"
380
+ ],
381
+ "stateReasons": [
382
+ "string",
383
+ "string",
384
+ "string",
385
+ "string",
386
+ "string",
387
+ "string",
388
+ "string",
389
+ "string",
390
+ "string",
391
+ "string"
392
+ ],
393
+ "objectDetails": {},
394
+ "manufacturer": "string",
395
+ "serialNumber": "string",
396
+ "partNumber": "string",
397
+ "manufacturerAssemblyNumber": "string",
398
+ "manufactureDate": "string",
399
+ "manufacturingDeviations": "string",
400
+ "macAddress": "string",
401
+ "hwMacAddress": "string",
402
+ "portDetails": {
403
+ "fdn": "fdn:model:equipment:PortDetails:2209",
404
+ "sourceType": null,
405
+ "sourceSystem": "fdn:realm:sam",
406
+ "sources": [
407
+ "fdn:realm:sam:network:38.120.169.111:shelf-1:cardSlot-2:card:port-1@portDetails"
408
+ ],
409
+ "objectDetails": {},
410
+ "portIndex": 67141632,
411
+ "portType": null,
412
+ "rate": "ethernet100",
413
+ "actualRateUnits": null,
414
+ "actualRate": 100000,
415
+ "portMode": null,
416
+ "encapType": null,
417
+ "mtuValue": 1578
418
+ },
419
+ "lagDetails": {
420
+ "encapType": "string",
421
+ "fdn": "string",
422
+ "lagId": "string",
423
+ "objectDetails": {},
424
+ "portFdn": "string",
425
+ "portName": "string",
426
+ "priority": 2,
427
+ "sourceSystem": "string",
428
+ "sourceType": "string",
429
+ "sources": [
430
+ "string",
431
+ "string",
432
+ "string",
433
+ "string",
434
+ "string",
435
+ "string"
436
+ ],
437
+ "standbyState": "string"
438
+ }
439
+ }
440
+ ]
@@ -0,0 +1,20 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getPortsUsingGET",
12
+ "enum": [
13
+ "getPortsUsingGET",
14
+ "getPortUsingGET"
15
+ ],
16
+ "external_name": "ph_request_type"
17
+ }
18
+ },
19
+ "definitions": {}
20
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getRadioEquipmentsUsingGET",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/v1/radioEquipment?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": "mockdatafiles/getRadioEquipmentsUsingGET-default.json"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "getRadioEquipmentUsingGET",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/v1/radioEquipment/{pathv1}?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "sendGetBody": false,
34
+ "requestDatatype": "JSON",
35
+ "responseDatatype": "JSON",
36
+ "headers": {},
37
+ "responseObjects": [
38
+ {
39
+ "type": "default",
40
+ "key": "",
41
+ "mockFile": ""
42
+ }
43
+ ]
44
+ }
45
+ ]
46
+ }
@@ -0,0 +1,86 @@
1
+ [
2
+ {
3
+ "adminState": "string",
4
+ "availabilityStates": [
5
+ "string",
6
+ "string",
7
+ "string",
8
+ "string",
9
+ "string",
10
+ "string",
11
+ "string",
12
+ "string",
13
+ "string"
14
+ ],
15
+ "chassisType": "string",
16
+ "clliCode": "string",
17
+ "communicationState": "string",
18
+ "description": "string",
19
+ "fdn": "string",
20
+ "ipAddress": "string",
21
+ "latitude": 6,
22
+ "links": [
23
+ {
24
+ "href": "string",
25
+ "rel": "string",
26
+ "templated": true
27
+ },
28
+ {
29
+ "href": "string",
30
+ "rel": "string",
31
+ "templated": false
32
+ },
33
+ {
34
+ "href": "string",
35
+ "rel": "string",
36
+ "templated": true
37
+ },
38
+ {
39
+ "href": "string",
40
+ "rel": "string",
41
+ "templated": false
42
+ },
43
+ {
44
+ "href": "string",
45
+ "rel": "string",
46
+ "templated": false
47
+ },
48
+ {
49
+ "href": "string",
50
+ "rel": "string",
51
+ "templated": true
52
+ },
53
+ {
54
+ "href": "string",
55
+ "rel": "string",
56
+ "templated": false
57
+ }
58
+ ],
59
+ "location": "string",
60
+ "longitude": 9,
61
+ "macAddress": "string",
62
+ "managedState": "string",
63
+ "name": "string",
64
+ "neId": "string",
65
+ "neName": "string",
66
+ "objectDetails": {},
67
+ "operState": "string",
68
+ "parentNeName": "string",
69
+ "product": "string",
70
+ "resyncState": "string",
71
+ "sourceSystem": "string",
72
+ "sourceType": "string",
73
+ "sources": [
74
+ "string",
75
+ "string",
76
+ "string",
77
+ "string",
78
+ "string",
79
+ "string",
80
+ "string"
81
+ ],
82
+ "standbyState": "string",
83
+ "systemAddress": "string",
84
+ "version": "string"
85
+ }
86
+ ]
@@ -0,0 +1,20 @@
1
+ {
2
+ "$id": "schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getRadioEquipmentsUsingGET",
12
+ "enum": [
13
+ "getRadioEquipmentsUsingGET",
14
+ "getRadioEquipmentUsingGET"
15
+ ],
16
+ "external_name": "ph_request_type"
17
+ }
18
+ },
19
+ "definitions": {}
20
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getShelvesUsingGET",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/v1/shelves?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": "mockdatafiles/getShelvesUsingGET-default.json"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "getShelfUsingGET",
26
+ "protocol": "REST",
27
+ "method": "GET",
28
+ "entitypath": "{base_path}/{version}/v1/shelves/{pathv1}?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "sendGetBody": false,
34
+ "requestDatatype": "JSON",
35
+ "responseDatatype": "JSON",
36
+ "headers": {},
37
+ "responseObjects": [
38
+ {
39
+ "type": "default",
40
+ "key": "",
41
+ "mockFile": ""
42
+ }
43
+ ]
44
+ }
45
+ ]
46
+ }