@itentialopensource/adapter-tufin_secureapp 0.2.5 → 0.4.0

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 (57) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +1147 -0
  4. package/CHANGELOG.md +3 -50
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +3 -148
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +239 -507
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +742 -623
  14. package/adapterBase.js +854 -408
  15. package/changelogs/CHANGELOG.md +71 -0
  16. package/entities/.generic/action.json +110 -5
  17. package/entities/.generic/schema.json +6 -1
  18. package/error.json +12 -0
  19. package/metadata.json +49 -0
  20. package/package.json +28 -22
  21. package/pronghorn.json +1098 -495
  22. package/propertiesDecorators.json +14 -0
  23. package/propertiesSchema.json +842 -6
  24. package/refs?service=git-upload-pack +0 -0
  25. package/report/adapter-openapi.yaml +12973 -0
  26. package/report/adapterInfo.json +10 -0
  27. package/report/updateReport1653613470041.json +120 -0
  28. package/report/updateReport1691508805766.json +120 -0
  29. package/report/updateReport1692203264930.json +120 -0
  30. package/report/updateReport1694468871425.json +120 -0
  31. package/report/updateReport1698422784828.json +120 -0
  32. package/sampleProperties.json +156 -3
  33. package/test/integration/adapterTestBasicGet.js +4 -6
  34. package/test/integration/adapterTestConnectivity.js +91 -42
  35. package/test/integration/adapterTestIntegration.js +158 -129
  36. package/test/unit/adapterBaseTestUnit.js +393 -310
  37. package/test/unit/adapterTestUnit.js +833 -255
  38. package/utils/adapterInfo.js +206 -0
  39. package/utils/addAuth.js +94 -0
  40. package/utils/artifactize.js +1 -1
  41. package/utils/basicGet.js +1 -14
  42. package/utils/checkMigrate.js +1 -1
  43. package/utils/entitiesToDB.js +179 -0
  44. package/utils/findPath.js +1 -1
  45. package/utils/methodDocumentor.js +273 -0
  46. package/utils/modify.js +14 -16
  47. package/utils/packModificationScript.js +2 -2
  48. package/utils/patches2bundledDeps.js +90 -0
  49. package/utils/pre-commit.sh +5 -0
  50. package/utils/removeHooks.js +20 -0
  51. package/utils/taskMover.js +309 -0
  52. package/utils/tbScript.js +129 -53
  53. package/utils/tbUtils.js +152 -35
  54. package/utils/testRunner.js +17 -17
  55. package/utils/troubleshootingAdapter.js +10 -31
  56. package/workflows/README.md +0 -3
  57. /package/report/{Tufin-SecureApp-R19-2-RC1.OpenApi3Json.json → adapter-openapi.json} +0 -0
package/pronghorn.json CHANGED
@@ -9,7 +9,7 @@
9
9
  ],
10
10
  "methods": [
11
11
  {
12
- "name": "updateAdapterConfiguration",
12
+ "name": "iapUpdateAdapterConfiguration",
13
13
  "summary": "Updates the adapter configuration",
14
14
  "description": "Updates the adapter configuration file with the provided changes",
15
15
  "input": [
@@ -62,6 +62,16 @@
62
62
  "title": "action",
63
63
  "type": "string"
64
64
  }
65
+ },
66
+ {
67
+ "name": "replace",
68
+ "type": "boolean",
69
+ "info": "True to replace entire mock data, false to merge/append",
70
+ "required": false,
71
+ "schema": {
72
+ "title": "replace",
73
+ "type": "boolean"
74
+ }
65
75
  }
66
76
  ],
67
77
  "output": {
@@ -78,12 +88,97 @@
78
88
  ],
79
89
  "route": {
80
90
  "verb": "POST",
81
- "path": "/updateAdapterConfiguration"
91
+ "path": "/iapUpdateAdapterConfiguration"
92
+ },
93
+ "task": true
94
+ },
95
+ {
96
+ "name": "iapSuspendAdapter",
97
+ "summary": "Suspends the adapter",
98
+ "description": "Suspends the adapter",
99
+ "input": [
100
+ {
101
+ "name": "mode",
102
+ "type": "enum",
103
+ "enumerals": [
104
+ "pause",
105
+ "error"
106
+ ],
107
+ "info": "How incoming requests are handled. strings to 'pause'",
108
+ "description": "How incoming requests are handled. strings to 'pause'",
109
+ "schema": {
110
+ "title": "mode",
111
+ "type": "string"
112
+ },
113
+ "required": false
114
+ }
115
+ ],
116
+ "output": {
117
+ "name": "result",
118
+ "type": "object",
119
+ "description": "A JSON Object containing the adapter suspended status",
120
+ "schema": {
121
+ "title": "result",
122
+ "type": "object"
123
+ }
124
+ },
125
+ "roles": [
126
+ "admin"
127
+ ],
128
+ "route": {
129
+ "verb": "POST",
130
+ "path": "/iapSuspendAdapter"
82
131
  },
83
132
  "task": true
84
133
  },
85
134
  {
86
- "name": "findPath",
135
+ "name": "iapUnsuspendAdapter",
136
+ "summary": "Unsuspends the adapter",
137
+ "description": "Unsuspends the adapter",
138
+ "input": [],
139
+ "output": {
140
+ "name": "result",
141
+ "type": "object",
142
+ "description": "A JSON Object containing the adapter suspended status",
143
+ "schema": {
144
+ "title": "result",
145
+ "type": "object"
146
+ }
147
+ },
148
+ "roles": [
149
+ "admin"
150
+ ],
151
+ "route": {
152
+ "verb": "POST",
153
+ "path": "/iapUnsuspendAdapter"
154
+ },
155
+ "task": true
156
+ },
157
+ {
158
+ "name": "iapGetAdapterQueue",
159
+ "summary": "Return the requests that are waiting in the queue if throttling is enabled",
160
+ "description": "Return the requests that are waiting in the queue if throttling is enabled",
161
+ "input": [],
162
+ "output": {
163
+ "name": "result",
164
+ "type": "object",
165
+ "description": "A JSON Object containing the adapter queue",
166
+ "schema": {
167
+ "title": "result",
168
+ "type": "object"
169
+ }
170
+ },
171
+ "roles": [
172
+ "admin"
173
+ ],
174
+ "route": {
175
+ "verb": "POST",
176
+ "path": "/iapGetAdapterQueue"
177
+ },
178
+ "task": true
179
+ },
180
+ {
181
+ "name": "iapFindAdapterPath",
87
182
  "summary": "Provides the ability to see if a particular API path is supported by the adapter",
88
183
  "description": "Provides the ability to see if a particular API path is supported by the adapter",
89
184
  "input": [
@@ -113,12 +208,12 @@
113
208
  ],
114
209
  "route": {
115
210
  "verb": "POST",
116
- "path": "/findPath"
211
+ "path": "/iapFindAdapterPath"
117
212
  },
118
213
  "task": true
119
214
  },
120
215
  {
121
- "name": "troubleshoot",
216
+ "name": "iapTroubleshootAdapter",
122
217
  "summary": "Runs troubleshoot script for adapter",
123
218
  "description": "Runs troubleshoot script for adapter",
124
219
  "input": [
@@ -136,7 +231,11 @@
136
231
  "name": "persistFlag",
137
232
  "type": "boolean",
138
233
  "info": "Whether the input properties should be saved",
139
- "required": true
234
+ "required": true,
235
+ "schema": {
236
+ "title": "persistFlag",
237
+ "type": "boolean"
238
+ }
140
239
  }
141
240
  ],
142
241
  "output": {
@@ -153,31 +252,35 @@
153
252
  ],
154
253
  "route": {
155
254
  "verb": "POST",
156
- "path": "/troubleshoot"
255
+ "path": "/iapTroubleshootAdapter"
157
256
  },
158
257
  "task": true
159
258
  },
160
259
  {
161
- "name": "runHealthcheck",
260
+ "name": "iapRunAdapterHealthcheck",
162
261
  "summary": "Runs healthcheck script for adapter",
163
262
  "description": "Runs healthcheck script for adapter",
164
263
  "input": [],
165
264
  "output": {
166
265
  "name": "result",
167
266
  "type": "boolean",
168
- "description": "Whether healthcheck passed or failed"
267
+ "description": "Whether healthcheck passed or failed",
268
+ "schema": {
269
+ "title": "result",
270
+ "type": "boolean"
271
+ }
169
272
  },
170
273
  "roles": [
171
274
  "admin"
172
275
  ],
173
276
  "route": {
174
277
  "verb": "POST",
175
- "path": "/runHealthcheck"
278
+ "path": "/iapRunAdapterHealthcheck"
176
279
  },
177
280
  "task": true
178
281
  },
179
282
  {
180
- "name": "runConnectivity",
283
+ "name": "iapRunAdapterConnectivity",
181
284
  "summary": "Runs connectivity check script for adapter",
182
285
  "description": "Runs connectivity check script for adapter",
183
286
  "input": [],
@@ -195,12 +298,12 @@
195
298
  ],
196
299
  "route": {
197
300
  "verb": "POST",
198
- "path": "/runConnectivity"
301
+ "path": "/iapRunAdapterConnectivity"
199
302
  },
200
303
  "task": true
201
304
  },
202
305
  {
203
- "name": "runBasicGet",
306
+ "name": "iapRunAdapterBasicGet",
204
307
  "summary": "Runs basicGet script for adapter",
205
308
  "description": "Runs basicGet script for adapter",
206
309
  "input": [],
@@ -218,35 +321,163 @@
218
321
  ],
219
322
  "route": {
220
323
  "verb": "POST",
221
- "path": "/runBasicGet"
324
+ "path": "/iapRunAdapterBasicGet"
222
325
  },
223
326
  "task": true
224
327
  },
225
328
  {
226
- "name": "suspend",
227
- "summary": "Suspends the adapter",
228
- "description": "Suspends the adapter",
329
+ "name": "iapMoveAdapterEntitiesToDB",
330
+ "summary": "Moves entities from an adapter into the IAP database",
331
+ "description": "Moves entities from an adapter into the IAP database",
332
+ "input": [],
333
+ "output": {
334
+ "name": "res",
335
+ "type": "object",
336
+ "description": "A JSON Object containing status, code and the response from the mongo transaction",
337
+ "schema": {
338
+ "title": "res",
339
+ "type": "object"
340
+ }
341
+ },
342
+ "roles": [
343
+ "admin"
344
+ ],
345
+ "route": {
346
+ "verb": "POST",
347
+ "path": "/iapMoveAdapterEntitiesToDB"
348
+ },
349
+ "task": true
350
+ },
351
+ {
352
+ "name": "iapDeactivateTasks",
353
+ "summary": "Deactivate the inputted tasks",
354
+ "description": "Deactivate the inputted tasks",
229
355
  "input": [
230
356
  {
231
- "name": "mode",
232
- "type": "enum",
233
- "enumerals": [
234
- "pause",
235
- "error"
236
- ],
237
- "info": "How incoming requests are handled. Defaults to 'pause'",
238
- "description": "How incoming requests are handled. Defaults to 'pause'",
357
+ "name": "tasks",
358
+ "type": "array",
359
+ "description": "Tasks to deactivate",
239
360
  "schema": {
240
- "title": "mode",
361
+ "title": "tasks",
362
+ "type": "array"
363
+ }
364
+ }
365
+ ],
366
+ "output": {
367
+ "name": "result",
368
+ "type": "object",
369
+ "description": "A JSON Object containing success status",
370
+ "schema": {
371
+ "title": "result",
372
+ "type": "object"
373
+ }
374
+ },
375
+ "roles": [
376
+ "admin"
377
+ ],
378
+ "route": {
379
+ "verb": "POST",
380
+ "path": "/iapDeactivateTasks"
381
+ },
382
+ "task": true
383
+ },
384
+ {
385
+ "name": "iapActivateTasks",
386
+ "summary": "Activate the inputted tasks",
387
+ "description": "activate the inputted tasks",
388
+ "input": [
389
+ {
390
+ "name": "tasks",
391
+ "type": "array",
392
+ "description": "Tasks to activate",
393
+ "schema": {
394
+ "title": "tasks",
395
+ "type": "array"
396
+ }
397
+ }
398
+ ],
399
+ "output": {
400
+ "name": "result",
401
+ "type": "object",
402
+ "description": "A JSON Object containing success status",
403
+ "schema": {
404
+ "title": "result",
405
+ "type": "object"
406
+ }
407
+ },
408
+ "roles": [
409
+ "admin"
410
+ ],
411
+ "route": {
412
+ "verb": "POST",
413
+ "path": "/iapActivateTasks"
414
+ },
415
+ "task": true
416
+ },
417
+ {
418
+ "name": "iapPopulateEntityCache",
419
+ "summary": "Populate the cache for the given entities",
420
+ "description": "Populate the cache for the given entities",
421
+ "input": [
422
+ {
423
+ "name": "entityTypes",
424
+ "type": "array",
425
+ "info": "the entity type(s) to populate",
426
+ "required": true,
427
+ "schema": {
428
+ "title": "entityTypes",
429
+ "type": "array"
430
+ }
431
+ }
432
+ ],
433
+ "output": {
434
+ "name": "result",
435
+ "type": "object",
436
+ "description": "A JSON Object containing status, code and the result",
437
+ "schema": {
438
+ "title": "result",
439
+ "type": "object"
440
+ }
441
+ },
442
+ "roles": [
443
+ "admin"
444
+ ],
445
+ "route": {
446
+ "verb": "POST",
447
+ "path": "/iapPopulateEntityCache"
448
+ },
449
+ "task": true
450
+ },
451
+ {
452
+ "name": "iapRetrieveEntitiesCache",
453
+ "summary": "Retrieves data from cache for specified entity type",
454
+ "description": "Retrieves data from cache for specified entity type",
455
+ "input": [
456
+ {
457
+ "name": "entityType",
458
+ "type": "string",
459
+ "info": "entity of which to retrieve",
460
+ "required": true,
461
+ "schema": {
462
+ "title": "entityType",
241
463
  "type": "string"
242
- },
243
- "required": false
464
+ }
465
+ },
466
+ {
467
+ "name": "options",
468
+ "type": "object",
469
+ "info": "settings of which data to return and how to return it",
470
+ "required": false,
471
+ "schema": {
472
+ "title": "options",
473
+ "type": "object"
474
+ }
244
475
  }
245
476
  ],
246
477
  "output": {
247
478
  "name": "result",
248
479
  "type": "object",
249
- "description": "A JSON Object containing the adapter suspended status",
480
+ "description": "A JSON Object containing status, code and the result",
250
481
  "schema": {
251
482
  "title": "result",
252
483
  "type": "object"
@@ -257,19 +488,165 @@
257
488
  ],
258
489
  "route": {
259
490
  "verb": "POST",
260
- "path": "/suspend"
491
+ "path": "/iapRetrieveEntitiesCache"
261
492
  },
262
493
  "task": true
263
494
  },
264
495
  {
265
- "name": "unsuspend",
266
- "summary": "Unsuspends the adapter",
267
- "description": "Unsuspends the adapter",
496
+ "name": "getDevice",
497
+ "summary": "Get the Appliance",
498
+ "description": "Get the Appliance",
499
+ "input": [
500
+ {
501
+ "name": "deviceName",
502
+ "type": "string",
503
+ "info": "An Appliance Device Name",
504
+ "required": true,
505
+ "schema": {
506
+ "title": "deviceName",
507
+ "type": "string"
508
+ }
509
+ }
510
+ ],
511
+ "output": {
512
+ "name": "result",
513
+ "type": "object",
514
+ "description": "A JSON Object containing status, code and the result",
515
+ "schema": {
516
+ "title": "result",
517
+ "type": "object"
518
+ }
519
+ },
520
+ "roles": [
521
+ "admin"
522
+ ],
523
+ "route": {
524
+ "verb": "POST",
525
+ "path": "/getDevice"
526
+ },
527
+ "task": false
528
+ },
529
+ {
530
+ "name": "getDevicesFiltered",
531
+ "summary": "Get Appliances that match the filter",
532
+ "description": "Get Appliances that match the filter",
533
+ "input": [
534
+ {
535
+ "name": "options",
536
+ "type": "object",
537
+ "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
538
+ "required": true,
539
+ "schema": {
540
+ "title": "options",
541
+ "type": "object"
542
+ }
543
+ }
544
+ ],
545
+ "output": {
546
+ "name": "result",
547
+ "type": "array",
548
+ "description": "A JSON Object containing status, code and the result",
549
+ "schema": {
550
+ "title": "result",
551
+ "type": "array"
552
+ }
553
+ },
554
+ "roles": [
555
+ "admin"
556
+ ],
557
+ "route": {
558
+ "verb": "POST",
559
+ "path": "/getDevicesFiltered"
560
+ },
561
+ "task": false
562
+ },
563
+ {
564
+ "name": "isAlive",
565
+ "summary": "Checks the status for the provided Appliance",
566
+ "description": "Checks the status for the provided Appliance",
567
+ "input": [
568
+ {
569
+ "name": "deviceName",
570
+ "type": "string",
571
+ "info": "An Appliance Device Name",
572
+ "required": true,
573
+ "schema": {
574
+ "title": "deviceName",
575
+ "type": "string"
576
+ }
577
+ }
578
+ ],
579
+ "output": {
580
+ "name": "result",
581
+ "type": "boolean",
582
+ "description": "A JSON Object containing status, code and the result",
583
+ "schema": {
584
+ "title": "result",
585
+ "type": "boolean"
586
+ }
587
+ },
588
+ "roles": [
589
+ "admin"
590
+ ],
591
+ "route": {
592
+ "verb": "POST",
593
+ "path": "/isAlive"
594
+ },
595
+ "task": false
596
+ },
597
+ {
598
+ "name": "getConfig",
599
+ "summary": "Gets a config for the provided Appliance",
600
+ "description": "Gets a config for the provided Appliance",
601
+ "input": [
602
+ {
603
+ "name": "deviceName",
604
+ "type": "string",
605
+ "info": "An Appliance Device Name",
606
+ "required": true,
607
+ "schema": {
608
+ "title": "deviceName",
609
+ "type": "string"
610
+ }
611
+ },
612
+ {
613
+ "name": "format",
614
+ "type": "string",
615
+ "info": "The format to be returned - this is ignored as we always return json",
616
+ "required": false,
617
+ "schema": {
618
+ "title": "format",
619
+ "type": "string"
620
+ }
621
+ }
622
+ ],
623
+ "output": {
624
+ "name": "result",
625
+ "type": "object",
626
+ "description": "A JSON Object containing status, code and the result",
627
+ "schema": {
628
+ "title": "result",
629
+ "type": "object"
630
+ }
631
+ },
632
+ "roles": [
633
+ "admin"
634
+ ],
635
+ "route": {
636
+ "verb": "POST",
637
+ "path": "/getConfig"
638
+ },
639
+ "task": false
640
+ },
641
+ {
642
+ "name": "iapGetDeviceCount",
643
+ "summary": "Gets a device count from the system",
644
+ "description": "Gets a device count from the system",
268
645
  "input": [],
269
646
  "output": {
270
647
  "name": "result",
271
648
  "type": "object",
272
- "description": "A JSON Object containing the adapter suspended status",
649
+ "description": "A JSON Object containing status, code and the result",
273
650
  "schema": {
274
651
  "title": "result",
275
652
  "type": "object"
@@ -280,19 +657,176 @@
280
657
  ],
281
658
  "route": {
282
659
  "verb": "POST",
283
- "path": "/unsuspend"
660
+ "path": "/iapGetDeviceCount"
661
+ },
662
+ "task": false
663
+ },
664
+ {
665
+ "name": "iapExpandedGenericAdapterRequest",
666
+ "summary": "Makes the requested generic call with additional options",
667
+ "description": "Makes the requested generic call with additional options via metadata",
668
+ "input": [
669
+ {
670
+ "name": "metadata",
671
+ "type": "object",
672
+ "info": "metadata for the call (optional)",
673
+ "description": "metadata for the call - allows for many enhancements (optional)",
674
+ "schema": {
675
+ "title": "metadata",
676
+ "type": "object"
677
+ },
678
+ "required": false
679
+ },
680
+ {
681
+ "name": "uriPath",
682
+ "type": "string",
683
+ "info": "the path of the api call - do not include the host, port, base path or version",
684
+ "description": "the path of the api call",
685
+ "schema": {
686
+ "title": "uriPath",
687
+ "type": "string"
688
+ },
689
+ "required": false
690
+ },
691
+ {
692
+ "name": "restMethod",
693
+ "type": "string",
694
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
695
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
696
+ "schema": {
697
+ "title": "restMethod",
698
+ "type": "string"
699
+ },
700
+ "required": false
701
+ },
702
+ {
703
+ "name": "pathVars",
704
+ "type": "object",
705
+ "info": "the parameters to be put within the url path (optional)",
706
+ "description": "the parameters to be put within the url path (optional)",
707
+ "schema": {
708
+ "title": "pathVars",
709
+ "type": "object"
710
+ },
711
+ "required": false
712
+ },
713
+ {
714
+ "name": "queryData",
715
+ "type": "object",
716
+ "info": "the query parameters to be put on the url (optional)",
717
+ "description": "the query parameters to be put on the url (optional)",
718
+ "schema": {
719
+ "title": "queryData",
720
+ "type": "object"
721
+ },
722
+ "required": false
723
+ },
724
+ {
725
+ "name": "requestBody",
726
+ "type": "object",
727
+ "info": "the payload to be sent with the request (optional)",
728
+ "description": "the payload to be sent with the request (optional)",
729
+ "schema": {
730
+ "title": "requestBody",
731
+ "type": "object"
732
+ },
733
+ "required": false
734
+ },
735
+ {
736
+ "name": "addlHeaders",
737
+ "type": "object",
738
+ "info": "additional headers to be put on the call (optional)",
739
+ "description": "additional headers to be put on the call (optional)",
740
+ "schema": {
741
+ "title": "addlHeaders",
742
+ "type": "object"
743
+ },
744
+ "required": false
745
+ }
746
+ ],
747
+ "output": {
748
+ "name": "result",
749
+ "type": "object",
750
+ "description": "A JSON Object containing status, code and the result",
751
+ "schema": {
752
+ "title": "result",
753
+ "type": "object"
754
+ }
755
+ },
756
+ "roles": [
757
+ "admin"
758
+ ],
759
+ "route": {
760
+ "verb": "POST",
761
+ "path": "/iapExpandedGenericAdapterRequest"
284
762
  },
285
763
  "task": true
286
764
  },
287
765
  {
288
- "name": "getQueue",
289
- "summary": "Return the requests that are waiting in the queue if throttling is enabled",
290
- "description": "Return the requests that are waiting in the queue if throttling is enabled",
291
- "input": [],
766
+ "name": "genericAdapterRequest",
767
+ "summary": "Makes the requested generic call",
768
+ "description": "Makes the requested generic call",
769
+ "input": [
770
+ {
771
+ "name": "uriPath",
772
+ "type": "string",
773
+ "info": "the path of the api call - do not include the host, port, base path or version",
774
+ "description": "the path of the api call",
775
+ "schema": {
776
+ "title": "uriPath",
777
+ "type": "string"
778
+ },
779
+ "required": true
780
+ },
781
+ {
782
+ "name": "restMethod",
783
+ "type": "string",
784
+ "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
785
+ "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
786
+ "schema": {
787
+ "title": "restMethod",
788
+ "type": "string"
789
+ },
790
+ "required": true
791
+ },
792
+ {
793
+ "name": "queryData",
794
+ "type": "object",
795
+ "info": "the query parameters to be put on the url (optional)",
796
+ "description": "the query parameters to be put on the url (optional)",
797
+ "schema": {
798
+ "title": "queryData",
799
+ "type": "object"
800
+ },
801
+ "required": false
802
+ },
803
+ {
804
+ "name": "requestBody",
805
+ "type": "object",
806
+ "info": "the payload to be sent with the request (optional)",
807
+ "description": "the payload to be sent with the request (optional)",
808
+ "schema": {
809
+ "title": "requestBody",
810
+ "type": "object"
811
+ },
812
+ "required": false
813
+ },
814
+ {
815
+ "name": "addlHeaders",
816
+ "type": "object",
817
+ "info": "additional headers to be put on the call (optional)",
818
+ "description": "additional headers to be put on the call (optional)",
819
+ "schema": {
820
+ "title": "addlHeaders",
821
+ "type": "object"
822
+ },
823
+ "required": false
824
+ }
825
+ ],
292
826
  "output": {
293
827
  "name": "result",
294
828
  "type": "object",
295
- "description": "A JSON Object containing the adapter queue",
829
+ "description": "A JSON Object containing status, code and the result",
296
830
  "schema": {
297
831
  "title": "result",
298
832
  "type": "object"
@@ -303,12 +837,12 @@
303
837
  ],
304
838
  "route": {
305
839
  "verb": "POST",
306
- "path": "/getQueue"
840
+ "path": "/genericAdapterRequest"
307
841
  },
308
842
  "task": true
309
843
  },
310
844
  {
311
- "name": "genericAdapterRequest",
845
+ "name": "genericAdapterRequestNoBasePath",
312
846
  "summary": "Makes the requested generic call",
313
847
  "description": "Makes the requested generic call",
314
848
  "input": [
@@ -382,7 +916,76 @@
382
916
  ],
383
917
  "route": {
384
918
  "verb": "POST",
385
- "path": "/genericAdapterRequest"
919
+ "path": "/genericAdapterRequestNoBasePath"
920
+ },
921
+ "task": true
922
+ },
923
+ {
924
+ "name": "iapRunAdapterLint",
925
+ "summary": "Run the adapter lint script to return the results",
926
+ "description": "Run the adapter lint script to return the results",
927
+ "input": [],
928
+ "output": {
929
+ "name": "result",
930
+ "type": "string",
931
+ "description": "A string containing the run results",
932
+ "schema": {
933
+ "title": "result",
934
+ "type": "string"
935
+ }
936
+ },
937
+ "roles": [
938
+ "admin"
939
+ ],
940
+ "route": {
941
+ "verb": "GET",
942
+ "path": "/iapRunAdapterLint"
943
+ },
944
+ "task": true
945
+ },
946
+ {
947
+ "name": "iapRunAdapterTests",
948
+ "summary": "Run the adapter test scripts (baseunit and unit) to return the results",
949
+ "description": "Run the adapter test scripts (baseunit and unit) to return the results",
950
+ "input": [],
951
+ "output": {
952
+ "name": "result",
953
+ "type": "object",
954
+ "description": "A JSON Object containing status, code and the result",
955
+ "schema": {
956
+ "title": "result",
957
+ "type": "object"
958
+ }
959
+ },
960
+ "roles": [
961
+ "admin"
962
+ ],
963
+ "route": {
964
+ "verb": "GET",
965
+ "path": "/iapRunAdapterTests"
966
+ },
967
+ "task": true
968
+ },
969
+ {
970
+ "name": "iapGetAdapterInventory",
971
+ "summary": "Provide inventory information abbout the adapter",
972
+ "description": "Provide inventory information abbout the adapter",
973
+ "input": [],
974
+ "output": {
975
+ "name": "result",
976
+ "type": "object",
977
+ "description": "A JSON Object containing status, code and the result",
978
+ "schema": {
979
+ "title": "result",
980
+ "type": "object"
981
+ }
982
+ },
983
+ "roles": [
984
+ "admin"
985
+ ],
986
+ "route": {
987
+ "verb": "GET",
988
+ "path": "/iapGetAdapterInventory"
386
989
  },
387
990
  "task": true
388
991
  },
@@ -393,12 +996,12 @@
393
996
  "input": [
394
997
  {
395
998
  "name": "applicationId",
396
- "type": "default",
999
+ "type": "string",
397
1000
  "info": "path parameter",
398
1001
  "required": true,
399
1002
  "schema": {
400
1003
  "title": "applicationId",
401
- "type": "default"
1004
+ "type": "string"
402
1005
  }
403
1006
  }
404
1007
  ],
@@ -437,12 +1040,12 @@
437
1040
  },
438
1041
  {
439
1042
  "name": "applicationId",
440
- "type": "default",
1043
+ "type": "string",
441
1044
  "info": "path parameter",
442
1045
  "required": true,
443
1046
  "schema": {
444
1047
  "title": "applicationId",
445
- "type": "default"
1048
+ "type": "string"
446
1049
  }
447
1050
  }
448
1051
  ],
@@ -481,12 +1084,12 @@
481
1084
  },
482
1085
  {
483
1086
  "name": "applicationId",
484
- "type": "default",
1087
+ "type": "string",
485
1088
  "info": "path parameter",
486
1089
  "required": true,
487
1090
  "schema": {
488
1091
  "title": "applicationId",
489
- "type": "default"
1092
+ "type": "string"
490
1093
  }
491
1094
  }
492
1095
  ],
@@ -515,22 +1118,22 @@
515
1118
  "input": [
516
1119
  {
517
1120
  "name": "applicationId",
518
- "type": "default",
1121
+ "type": "string",
519
1122
  "info": "path parameter",
520
1123
  "required": true,
521
1124
  "schema": {
522
1125
  "title": "applicationId",
523
- "type": "default"
1126
+ "type": "string"
524
1127
  }
525
1128
  },
526
1129
  {
527
1130
  "name": "requestId",
528
- "type": "default",
1131
+ "type": "string",
529
1132
  "info": "path parameter",
530
1133
  "required": true,
531
1134
  "schema": {
532
1135
  "title": "requestId",
533
- "type": "default"
1136
+ "type": "string"
534
1137
  }
535
1138
  }
536
1139
  ],
@@ -569,22 +1172,22 @@
569
1172
  },
570
1173
  {
571
1174
  "name": "applicationId",
572
- "type": "default",
1175
+ "type": "string",
573
1176
  "info": "path parameter",
574
1177
  "required": true,
575
1178
  "schema": {
576
1179
  "title": "applicationId",
577
- "type": "default"
1180
+ "type": "string"
578
1181
  }
579
1182
  },
580
1183
  {
581
1184
  "name": "requestId",
582
- "type": "default",
1185
+ "type": "string",
583
1186
  "info": "path parameter",
584
1187
  "required": true,
585
1188
  "schema": {
586
1189
  "title": "requestId",
587
- "type": "default"
1190
+ "type": "string"
588
1191
  }
589
1192
  }
590
1193
  ],
@@ -623,12 +1226,12 @@
623
1226
  },
624
1227
  {
625
1228
  "name": "applicationId",
626
- "type": "default",
1229
+ "type": "string",
627
1230
  "info": "path parameter",
628
1231
  "required": true,
629
1232
  "schema": {
630
1233
  "title": "applicationId",
631
- "type": "default"
1234
+ "type": "string"
632
1235
  }
633
1236
  }
634
1237
  ],
@@ -667,12 +1270,12 @@
667
1270
  },
668
1271
  {
669
1272
  "name": "applicationId",
670
- "type": "default",
1273
+ "type": "string",
671
1274
  "info": "path parameter",
672
1275
  "required": true,
673
1276
  "schema": {
674
1277
  "title": "applicationId",
675
- "type": "default"
1278
+ "type": "string"
676
1279
  }
677
1280
  }
678
1281
  ],
@@ -701,12 +1304,12 @@
701
1304
  "input": [
702
1305
  {
703
1306
  "name": "applicationId",
704
- "type": "default",
1307
+ "type": "string",
705
1308
  "info": "path parameter",
706
1309
  "required": true,
707
1310
  "schema": {
708
1311
  "title": "applicationId",
709
- "type": "default"
1312
+ "type": "string"
710
1313
  }
711
1314
  }
712
1315
  ],
@@ -735,12 +1338,12 @@
735
1338
  "input": [
736
1339
  {
737
1340
  "name": "applicationId",
738
- "type": "default",
1341
+ "type": "string",
739
1342
  "info": "path parameter",
740
1343
  "required": true,
741
1344
  "schema": {
742
1345
  "title": "applicationId",
743
- "type": "default"
1346
+ "type": "string"
744
1347
  }
745
1348
  }
746
1349
  ],
@@ -779,22 +1382,22 @@
779
1382
  },
780
1383
  {
781
1384
  "name": "applicationId",
782
- "type": "default",
1385
+ "type": "string",
783
1386
  "info": "path parameter",
784
1387
  "required": true,
785
1388
  "schema": {
786
1389
  "title": "applicationId",
787
- "type": "default"
1390
+ "type": "string"
788
1391
  }
789
1392
  },
790
1393
  {
791
1394
  "name": "connectionId",
792
- "type": "default",
1395
+ "type": "string",
793
1396
  "info": "path parameter",
794
1397
  "required": true,
795
1398
  "schema": {
796
1399
  "title": "connectionId",
797
- "type": "default"
1400
+ "type": "string"
798
1401
  }
799
1402
  }
800
1403
  ],
@@ -823,22 +1426,22 @@
823
1426
  "input": [
824
1427
  {
825
1428
  "name": "applicationId",
826
- "type": "default",
1429
+ "type": "string",
827
1430
  "info": "path parameter",
828
1431
  "required": true,
829
1432
  "schema": {
830
1433
  "title": "applicationId",
831
- "type": "default"
1434
+ "type": "string"
832
1435
  }
833
1436
  },
834
1437
  {
835
1438
  "name": "connectionId",
836
- "type": "default",
1439
+ "type": "string",
837
1440
  "info": "path parameter",
838
1441
  "required": true,
839
1442
  "schema": {
840
1443
  "title": "connectionId",
841
- "type": "default"
1444
+ "type": "string"
842
1445
  }
843
1446
  }
844
1447
  ],
@@ -877,22 +1480,22 @@
877
1480
  },
878
1481
  {
879
1482
  "name": "applicationId",
880
- "type": "default",
1483
+ "type": "string",
881
1484
  "info": "path parameter",
882
1485
  "required": true,
883
1486
  "schema": {
884
1487
  "title": "applicationId",
885
- "type": "default"
1488
+ "type": "string"
886
1489
  }
887
1490
  },
888
1491
  {
889
1492
  "name": "connectionId",
890
- "type": "default",
1493
+ "type": "string",
891
1494
  "info": "path parameter",
892
1495
  "required": true,
893
1496
  "schema": {
894
1497
  "title": "connectionId",
895
- "type": "default"
1498
+ "type": "string"
896
1499
  }
897
1500
  }
898
1501
  ],
@@ -921,22 +1524,22 @@
921
1524
  "input": [
922
1525
  {
923
1526
  "name": "applicationId",
924
- "type": "default",
1527
+ "type": "string",
925
1528
  "info": "path parameter",
926
1529
  "required": true,
927
1530
  "schema": {
928
1531
  "title": "applicationId",
929
- "type": "default"
1532
+ "type": "string"
930
1533
  }
931
1534
  },
932
1535
  {
933
1536
  "name": "connectionId",
934
- "type": "default",
1537
+ "type": "string",
935
1538
  "info": "path parameter",
936
1539
  "required": true,
937
1540
  "schema": {
938
1541
  "title": "connectionId",
939
- "type": "default"
1542
+ "type": "string"
940
1543
  }
941
1544
  }
942
1545
  ],
@@ -988,32 +1591,32 @@
988
1591
  "input": [
989
1592
  {
990
1593
  "name": "applicationId",
991
- "type": "default",
1594
+ "type": "string",
992
1595
  "info": "path parameter",
993
1596
  "required": true,
994
1597
  "schema": {
995
1598
  "title": "applicationId",
996
- "type": "default"
1599
+ "type": "string"
997
1600
  }
998
1601
  },
999
1602
  {
1000
1603
  "name": "applicationInterfaceId",
1001
- "type": "default",
1604
+ "type": "string",
1002
1605
  "info": "path parameter",
1003
1606
  "required": true,
1004
1607
  "schema": {
1005
1608
  "title": "applicationInterfaceId",
1006
- "type": "default"
1609
+ "type": "string"
1007
1610
  }
1008
1611
  },
1009
1612
  {
1010
1613
  "name": "connectionInterfaceId",
1011
- "type": "default",
1614
+ "type": "string",
1012
1615
  "info": "path parameter",
1013
1616
  "required": true,
1014
1617
  "schema": {
1015
1618
  "title": "connectionInterfaceId",
1016
- "type": "default"
1619
+ "type": "string"
1017
1620
  }
1018
1621
  }
1019
1622
  ],
@@ -1052,32 +1655,32 @@
1052
1655
  },
1053
1656
  {
1054
1657
  "name": "applicationId",
1055
- "type": "default",
1658
+ "type": "string",
1056
1659
  "info": "path parameter",
1057
1660
  "required": true,
1058
1661
  "schema": {
1059
1662
  "title": "applicationId",
1060
- "type": "default"
1663
+ "type": "string"
1061
1664
  }
1062
1665
  },
1063
1666
  {
1064
1667
  "name": "applicationInterfaceId",
1065
- "type": "default",
1668
+ "type": "string",
1066
1669
  "info": "path parameter",
1067
1670
  "required": true,
1068
1671
  "schema": {
1069
1672
  "title": "applicationInterfaceId",
1070
- "type": "default"
1673
+ "type": "string"
1071
1674
  }
1072
1675
  },
1073
1676
  {
1074
1677
  "name": "connectionInterfaceId",
1075
- "type": "default",
1678
+ "type": "string",
1076
1679
  "info": "path parameter",
1077
1680
  "required": true,
1078
1681
  "schema": {
1079
1682
  "title": "connectionInterfaceId",
1080
- "type": "default"
1683
+ "type": "string"
1081
1684
  }
1082
1685
  }
1083
1686
  ],
@@ -1106,32 +1709,32 @@
1106
1709
  "input": [
1107
1710
  {
1108
1711
  "name": "applicationId",
1109
- "type": "default",
1712
+ "type": "string",
1110
1713
  "info": "path parameter",
1111
1714
  "required": true,
1112
1715
  "schema": {
1113
1716
  "title": "applicationId",
1114
- "type": "default"
1717
+ "type": "string"
1115
1718
  }
1116
1719
  },
1117
1720
  {
1118
1721
  "name": "applicationInterfaceId",
1119
- "type": "default",
1722
+ "type": "string",
1120
1723
  "info": "path parameter",
1121
1724
  "required": true,
1122
1725
  "schema": {
1123
1726
  "title": "applicationInterfaceId",
1124
- "type": "default"
1727
+ "type": "string"
1125
1728
  }
1126
1729
  },
1127
1730
  {
1128
1731
  "name": "connectionInterfaceId",
1129
- "type": "default",
1732
+ "type": "string",
1130
1733
  "info": "path parameter",
1131
1734
  "required": true,
1132
1735
  "schema": {
1133
1736
  "title": "connectionInterfaceId",
1134
- "type": "default"
1737
+ "type": "string"
1135
1738
  }
1136
1739
  }
1137
1740
  ],
@@ -1160,12 +1763,12 @@
1160
1763
  "input": [
1161
1764
  {
1162
1765
  "name": "applicationId",
1163
- "type": "default",
1766
+ "type": "string",
1164
1767
  "info": "path parameter",
1165
1768
  "required": true,
1166
1769
  "schema": {
1167
1770
  "title": "applicationId",
1168
- "type": "default"
1771
+ "type": "string"
1169
1772
  }
1170
1773
  }
1171
1774
  ],
@@ -1204,12 +1807,12 @@
1204
1807
  },
1205
1808
  {
1206
1809
  "name": "applicationId",
1207
- "type": "default",
1810
+ "type": "string",
1208
1811
  "info": "path parameter",
1209
1812
  "required": true,
1210
1813
  "schema": {
1211
1814
  "title": "applicationId",
1212
- "type": "default"
1815
+ "type": "string"
1213
1816
  }
1214
1817
  }
1215
1818
  ],
@@ -1248,22 +1851,22 @@
1248
1851
  },
1249
1852
  {
1250
1853
  "name": "applicationId",
1251
- "type": "default",
1854
+ "type": "string",
1252
1855
  "info": "path parameter",
1253
1856
  "required": true,
1254
1857
  "schema": {
1255
1858
  "title": "applicationId",
1256
- "type": "default"
1859
+ "type": "string"
1257
1860
  }
1258
1861
  },
1259
1862
  {
1260
1863
  "name": "applicationInterfaceId",
1261
- "type": "default",
1864
+ "type": "string",
1262
1865
  "info": "path parameter",
1263
1866
  "required": true,
1264
1867
  "schema": {
1265
1868
  "title": "applicationInterfaceId",
1266
- "type": "default"
1869
+ "type": "string"
1267
1870
  }
1268
1871
  }
1269
1872
  ],
@@ -1292,22 +1895,22 @@
1292
1895
  "input": [
1293
1896
  {
1294
1897
  "name": "applicationId",
1295
- "type": "default",
1898
+ "type": "string",
1296
1899
  "info": "path parameter",
1297
1900
  "required": true,
1298
1901
  "schema": {
1299
1902
  "title": "applicationId",
1300
- "type": "default"
1903
+ "type": "string"
1301
1904
  }
1302
1905
  },
1303
1906
  {
1304
1907
  "name": "applicationInterfaceId",
1305
- "type": "default",
1908
+ "type": "string",
1306
1909
  "info": "path parameter",
1307
1910
  "required": true,
1308
1911
  "schema": {
1309
1912
  "title": "applicationInterfaceId",
1310
- "type": "default"
1913
+ "type": "string"
1311
1914
  }
1312
1915
  }
1313
1916
  ],
@@ -1336,22 +1939,22 @@
1336
1939
  "input": [
1337
1940
  {
1338
1941
  "name": "applicationId",
1339
- "type": "default",
1942
+ "type": "string",
1340
1943
  "info": "path parameter",
1341
1944
  "required": true,
1342
1945
  "schema": {
1343
1946
  "title": "applicationId",
1344
- "type": "default"
1947
+ "type": "string"
1345
1948
  }
1346
1949
  },
1347
1950
  {
1348
1951
  "name": "applicationInterfaceId",
1349
- "type": "default",
1952
+ "type": "string",
1350
1953
  "info": "path parameter",
1351
1954
  "required": true,
1352
1955
  "schema": {
1353
1956
  "title": "applicationInterfaceId",
1354
- "type": "default"
1957
+ "type": "string"
1355
1958
  }
1356
1959
  }
1357
1960
  ],
@@ -1380,22 +1983,22 @@
1380
1983
  "input": [
1381
1984
  {
1382
1985
  "name": "applicationId",
1383
- "type": "default",
1986
+ "type": "string",
1384
1987
  "info": "path parameter",
1385
1988
  "required": true,
1386
1989
  "schema": {
1387
1990
  "title": "applicationId",
1388
- "type": "default"
1991
+ "type": "string"
1389
1992
  }
1390
1993
  },
1391
1994
  {
1392
1995
  "name": "applicationInterfaceId",
1393
- "type": "default",
1996
+ "type": "string",
1394
1997
  "info": "path parameter",
1395
1998
  "required": true,
1396
1999
  "schema": {
1397
2000
  "title": "applicationInterfaceId",
1398
- "type": "default"
2001
+ "type": "string"
1399
2002
  }
1400
2003
  }
1401
2004
  ],
@@ -1434,22 +2037,22 @@
1434
2037
  },
1435
2038
  {
1436
2039
  "name": "applicationId",
1437
- "type": "default",
2040
+ "type": "string",
1438
2041
  "info": "path parameter",
1439
2042
  "required": true,
1440
2043
  "schema": {
1441
2044
  "title": "applicationId",
1442
- "type": "default"
2045
+ "type": "string"
1443
2046
  }
1444
2047
  },
1445
2048
  {
1446
2049
  "name": "applicationInterfaceId",
1447
- "type": "default",
2050
+ "type": "string",
1448
2051
  "info": "path parameter",
1449
2052
  "required": true,
1450
2053
  "schema": {
1451
2054
  "title": "applicationInterfaceId",
1452
- "type": "default"
2055
+ "type": "string"
1453
2056
  }
1454
2057
  }
1455
2058
  ],
@@ -1478,12 +2081,12 @@
1478
2081
  "input": [
1479
2082
  {
1480
2083
  "name": "applicationId",
1481
- "type": "default",
2084
+ "type": "string",
1482
2085
  "info": "path parameter",
1483
2086
  "required": true,
1484
2087
  "schema": {
1485
2088
  "title": "applicationId",
1486
- "type": "default"
2089
+ "type": "string"
1487
2090
  }
1488
2091
  }
1489
2092
  ],
@@ -1522,12 +2125,12 @@
1522
2125
  },
1523
2126
  {
1524
2127
  "name": "applicationId",
1525
- "type": "default",
2128
+ "type": "string",
1526
2129
  "info": "path parameter",
1527
2130
  "required": true,
1528
2131
  "schema": {
1529
2132
  "title": "applicationId",
1530
- "type": "default"
2133
+ "type": "string"
1531
2134
  }
1532
2135
  }
1533
2136
  ],
@@ -1556,22 +2159,22 @@
1556
2159
  "input": [
1557
2160
  {
1558
2161
  "name": "applicationId",
1559
- "type": "default",
2162
+ "type": "string",
1560
2163
  "info": "path parameter",
1561
2164
  "required": true,
1562
2165
  "schema": {
1563
2166
  "title": "applicationId",
1564
- "type": "default"
2167
+ "type": "string"
1565
2168
  }
1566
2169
  },
1567
2170
  {
1568
2171
  "name": "connectionToApplicationId",
1569
- "type": "default",
2172
+ "type": "string",
1570
2173
  "info": "path parameter",
1571
2174
  "required": true,
1572
2175
  "schema": {
1573
2176
  "title": "connectionToApplicationId",
1574
- "type": "default"
2177
+ "type": "string"
1575
2178
  }
1576
2179
  }
1577
2180
  ],
@@ -1610,22 +2213,22 @@
1610
2213
  },
1611
2214
  {
1612
2215
  "name": "applicationId",
1613
- "type": "default",
2216
+ "type": "string",
1614
2217
  "info": "path parameter",
1615
2218
  "required": true,
1616
2219
  "schema": {
1617
2220
  "title": "applicationId",
1618
- "type": "default"
2221
+ "type": "string"
1619
2222
  }
1620
2223
  },
1621
2224
  {
1622
2225
  "name": "connectionToApplicationId",
1623
- "type": "default",
2226
+ "type": "string",
1624
2227
  "info": "path parameter",
1625
2228
  "required": true,
1626
2229
  "schema": {
1627
2230
  "title": "connectionToApplicationId",
1628
- "type": "default"
2231
+ "type": "string"
1629
2232
  }
1630
2233
  }
1631
2234
  ],
@@ -1654,22 +2257,22 @@
1654
2257
  "input": [
1655
2258
  {
1656
2259
  "name": "applicationId",
1657
- "type": "default",
2260
+ "type": "string",
1658
2261
  "info": "path parameter",
1659
2262
  "required": true,
1660
2263
  "schema": {
1661
2264
  "title": "applicationId",
1662
- "type": "default"
2265
+ "type": "string"
1663
2266
  }
1664
2267
  },
1665
2268
  {
1666
2269
  "name": "connectionToApplicationId",
1667
- "type": "default",
2270
+ "type": "string",
1668
2271
  "info": "path parameter",
1669
2272
  "required": true,
1670
2273
  "schema": {
1671
2274
  "title": "connectionToApplicationId",
1672
- "type": "default"
2275
+ "type": "string"
1673
2276
  }
1674
2277
  }
1675
2278
  ],
@@ -1698,22 +2301,22 @@
1698
2301
  "input": [
1699
2302
  {
1700
2303
  "name": "sourceApplicationId",
1701
- "type": "default",
2304
+ "type": "string",
1702
2305
  "info": "path parameter",
1703
2306
  "required": true,
1704
2307
  "schema": {
1705
2308
  "title": "sourceApplicationId",
1706
- "type": "default"
2309
+ "type": "string"
1707
2310
  }
1708
2311
  },
1709
2312
  {
1710
2313
  "name": "targetApplicationId",
1711
- "type": "default",
2314
+ "type": "string",
1712
2315
  "info": "path parameter",
1713
2316
  "required": true,
1714
2317
  "schema": {
1715
2318
  "title": "targetApplicationId",
1716
- "type": "default"
2319
+ "type": "string"
1717
2320
  }
1718
2321
  }
1719
2322
  ],
@@ -1752,22 +2355,22 @@
1752
2355
  },
1753
2356
  {
1754
2357
  "name": "sourceApplicationId",
1755
- "type": "default",
2358
+ "type": "string",
1756
2359
  "info": "path parameter",
1757
2360
  "required": true,
1758
2361
  "schema": {
1759
2362
  "title": "sourceApplicationId",
1760
- "type": "default"
2363
+ "type": "string"
1761
2364
  }
1762
2365
  },
1763
2366
  {
1764
2367
  "name": "targetApplicationId",
1765
- "type": "default",
2368
+ "type": "string",
1766
2369
  "info": "path parameter",
1767
2370
  "required": true,
1768
2371
  "schema": {
1769
2372
  "title": "targetApplicationId",
1770
- "type": "default"
2373
+ "type": "string"
1771
2374
  }
1772
2375
  }
1773
2376
  ],
@@ -1806,22 +2409,22 @@
1806
2409
  },
1807
2410
  {
1808
2411
  "name": "sourceApplicationId",
1809
- "type": "default",
2412
+ "type": "string",
1810
2413
  "info": "path parameter",
1811
2414
  "required": true,
1812
2415
  "schema": {
1813
2416
  "title": "sourceApplicationId",
1814
- "type": "default"
2417
+ "type": "string"
1815
2418
  }
1816
2419
  },
1817
2420
  {
1818
2421
  "name": "targetApplicationId",
1819
- "type": "default",
2422
+ "type": "string",
1820
2423
  "info": "path parameter",
1821
2424
  "required": true,
1822
2425
  "schema": {
1823
2426
  "title": "targetApplicationId",
1824
- "type": "default"
2427
+ "type": "string"
1825
2428
  }
1826
2429
  }
1827
2430
  ],
@@ -1850,22 +2453,22 @@
1850
2453
  "input": [
1851
2454
  {
1852
2455
  "name": "sourceApplicationId",
1853
- "type": "default",
2456
+ "type": "string",
1854
2457
  "info": "path parameter",
1855
2458
  "required": true,
1856
2459
  "schema": {
1857
2460
  "title": "sourceApplicationId",
1858
- "type": "default"
2461
+ "type": "string"
1859
2462
  }
1860
2463
  },
1861
2464
  {
1862
2465
  "name": "targetApplicationId",
1863
- "type": "default",
2466
+ "type": "string",
1864
2467
  "info": "path parameter",
1865
2468
  "required": true,
1866
2469
  "schema": {
1867
2470
  "title": "targetApplicationId",
1868
- "type": "default"
2471
+ "type": "string"
1869
2472
  }
1870
2473
  }
1871
2474
  ],
@@ -1904,22 +2507,22 @@
1904
2507
  },
1905
2508
  {
1906
2509
  "name": "sourceApplicationId",
1907
- "type": "default",
2510
+ "type": "string",
1908
2511
  "info": "path parameter",
1909
2512
  "required": true,
1910
2513
  "schema": {
1911
2514
  "title": "sourceApplicationId",
1912
- "type": "default"
2515
+ "type": "string"
1913
2516
  }
1914
2517
  },
1915
2518
  {
1916
2519
  "name": "targetApplicationId",
1917
- "type": "default",
2520
+ "type": "string",
1918
2521
  "info": "path parameter",
1919
2522
  "required": true,
1920
2523
  "schema": {
1921
2524
  "title": "targetApplicationId",
1922
- "type": "default"
2525
+ "type": "string"
1923
2526
  }
1924
2527
  }
1925
2528
  ],
@@ -1948,12 +2551,12 @@
1948
2551
  "input": [
1949
2552
  {
1950
2553
  "name": "applicationId",
1951
- "type": "default",
2554
+ "type": "string",
1952
2555
  "info": "path parameter",
1953
2556
  "required": true,
1954
2557
  "schema": {
1955
2558
  "title": "applicationId",
1956
- "type": "default"
2559
+ "type": "string"
1957
2560
  }
1958
2561
  }
1959
2562
  ],
@@ -1992,12 +2595,12 @@
1992
2595
  },
1993
2596
  {
1994
2597
  "name": "applicationId",
1995
- "type": "default",
2598
+ "type": "string",
1996
2599
  "info": "path parameter",
1997
2600
  "required": true,
1998
2601
  "schema": {
1999
2602
  "title": "applicationId",
2000
- "type": "default"
2603
+ "type": "string"
2001
2604
  }
2002
2605
  }
2003
2606
  ],
@@ -2026,22 +2629,22 @@
2026
2629
  "input": [
2027
2630
  {
2028
2631
  "name": "customerId",
2029
- "type": "default",
2632
+ "type": "string",
2030
2633
  "info": "path parameter",
2031
2634
  "required": true,
2032
2635
  "schema": {
2033
2636
  "title": "customerId",
2034
- "type": "default"
2637
+ "type": "string"
2035
2638
  }
2036
2639
  },
2037
2640
  {
2038
2641
  "name": "applicationPackId",
2039
- "type": "default",
2642
+ "type": "string",
2040
2643
  "info": "path parameter",
2041
2644
  "required": true,
2042
2645
  "schema": {
2043
2646
  "title": "applicationPackId",
2044
- "type": "default"
2647
+ "type": "string"
2045
2648
  }
2046
2649
  }
2047
2650
  ],
@@ -2070,22 +2673,22 @@
2070
2673
  "input": [
2071
2674
  {
2072
2675
  "name": "customerId",
2073
- "type": "default",
2676
+ "type": "string",
2074
2677
  "info": "path parameter",
2075
2678
  "required": true,
2076
2679
  "schema": {
2077
2680
  "title": "customerId",
2078
- "type": "default"
2681
+ "type": "string"
2079
2682
  }
2080
2683
  },
2081
2684
  {
2082
2685
  "name": "applicationPackId",
2083
- "type": "default",
2686
+ "type": "string",
2084
2687
  "info": "path parameter",
2085
2688
  "required": true,
2086
2689
  "schema": {
2087
2690
  "title": "applicationPackId",
2088
- "type": "default"
2691
+ "type": "string"
2089
2692
  }
2090
2693
  }
2091
2694
  ],
@@ -2124,22 +2727,22 @@
2124
2727
  },
2125
2728
  {
2126
2729
  "name": "customerId",
2127
- "type": "default",
2730
+ "type": "string",
2128
2731
  "info": "path parameter",
2129
2732
  "required": true,
2130
2733
  "schema": {
2131
2734
  "title": "customerId",
2132
- "type": "default"
2735
+ "type": "string"
2133
2736
  }
2134
2737
  },
2135
2738
  {
2136
2739
  "name": "applicationPackId",
2137
- "type": "default",
2740
+ "type": "string",
2138
2741
  "info": "path parameter",
2139
2742
  "required": true,
2140
2743
  "schema": {
2141
2744
  "title": "applicationPackId",
2142
- "type": "default"
2745
+ "type": "string"
2143
2746
  }
2144
2747
  }
2145
2748
  ],
@@ -2168,22 +2771,22 @@
2168
2771
  "input": [
2169
2772
  {
2170
2773
  "name": "customerId",
2171
- "type": "default",
2774
+ "type": "string",
2172
2775
  "info": "path parameter",
2173
2776
  "required": true,
2174
2777
  "schema": {
2175
2778
  "title": "customerId",
2176
- "type": "default"
2779
+ "type": "string"
2177
2780
  }
2178
2781
  },
2179
2782
  {
2180
2783
  "name": "applicationPackId",
2181
- "type": "default",
2784
+ "type": "string",
2182
2785
  "info": "path parameter",
2183
2786
  "required": true,
2184
2787
  "schema": {
2185
2788
  "title": "applicationPackId",
2186
- "type": "default"
2789
+ "type": "string"
2187
2790
  }
2188
2791
  }
2189
2792
  ],
@@ -2212,22 +2815,22 @@
2212
2815
  "input": [
2213
2816
  {
2214
2817
  "name": "customerId",
2215
- "type": "default",
2818
+ "type": "string",
2216
2819
  "info": "path parameter",
2217
2820
  "required": true,
2218
2821
  "schema": {
2219
2822
  "title": "customerId",
2220
- "type": "default"
2823
+ "type": "string"
2221
2824
  }
2222
2825
  },
2223
2826
  {
2224
2827
  "name": "applicationPackId",
2225
- "type": "default",
2828
+ "type": "string",
2226
2829
  "info": "path parameter",
2227
2830
  "required": true,
2228
2831
  "schema": {
2229
2832
  "title": "applicationPackId",
2230
- "type": "default"
2833
+ "type": "string"
2231
2834
  }
2232
2835
  }
2233
2836
  ],
@@ -2266,22 +2869,22 @@
2266
2869
  },
2267
2870
  {
2268
2871
  "name": "customerId",
2269
- "type": "default",
2872
+ "type": "string",
2270
2873
  "info": "path parameter",
2271
2874
  "required": true,
2272
2875
  "schema": {
2273
2876
  "title": "customerId",
2274
- "type": "default"
2877
+ "type": "string"
2275
2878
  }
2276
2879
  },
2277
2880
  {
2278
2881
  "name": "applicationPackId",
2279
- "type": "default",
2882
+ "type": "string",
2280
2883
  "info": "path parameter",
2281
2884
  "required": true,
2282
2885
  "schema": {
2283
2886
  "title": "applicationPackId",
2284
- "type": "default"
2887
+ "type": "string"
2285
2888
  }
2286
2889
  }
2287
2890
  ],
@@ -2320,22 +2923,22 @@
2320
2923
  },
2321
2924
  {
2322
2925
  "name": "customerId",
2323
- "type": "default",
2926
+ "type": "string",
2324
2927
  "info": "path parameter",
2325
2928
  "required": true,
2326
2929
  "schema": {
2327
2930
  "title": "customerId",
2328
- "type": "default"
2931
+ "type": "string"
2329
2932
  }
2330
2933
  },
2331
2934
  {
2332
2935
  "name": "applicationPackId",
2333
- "type": "default",
2936
+ "type": "string",
2334
2937
  "info": "path parameter",
2335
2938
  "required": true,
2336
2939
  "schema": {
2337
2940
  "title": "applicationPackId",
2338
- "type": "default"
2941
+ "type": "string"
2339
2942
  }
2340
2943
  }
2341
2944
  ],
@@ -2364,22 +2967,22 @@
2364
2967
  "input": [
2365
2968
  {
2366
2969
  "name": "customerId",
2367
- "type": "default",
2970
+ "type": "string",
2368
2971
  "info": "path parameter",
2369
2972
  "required": true,
2370
2973
  "schema": {
2371
2974
  "title": "customerId",
2372
- "type": "default"
2975
+ "type": "string"
2373
2976
  }
2374
2977
  },
2375
2978
  {
2376
2979
  "name": "applicationPackId",
2377
- "type": "default",
2980
+ "type": "string",
2378
2981
  "info": "path parameter",
2379
2982
  "required": true,
2380
2983
  "schema": {
2381
2984
  "title": "applicationPackId",
2382
- "type": "default"
2985
+ "type": "string"
2383
2986
  }
2384
2987
  }
2385
2988
  ],
@@ -2418,22 +3021,22 @@
2418
3021
  },
2419
3022
  {
2420
3023
  "name": "customerId",
2421
- "type": "default",
3024
+ "type": "string",
2422
3025
  "info": "path parameter",
2423
3026
  "required": true,
2424
3027
  "schema": {
2425
3028
  "title": "customerId",
2426
- "type": "default"
3029
+ "type": "string"
2427
3030
  }
2428
3031
  },
2429
3032
  {
2430
3033
  "name": "applicationPackId",
2431
- "type": "default",
3034
+ "type": "string",
2432
3035
  "info": "path parameter",
2433
3036
  "required": true,
2434
3037
  "schema": {
2435
3038
  "title": "applicationPackId",
2436
- "type": "default"
3039
+ "type": "string"
2437
3040
  }
2438
3041
  }
2439
3042
  ],
@@ -2472,12 +3075,12 @@
2472
3075
  },
2473
3076
  {
2474
3077
  "name": "customerId",
2475
- "type": "default",
3078
+ "type": "string",
2476
3079
  "info": "path parameter",
2477
3080
  "required": true,
2478
3081
  "schema": {
2479
3082
  "title": "customerId",
2480
- "type": "default"
3083
+ "type": "string"
2481
3084
  }
2482
3085
  }
2483
3086
  ],
@@ -2516,12 +3119,12 @@
2516
3119
  },
2517
3120
  {
2518
3121
  "name": "customerId",
2519
- "type": "default",
3122
+ "type": "string",
2520
3123
  "info": "path parameter",
2521
3124
  "required": true,
2522
3125
  "schema": {
2523
3126
  "title": "customerId",
2524
- "type": "default"
3127
+ "type": "string"
2525
3128
  }
2526
3129
  }
2527
3130
  ],
@@ -2550,12 +3153,12 @@
2550
3153
  "input": [
2551
3154
  {
2552
3155
  "name": "customerId",
2553
- "type": "default",
3156
+ "type": "string",
2554
3157
  "info": "path parameter",
2555
3158
  "required": true,
2556
3159
  "schema": {
2557
3160
  "title": "customerId",
2558
- "type": "default"
3161
+ "type": "string"
2559
3162
  }
2560
3163
  }
2561
3164
  ],
@@ -2584,32 +3187,32 @@
2584
3187
  "input": [
2585
3188
  {
2586
3189
  "name": "customerId",
2587
- "type": "default",
3190
+ "type": "string",
2588
3191
  "info": "path parameter",
2589
3192
  "required": true,
2590
3193
  "schema": {
2591
3194
  "title": "customerId",
2592
- "type": "default"
3195
+ "type": "string"
2593
3196
  }
2594
3197
  },
2595
3198
  {
2596
3199
  "name": "applicationPackId",
2597
- "type": "default",
3200
+ "type": "string",
2598
3201
  "info": "path parameter",
2599
3202
  "required": true,
2600
3203
  "schema": {
2601
3204
  "title": "applicationPackId",
2602
- "type": "default"
3205
+ "type": "string"
2603
3206
  }
2604
3207
  },
2605
3208
  {
2606
3209
  "name": "tagId",
2607
- "type": "default",
3210
+ "type": "string",
2608
3211
  "info": "path parameter",
2609
3212
  "required": true,
2610
3213
  "schema": {
2611
3214
  "title": "tagId",
2612
- "type": "default"
3215
+ "type": "string"
2613
3216
  }
2614
3217
  }
2615
3218
  ],
@@ -2648,22 +3251,22 @@
2648
3251
  },
2649
3252
  {
2650
3253
  "name": "applicationId",
2651
- "type": "default",
3254
+ "type": "string",
2652
3255
  "info": "path parameter",
2653
3256
  "required": true,
2654
3257
  "schema": {
2655
3258
  "title": "applicationId",
2656
- "type": "default"
3259
+ "type": "string"
2657
3260
  }
2658
3261
  },
2659
3262
  {
2660
3263
  "name": "connectionToApplicationPackId",
2661
- "type": "default",
3264
+ "type": "string",
2662
3265
  "info": "path parameter",
2663
3266
  "required": true,
2664
3267
  "schema": {
2665
3268
  "title": "connectionToApplicationPackId",
2666
- "type": "default"
3269
+ "type": "string"
2667
3270
  }
2668
3271
  }
2669
3272
  ],
@@ -2692,22 +3295,22 @@
2692
3295
  "input": [
2693
3296
  {
2694
3297
  "name": "applicationId",
2695
- "type": "default",
3298
+ "type": "string",
2696
3299
  "info": "path parameter",
2697
3300
  "required": true,
2698
3301
  "schema": {
2699
3302
  "title": "applicationId",
2700
- "type": "default"
3303
+ "type": "string"
2701
3304
  }
2702
3305
  },
2703
3306
  {
2704
3307
  "name": "connectionToApplicationPackId",
2705
- "type": "default",
3308
+ "type": "string",
2706
3309
  "info": "path parameter",
2707
3310
  "required": true,
2708
3311
  "schema": {
2709
3312
  "title": "connectionToApplicationPackId",
2710
- "type": "default"
3313
+ "type": "string"
2711
3314
  }
2712
3315
  }
2713
3316
  ],
@@ -2736,22 +3339,22 @@
2736
3339
  "input": [
2737
3340
  {
2738
3341
  "name": "applicationId",
2739
- "type": "default",
3342
+ "type": "string",
2740
3343
  "info": "path parameter",
2741
3344
  "required": true,
2742
3345
  "schema": {
2743
3346
  "title": "applicationId",
2744
- "type": "default"
3347
+ "type": "string"
2745
3348
  }
2746
3349
  },
2747
3350
  {
2748
3351
  "name": "connectionToApplicationPackId",
2749
- "type": "default",
3352
+ "type": "string",
2750
3353
  "info": "path parameter",
2751
3354
  "required": true,
2752
3355
  "schema": {
2753
3356
  "title": "connectionToApplicationPackId",
2754
- "type": "default"
3357
+ "type": "string"
2755
3358
  }
2756
3359
  }
2757
3360
  ],
@@ -2780,12 +3383,12 @@
2780
3383
  "input": [
2781
3384
  {
2782
3385
  "name": "applicationId",
2783
- "type": "default",
3386
+ "type": "string",
2784
3387
  "info": "path parameter",
2785
3388
  "required": true,
2786
3389
  "schema": {
2787
3390
  "title": "applicationId",
2788
- "type": "default"
3391
+ "type": "string"
2789
3392
  }
2790
3393
  }
2791
3394
  ],
@@ -2837,12 +3440,12 @@
2837
3440
  "input": [
2838
3441
  {
2839
3442
  "name": "serverId",
2840
- "type": "default",
3443
+ "type": "string",
2841
3444
  "info": "path parameter",
2842
3445
  "required": true,
2843
3446
  "schema": {
2844
3447
  "title": "serverId",
2845
- "type": "default"
3448
+ "type": "string"
2846
3449
  }
2847
3450
  }
2848
3451
  ],
@@ -2865,28 +3468,28 @@
2865
3468
  "task": true
2866
3469
  },
2867
3470
  {
2868
- "name": "ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainDefaultPrintEachMemberOnASeparateLine",
2869
- "summary": "If the identified server is a group, return a list of its members. When the media type is 'text/plain' (default), print each member on a separate line.",
2870
- "description": "If the identified server is a group, return a list of its members. When the media type is 'text/plain' (default), print each member on a separate line.",
3471
+ "name": "ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainstringPrintEachMemberOnASeparateLine",
3472
+ "summary": "If the identified server is a group, return a list of its members. When the media type is 'text/plain' (string), print each member on a separate line.",
3473
+ "description": "If the identified server is a group, return a list of its members. When the media type is 'text/plain' (string), print each member on a separate line.",
2871
3474
  "input": [
2872
3475
  {
2873
3476
  "name": "applicationId",
2874
- "type": "default",
3477
+ "type": "string",
2875
3478
  "info": "path parameter",
2876
3479
  "required": true,
2877
3480
  "schema": {
2878
3481
  "title": "applicationId",
2879
- "type": "default"
3482
+ "type": "string"
2880
3483
  }
2881
3484
  },
2882
3485
  {
2883
3486
  "name": "serverId",
2884
- "type": "default",
3487
+ "type": "string",
2885
3488
  "info": "path parameter",
2886
3489
  "required": true,
2887
3490
  "schema": {
2888
3491
  "title": "serverId",
2889
- "type": "default"
3492
+ "type": "string"
2890
3493
  }
2891
3494
  }
2892
3495
  ],
@@ -2904,7 +3507,7 @@
2904
3507
  ],
2905
3508
  "route": {
2906
3509
  "verb": "POST",
2907
- "path": "/ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainDefaultPrintEachMemberOnASeparateLine"
3510
+ "path": "/ifTheIdentifiedServerIsAGroupReturnAListOfItsMembersWhenTheMediaTypeIsTextPlainstringPrintEachMemberOnASeparateLine"
2908
3511
  },
2909
3512
  "task": true
2910
3513
  },
@@ -2915,22 +3518,22 @@
2915
3518
  "input": [
2916
3519
  {
2917
3520
  "name": "applicationId",
2918
- "type": "default",
3521
+ "type": "string",
2919
3522
  "info": "path parameter",
2920
3523
  "required": true,
2921
3524
  "schema": {
2922
3525
  "title": "applicationId",
2923
- "type": "default"
3526
+ "type": "string"
2924
3527
  }
2925
3528
  },
2926
3529
  {
2927
3530
  "name": "serverId",
2928
- "type": "default",
3531
+ "type": "string",
2929
3532
  "info": "path parameter",
2930
3533
  "required": true,
2931
3534
  "schema": {
2932
3535
  "title": "serverId",
2933
- "type": "default"
3536
+ "type": "string"
2934
3537
  }
2935
3538
  }
2936
3539
  ],
@@ -2969,12 +3572,12 @@
2969
3572
  },
2970
3573
  {
2971
3574
  "name": "applicationId",
2972
- "type": "default",
3575
+ "type": "string",
2973
3576
  "info": "path parameter",
2974
3577
  "required": true,
2975
3578
  "schema": {
2976
3579
  "title": "applicationId",
2977
- "type": "default"
3580
+ "type": "string"
2978
3581
  }
2979
3582
  }
2980
3583
  ],
@@ -3013,12 +3616,12 @@
3013
3616
  },
3014
3617
  {
3015
3618
  "name": "applicationId",
3016
- "type": "default",
3619
+ "type": "string",
3017
3620
  "info": "path parameter",
3018
3621
  "required": true,
3019
3622
  "schema": {
3020
3623
  "title": "applicationId",
3021
- "type": "default"
3624
+ "type": "string"
3022
3625
  }
3023
3626
  }
3024
3627
  ],
@@ -3047,12 +3650,12 @@
3047
3650
  "input": [
3048
3651
  {
3049
3652
  "name": "applicationId",
3050
- "type": "default",
3653
+ "type": "string",
3051
3654
  "info": "path parameter",
3052
3655
  "required": true,
3053
3656
  "schema": {
3054
3657
  "title": "applicationId",
3055
- "type": "default"
3658
+ "type": "string"
3056
3659
  }
3057
3660
  }
3058
3661
  ],
@@ -3091,12 +3694,12 @@
3091
3694
  },
3092
3695
  {
3093
3696
  "name": "applicationId",
3094
- "type": "default",
3697
+ "type": "string",
3095
3698
  "info": "path parameter",
3096
3699
  "required": true,
3097
3700
  "schema": {
3098
3701
  "title": "applicationId",
3099
- "type": "default"
3702
+ "type": "string"
3100
3703
  }
3101
3704
  }
3102
3705
  ],
@@ -3125,22 +3728,22 @@
3125
3728
  "input": [
3126
3729
  {
3127
3730
  "name": "applicationId",
3128
- "type": "default",
3731
+ "type": "string",
3129
3732
  "info": "path parameter",
3130
3733
  "required": true,
3131
3734
  "schema": {
3132
3735
  "title": "applicationId",
3133
- "type": "default"
3736
+ "type": "string"
3134
3737
  }
3135
3738
  },
3136
3739
  {
3137
3740
  "name": "serverId",
3138
- "type": "default",
3741
+ "type": "string",
3139
3742
  "info": "path parameter",
3140
3743
  "required": true,
3141
3744
  "schema": {
3142
3745
  "title": "serverId",
3143
- "type": "default"
3746
+ "type": "string"
3144
3747
  }
3145
3748
  }
3146
3749
  ],
@@ -3169,22 +3772,22 @@
3169
3772
  "input": [
3170
3773
  {
3171
3774
  "name": "applicationId",
3172
- "type": "default",
3775
+ "type": "string",
3173
3776
  "info": "path parameter",
3174
3777
  "required": true,
3175
3778
  "schema": {
3176
3779
  "title": "applicationId",
3177
- "type": "default"
3780
+ "type": "string"
3178
3781
  }
3179
3782
  },
3180
3783
  {
3181
3784
  "name": "serverId",
3182
- "type": "default",
3785
+ "type": "string",
3183
3786
  "info": "path parameter",
3184
3787
  "required": true,
3185
3788
  "schema": {
3186
3789
  "title": "serverId",
3187
- "type": "default"
3790
+ "type": "string"
3188
3791
  }
3189
3792
  }
3190
3793
  ],
@@ -3213,12 +3816,12 @@
3213
3816
  "input": [
3214
3817
  {
3215
3818
  "name": "serviceId",
3216
- "type": "default",
3819
+ "type": "string",
3217
3820
  "info": "path parameter",
3218
3821
  "required": true,
3219
3822
  "schema": {
3220
3823
  "title": "serviceId",
3221
- "type": "default"
3824
+ "type": "string"
3222
3825
  }
3223
3826
  }
3224
3827
  ],
@@ -3247,12 +3850,12 @@
3247
3850
  "input": [
3248
3851
  {
3249
3852
  "name": "serviceId",
3250
- "type": "default",
3853
+ "type": "string",
3251
3854
  "info": "path parameter",
3252
3855
  "required": true,
3253
3856
  "schema": {
3254
3857
  "title": "serviceId",
3255
- "type": "default"
3858
+ "type": "string"
3256
3859
  }
3257
3860
  }
3258
3861
  ],
@@ -3405,12 +4008,12 @@
3405
4008
  },
3406
4009
  {
3407
4010
  "name": "applicationId",
3408
- "type": "default",
4011
+ "type": "string",
3409
4012
  "info": "path parameter",
3410
4013
  "required": true,
3411
4014
  "schema": {
3412
4015
  "title": "applicationId",
3413
- "type": "default"
4016
+ "type": "string"
3414
4017
  }
3415
4018
  }
3416
4019
  ],
@@ -3439,12 +4042,12 @@
3439
4042
  "input": [
3440
4043
  {
3441
4044
  "name": "applicationId",
3442
- "type": "default",
4045
+ "type": "string",
3443
4046
  "info": "path parameter",
3444
4047
  "required": true,
3445
4048
  "schema": {
3446
4049
  "title": "applicationId",
3447
- "type": "default"
4050
+ "type": "string"
3448
4051
  }
3449
4052
  }
3450
4053
  ],
@@ -3483,12 +4086,12 @@
3483
4086
  },
3484
4087
  {
3485
4088
  "name": "applicationId",
3486
- "type": "default",
4089
+ "type": "string",
3487
4090
  "info": "path parameter",
3488
4091
  "required": true,
3489
4092
  "schema": {
3490
4093
  "title": "applicationId",
3491
- "type": "default"
4094
+ "type": "string"
3492
4095
  }
3493
4096
  }
3494
4097
  ],
@@ -3517,22 +4120,22 @@
3517
4120
  "input": [
3518
4121
  {
3519
4122
  "name": "applicationId",
3520
- "type": "default",
4123
+ "type": "string",
3521
4124
  "info": "path parameter",
3522
4125
  "required": true,
3523
4126
  "schema": {
3524
4127
  "title": "applicationId",
3525
- "type": "default"
4128
+ "type": "string"
3526
4129
  }
3527
4130
  },
3528
4131
  {
3529
4132
  "name": "serviceId",
3530
- "type": "default",
4133
+ "type": "string",
3531
4134
  "info": "path parameter",
3532
4135
  "required": true,
3533
4136
  "schema": {
3534
4137
  "title": "serviceId",
3535
- "type": "default"
4138
+ "type": "string"
3536
4139
  }
3537
4140
  }
3538
4141
  ],
@@ -3561,22 +4164,22 @@
3561
4164
  "input": [
3562
4165
  {
3563
4166
  "name": "applicationId",
3564
- "type": "default",
4167
+ "type": "string",
3565
4168
  "info": "path parameter",
3566
4169
  "required": true,
3567
4170
  "schema": {
3568
4171
  "title": "applicationId",
3569
- "type": "default"
4172
+ "type": "string"
3570
4173
  }
3571
4174
  },
3572
4175
  {
3573
4176
  "name": "serviceId",
3574
- "type": "default",
4177
+ "type": "string",
3575
4178
  "info": "path parameter",
3576
4179
  "required": true,
3577
4180
  "schema": {
3578
4181
  "title": "serviceId",
3579
- "type": "default"
4182
+ "type": "string"
3580
4183
  }
3581
4184
  }
3582
4185
  ],
@@ -3662,12 +4265,12 @@
3662
4265
  "input": [
3663
4266
  {
3664
4267
  "name": "userId",
3665
- "type": "default",
4268
+ "type": "string",
3666
4269
  "info": "path parameter",
3667
4270
  "required": true,
3668
4271
  "schema": {
3669
4272
  "title": "userId",
3670
- "type": "default"
4273
+ "type": "string"
3671
4274
  }
3672
4275
  }
3673
4276
  ],
@@ -3696,12 +4299,12 @@
3696
4299
  "input": [
3697
4300
  {
3698
4301
  "name": "userId",
3699
- "type": "default",
4302
+ "type": "string",
3700
4303
  "info": "path parameter",
3701
4304
  "required": true,
3702
4305
  "schema": {
3703
4306
  "title": "userId",
3704
- "type": "default"
4307
+ "type": "string"
3705
4308
  }
3706
4309
  }
3707
4310
  ],
@@ -3730,12 +4333,12 @@
3730
4333
  "input": [
3731
4334
  {
3732
4335
  "name": "applicationId",
3733
- "type": "default",
4336
+ "type": "string",
3734
4337
  "info": "path parameter",
3735
4338
  "required": true,
3736
4339
  "schema": {
3737
4340
  "title": "applicationId",
3738
- "type": "default"
4341
+ "type": "string"
3739
4342
  }
3740
4343
  }
3741
4344
  ],
@@ -3764,12 +4367,12 @@
3764
4367
  "input": [
3765
4368
  {
3766
4369
  "name": "applicationId",
3767
- "type": "default",
4370
+ "type": "string",
3768
4371
  "info": "path parameter",
3769
4372
  "required": true,
3770
4373
  "schema": {
3771
4374
  "title": "applicationId",
3772
- "type": "default"
4375
+ "type": "string"
3773
4376
  }
3774
4377
  }
3775
4378
  ],
@@ -3808,12 +4411,12 @@
3808
4411
  },
3809
4412
  {
3810
4413
  "name": "applicationId",
3811
- "type": "default",
4414
+ "type": "string",
3812
4415
  "info": "path parameter",
3813
4416
  "required": true,
3814
4417
  "schema": {
3815
4418
  "title": "applicationId",
3816
- "type": "default"
4419
+ "type": "string"
3817
4420
  }
3818
4421
  }
3819
4422
  ],
@@ -3842,12 +4445,12 @@
3842
4445
  "input": [
3843
4446
  {
3844
4447
  "name": "applicationId",
3845
- "type": "default",
4448
+ "type": "string",
3846
4449
  "info": "path parameter",
3847
4450
  "required": true,
3848
4451
  "schema": {
3849
4452
  "title": "applicationId",
3850
- "type": "default"
4453
+ "type": "string"
3851
4454
  }
3852
4455
  }
3853
4456
  ],
@@ -3910,12 +4513,12 @@
3910
4513
  "input": [
3911
4514
  {
3912
4515
  "name": "applicationId",
3913
- "type": "default",
4516
+ "type": "string",
3914
4517
  "info": "path parameter",
3915
4518
  "required": true,
3916
4519
  "schema": {
3917
4520
  "title": "applicationId",
3918
- "type": "default"
4521
+ "type": "string"
3919
4522
  }
3920
4523
  }
3921
4524
  ],
@@ -3944,12 +4547,12 @@
3944
4547
  "input": [
3945
4548
  {
3946
4549
  "name": "applicationId",
3947
- "type": "default",
4550
+ "type": "string",
3948
4551
  "info": "path parameter",
3949
4552
  "required": true,
3950
4553
  "schema": {
3951
4554
  "title": "applicationId",
3952
- "type": "default"
4555
+ "type": "string"
3953
4556
  }
3954
4557
  }
3955
4558
  ],
@@ -4069,12 +4672,12 @@
4069
4672
  "input": [
4070
4673
  {
4071
4674
  "name": "applicationId",
4072
- "type": "default",
4675
+ "type": "string",
4073
4676
  "info": "path parameter",
4074
4677
  "required": true,
4075
4678
  "schema": {
4076
4679
  "title": "applicationId",
4077
- "type": "default"
4680
+ "type": "string"
4078
4681
  }
4079
4682
  }
4080
4683
  ],
@@ -4194,12 +4797,12 @@
4194
4797
  "input": [
4195
4798
  {
4196
4799
  "name": "customerId",
4197
- "type": "default",
4800
+ "type": "string",
4198
4801
  "info": "path parameter",
4199
4802
  "required": true,
4200
4803
  "schema": {
4201
4804
  "title": "customerId",
4202
- "type": "default"
4805
+ "type": "string"
4203
4806
  }
4204
4807
  }
4205
4808
  ],
@@ -4307,12 +4910,12 @@
4307
4910
  },
4308
4911
  {
4309
4912
  "name": "customerId",
4310
- "type": "default",
4913
+ "type": "string",
4311
4914
  "info": "path parameter",
4312
4915
  "required": true,
4313
4916
  "schema": {
4314
4917
  "title": "customerId",
4315
- "type": "default"
4918
+ "type": "string"
4316
4919
  }
4317
4920
  }
4318
4921
  ],
@@ -4341,12 +4944,12 @@
4341
4944
  "input": [
4342
4945
  {
4343
4946
  "name": "customerId",
4344
- "type": "default",
4947
+ "type": "string",
4345
4948
  "info": "path parameter",
4346
4949
  "required": true,
4347
4950
  "schema": {
4348
4951
  "title": "customerId",
4349
- "type": "default"
4952
+ "type": "string"
4350
4953
  }
4351
4954
  }
4352
4955
  ],
@@ -4466,12 +5069,12 @@
4466
5069
  "input": [
4467
5070
  {
4468
5071
  "name": "domainId",
4469
- "type": "default",
5072
+ "type": "string",
4470
5073
  "info": "path parameter",
4471
5074
  "required": true,
4472
5075
  "schema": {
4473
5076
  "title": "domainId",
4474
- "type": "default"
5077
+ "type": "string"
4475
5078
  }
4476
5079
  }
4477
5080
  ],
@@ -4647,22 +5250,22 @@
4647
5250
  },
4648
5251
  {
4649
5252
  "name": "id",
4650
- "type": "default",
5253
+ "type": "string",
4651
5254
  "info": "path parameter",
4652
5255
  "required": true,
4653
5256
  "schema": {
4654
5257
  "title": "id",
4655
- "type": "default"
5258
+ "type": "string"
4656
5259
  }
4657
5260
  },
4658
5261
  {
4659
5262
  "name": "taskId",
4660
- "type": "default",
5263
+ "type": "string",
4661
5264
  "info": "path parameter",
4662
5265
  "required": true,
4663
5266
  "schema": {
4664
5267
  "title": "taskId",
4665
- "type": "default"
5268
+ "type": "string"
4666
5269
  }
4667
5270
  }
4668
5271
  ],
@@ -4701,22 +5304,22 @@
4701
5304
  },
4702
5305
  {
4703
5306
  "name": "id",
4704
- "type": "default",
5307
+ "type": "string",
4705
5308
  "info": "path parameter",
4706
5309
  "required": true,
4707
5310
  "schema": {
4708
5311
  "title": "id",
4709
- "type": "default"
5312
+ "type": "string"
4710
5313
  }
4711
5314
  },
4712
5315
  {
4713
5316
  "name": "taskId",
4714
- "type": "default",
5317
+ "type": "string",
4715
5318
  "info": "path parameter",
4716
5319
  "required": true,
4717
5320
  "schema": {
4718
5321
  "title": "taskId",
4719
- "type": "default"
5322
+ "type": "string"
4720
5323
  }
4721
5324
  }
4722
5325
  ],
@@ -4745,42 +5348,42 @@
4745
5348
  "input": [
4746
5349
  {
4747
5350
  "name": "id",
4748
- "type": "default",
5351
+ "type": "string",
4749
5352
  "info": "path parameter",
4750
5353
  "required": true,
4751
5354
  "schema": {
4752
5355
  "title": "id",
4753
- "type": "default"
5356
+ "type": "string"
4754
5357
  }
4755
5358
  },
4756
5359
  {
4757
5360
  "name": "stepId",
4758
- "type": "default",
5361
+ "type": "string",
4759
5362
  "info": "path parameter",
4760
5363
  "required": true,
4761
5364
  "schema": {
4762
5365
  "title": "stepId",
4763
- "type": "default"
5366
+ "type": "string"
4764
5367
  }
4765
5368
  },
4766
5369
  {
4767
5370
  "name": "taskId",
4768
- "type": "default",
5371
+ "type": "string",
4769
5372
  "info": "path parameter",
4770
5373
  "required": true,
4771
5374
  "schema": {
4772
5375
  "title": "taskId",
4773
- "type": "default"
5376
+ "type": "string"
4774
5377
  }
4775
5378
  },
4776
5379
  {
4777
5380
  "name": "fieldId",
4778
- "type": "default",
5381
+ "type": "string",
4779
5382
  "info": "path parameter",
4780
5383
  "required": true,
4781
5384
  "schema": {
4782
5385
  "title": "fieldId",
4783
- "type": "default"
5386
+ "type": "string"
4784
5387
  }
4785
5388
  }
4786
5389
  ],
@@ -4809,42 +5412,42 @@
4809
5412
  "input": [
4810
5413
  {
4811
5414
  "name": "id",
4812
- "type": "default",
5415
+ "type": "string",
4813
5416
  "info": "path parameter",
4814
5417
  "required": true,
4815
5418
  "schema": {
4816
5419
  "title": "id",
4817
- "type": "default"
5420
+ "type": "string"
4818
5421
  }
4819
5422
  },
4820
5423
  {
4821
5424
  "name": "stepId",
4822
- "type": "default",
5425
+ "type": "string",
4823
5426
  "info": "path parameter",
4824
5427
  "required": true,
4825
5428
  "schema": {
4826
5429
  "title": "stepId",
4827
- "type": "default"
5430
+ "type": "string"
4828
5431
  }
4829
5432
  },
4830
5433
  {
4831
5434
  "name": "taskId",
4832
- "type": "default",
5435
+ "type": "string",
4833
5436
  "info": "path parameter",
4834
5437
  "required": true,
4835
5438
  "schema": {
4836
5439
  "title": "taskId",
4837
- "type": "default"
5440
+ "type": "string"
4838
5441
  }
4839
5442
  },
4840
5443
  {
4841
5444
  "name": "fieldId",
4842
- "type": "default",
5445
+ "type": "string",
4843
5446
  "info": "path parameter",
4844
5447
  "required": true,
4845
5448
  "schema": {
4846
5449
  "title": "fieldId",
4847
- "type": "default"
5450
+ "type": "string"
4848
5451
  }
4849
5452
  }
4850
5453
  ],
@@ -4883,22 +5486,22 @@
4883
5486
  },
4884
5487
  {
4885
5488
  "name": "id",
4886
- "type": "default",
5489
+ "type": "string",
4887
5490
  "info": "path parameter",
4888
5491
  "required": true,
4889
5492
  "schema": {
4890
5493
  "title": "id",
4891
- "type": "default"
5494
+ "type": "string"
4892
5495
  }
4893
5496
  },
4894
5497
  {
4895
5498
  "name": "taskId",
4896
- "type": "default",
5499
+ "type": "string",
4897
5500
  "info": "path parameter",
4898
5501
  "required": true,
4899
5502
  "schema": {
4900
5503
  "title": "taskId",
4901
- "type": "default"
5504
+ "type": "string"
4902
5505
  }
4903
5506
  }
4904
5507
  ],
@@ -4927,42 +5530,42 @@
4927
5530
  "input": [
4928
5531
  {
4929
5532
  "name": "id",
4930
- "type": "default",
5533
+ "type": "string",
4931
5534
  "info": "path parameter",
4932
5535
  "required": true,
4933
5536
  "schema": {
4934
5537
  "title": "id",
4935
- "type": "default"
5538
+ "type": "string"
4936
5539
  }
4937
5540
  },
4938
5541
  {
4939
5542
  "name": "stepId",
4940
- "type": "default",
5543
+ "type": "string",
4941
5544
  "info": "path parameter",
4942
5545
  "required": true,
4943
5546
  "schema": {
4944
5547
  "title": "stepId",
4945
- "type": "default"
5548
+ "type": "string"
4946
5549
  }
4947
5550
  },
4948
5551
  {
4949
5552
  "name": "taskId",
4950
- "type": "default",
5553
+ "type": "string",
4951
5554
  "info": "path parameter",
4952
5555
  "required": true,
4953
5556
  "schema": {
4954
5557
  "title": "taskId",
4955
- "type": "default"
5558
+ "type": "string"
4956
5559
  }
4957
5560
  },
4958
5561
  {
4959
5562
  "name": "fieldId",
4960
- "type": "default",
5563
+ "type": "string",
4961
5564
  "info": "path parameter",
4962
5565
  "required": true,
4963
5566
  "schema": {
4964
5567
  "title": "fieldId",
4965
- "type": "default"
5568
+ "type": "string"
4966
5569
  }
4967
5570
  }
4968
5571
  ],
@@ -5105,12 +5708,12 @@
5105
5708
  "input": [
5106
5709
  {
5107
5710
  "name": "id",
5108
- "type": "default",
5711
+ "type": "string",
5109
5712
  "info": "path parameter",
5110
5713
  "required": true,
5111
5714
  "schema": {
5112
5715
  "title": "id",
5113
- "type": "default"
5716
+ "type": "string"
5114
5717
  }
5115
5718
  }
5116
5719
  ],
@@ -5139,12 +5742,12 @@
5139
5742
  "input": [
5140
5743
  {
5141
5744
  "name": "id",
5142
- "type": "default",
5745
+ "type": "string",
5143
5746
  "info": "path parameter",
5144
5747
  "required": true,
5145
5748
  "schema": {
5146
5749
  "title": "id",
5147
- "type": "default"
5750
+ "type": "string"
5148
5751
  }
5149
5752
  }
5150
5753
  ],
@@ -5183,12 +5786,12 @@
5183
5786
  },
5184
5787
  {
5185
5788
  "name": "id",
5186
- "type": "default",
5789
+ "type": "string",
5187
5790
  "info": "path parameter",
5188
5791
  "required": true,
5189
5792
  "schema": {
5190
5793
  "title": "id",
5191
- "type": "default"
5794
+ "type": "string"
5192
5795
  }
5193
5796
  }
5194
5797
  ],
@@ -5227,12 +5830,12 @@
5227
5830
  },
5228
5831
  {
5229
5832
  "name": "id",
5230
- "type": "default",
5833
+ "type": "string",
5231
5834
  "info": "path parameter",
5232
5835
  "required": true,
5233
5836
  "schema": {
5234
5837
  "title": "id",
5235
- "type": "default"
5838
+ "type": "string"
5236
5839
  }
5237
5840
  }
5238
5841
  ],
@@ -5271,12 +5874,12 @@
5271
5874
  },
5272
5875
  {
5273
5876
  "name": "id",
5274
- "type": "default",
5877
+ "type": "string",
5275
5878
  "info": "path parameter",
5276
5879
  "required": true,
5277
5880
  "schema": {
5278
5881
  "title": "id",
5279
- "type": "default"
5882
+ "type": "string"
5280
5883
  }
5281
5884
  }
5282
5885
  ],
@@ -5315,42 +5918,42 @@
5315
5918
  },
5316
5919
  {
5317
5920
  "name": "id",
5318
- "type": "default",
5921
+ "type": "string",
5319
5922
  "info": "path parameter",
5320
5923
  "required": true,
5321
5924
  "schema": {
5322
5925
  "title": "id",
5323
- "type": "default"
5926
+ "type": "string"
5324
5927
  }
5325
5928
  },
5326
5929
  {
5327
5930
  "name": "stepId",
5328
- "type": "default",
5931
+ "type": "string",
5329
5932
  "info": "path parameter",
5330
5933
  "required": true,
5331
5934
  "schema": {
5332
5935
  "title": "stepId",
5333
- "type": "default"
5936
+ "type": "string"
5334
5937
  }
5335
5938
  },
5336
5939
  {
5337
5940
  "name": "taskId",
5338
- "type": "default",
5941
+ "type": "string",
5339
5942
  "info": "path parameter",
5340
5943
  "required": true,
5341
5944
  "schema": {
5342
5945
  "title": "taskId",
5343
- "type": "default"
5946
+ "type": "string"
5344
5947
  }
5345
5948
  },
5346
5949
  {
5347
5950
  "name": "toStepId",
5348
- "type": "default",
5951
+ "type": "string",
5349
5952
  "info": "path parameter",
5350
5953
  "required": true,
5351
5954
  "schema": {
5352
5955
  "title": "toStepId",
5353
- "type": "default"
5956
+ "type": "string"
5354
5957
  }
5355
5958
  }
5356
5959
  ],
@@ -5389,12 +5992,12 @@
5389
5992
  },
5390
5993
  {
5391
5994
  "name": "id",
5392
- "type": "default",
5995
+ "type": "string",
5393
5996
  "info": "path parameter",
5394
5997
  "required": true,
5395
5998
  "schema": {
5396
5999
  "title": "id",
5397
- "type": "default"
6000
+ "type": "string"
5398
6001
  }
5399
6002
  }
5400
6003
  ],
@@ -5433,42 +6036,42 @@
5433
6036
  },
5434
6037
  {
5435
6038
  "name": "id",
5436
- "type": "default",
6039
+ "type": "string",
5437
6040
  "info": "path parameter",
5438
6041
  "required": true,
5439
6042
  "schema": {
5440
6043
  "title": "id",
5441
- "type": "default"
6044
+ "type": "string"
5442
6045
  }
5443
6046
  },
5444
6047
  {
5445
6048
  "name": "stepId",
5446
- "type": "default",
6049
+ "type": "string",
5447
6050
  "info": "path parameter",
5448
6051
  "required": true,
5449
6052
  "schema": {
5450
6053
  "title": "stepId",
5451
- "type": "default"
6054
+ "type": "string"
5452
6055
  }
5453
6056
  },
5454
6057
  {
5455
6058
  "name": "taskId",
5456
- "type": "default",
6059
+ "type": "string",
5457
6060
  "info": "path parameter",
5458
6061
  "required": true,
5459
6062
  "schema": {
5460
6063
  "title": "taskId",
5461
- "type": "default"
6064
+ "type": "string"
5462
6065
  }
5463
6066
  },
5464
6067
  {
5465
6068
  "name": "assigneeId",
5466
- "type": "default",
6069
+ "type": "string",
5467
6070
  "info": "path parameter",
5468
6071
  "required": true,
5469
6072
  "schema": {
5470
6073
  "title": "assigneeId",
5471
- "type": "default"
6074
+ "type": "string"
5472
6075
  }
5473
6076
  }
5474
6077
  ],
@@ -5507,22 +6110,22 @@
5507
6110
  },
5508
6111
  {
5509
6112
  "name": "id",
5510
- "type": "default",
6113
+ "type": "string",
5511
6114
  "info": "path parameter",
5512
6115
  "required": true,
5513
6116
  "schema": {
5514
6117
  "title": "id",
5515
- "type": "default"
6118
+ "type": "string"
5516
6119
  }
5517
6120
  },
5518
6121
  {
5519
6122
  "name": "assigneeId",
5520
- "type": "default",
6123
+ "type": "string",
5521
6124
  "info": "path parameter",
5522
6125
  "required": true,
5523
6126
  "schema": {
5524
6127
  "title": "assigneeId",
5525
- "type": "default"
6128
+ "type": "string"
5526
6129
  }
5527
6130
  }
5528
6131
  ],
@@ -5574,52 +6177,52 @@
5574
6177
  "input": [
5575
6178
  {
5576
6179
  "name": "id",
5577
- "type": "default",
6180
+ "type": "string",
5578
6181
  "info": "path parameter",
5579
6182
  "required": true,
5580
6183
  "schema": {
5581
6184
  "title": "id",
5582
- "type": "default"
6185
+ "type": "string"
5583
6186
  }
5584
6187
  },
5585
6188
  {
5586
6189
  "name": "stepId",
5587
- "type": "default",
6190
+ "type": "string",
5588
6191
  "info": "path parameter",
5589
6192
  "required": true,
5590
6193
  "schema": {
5591
6194
  "title": "stepId",
5592
- "type": "default"
6195
+ "type": "string"
5593
6196
  }
5594
6197
  },
5595
6198
  {
5596
6199
  "name": "taskId",
5597
- "type": "default",
6200
+ "type": "string",
5598
6201
  "info": "path parameter",
5599
6202
  "required": true,
5600
6203
  "schema": {
5601
6204
  "title": "taskId",
5602
- "type": "default"
6205
+ "type": "string"
5603
6206
  }
5604
6207
  },
5605
6208
  {
5606
6209
  "name": "fieldId",
5607
- "type": "default",
6210
+ "type": "string",
5608
6211
  "info": "path parameter",
5609
6212
  "required": true,
5610
6213
  "schema": {
5611
6214
  "title": "fieldId",
5612
- "type": "default"
6215
+ "type": "string"
5613
6216
  }
5614
6217
  },
5615
6218
  {
5616
6219
  "name": "deviceId",
5617
- "type": "default",
6220
+ "type": "string",
5618
6221
  "info": "path parameter",
5619
6222
  "required": true,
5620
6223
  "schema": {
5621
6224
  "title": "deviceId",
5622
- "type": "default"
6225
+ "type": "string"
5623
6226
  }
5624
6227
  }
5625
6228
  ],
@@ -5648,42 +6251,42 @@
5648
6251
  "input": [
5649
6252
  {
5650
6253
  "name": "id",
5651
- "type": "default",
6254
+ "type": "string",
5652
6255
  "info": "path parameter",
5653
6256
  "required": true,
5654
6257
  "schema": {
5655
6258
  "title": "id",
5656
- "type": "default"
6259
+ "type": "string"
5657
6260
  }
5658
6261
  },
5659
6262
  {
5660
6263
  "name": "stepId",
5661
- "type": "default",
6264
+ "type": "string",
5662
6265
  "info": "path parameter",
5663
6266
  "required": true,
5664
6267
  "schema": {
5665
6268
  "title": "stepId",
5666
- "type": "default"
6269
+ "type": "string"
5667
6270
  }
5668
6271
  },
5669
6272
  {
5670
6273
  "name": "taskId",
5671
- "type": "default",
6274
+ "type": "string",
5672
6275
  "info": "path parameter",
5673
6276
  "required": true,
5674
6277
  "schema": {
5675
6278
  "title": "taskId",
5676
- "type": "default"
6279
+ "type": "string"
5677
6280
  }
5678
6281
  },
5679
6282
  {
5680
6283
  "name": "fieldId",
5681
- "type": "default",
6284
+ "type": "string",
5682
6285
  "info": "path parameter",
5683
6286
  "required": true,
5684
6287
  "schema": {
5685
6288
  "title": "fieldId",
5686
- "type": "default"
6289
+ "type": "string"
5687
6290
  }
5688
6291
  }
5689
6292
  ],
@@ -5722,22 +6325,22 @@
5722
6325
  },
5723
6326
  {
5724
6327
  "name": "id",
5725
- "type": "default",
6328
+ "type": "string",
5726
6329
  "info": "path parameter",
5727
6330
  "required": true,
5728
6331
  "schema": {
5729
6332
  "title": "id",
5730
- "type": "default"
6333
+ "type": "string"
5731
6334
  }
5732
6335
  },
5733
6336
  {
5734
6337
  "name": "taskId",
5735
- "type": "default",
6338
+ "type": "string",
5736
6339
  "info": "path parameter",
5737
6340
  "required": true,
5738
6341
  "schema": {
5739
6342
  "title": "taskId",
5740
- "type": "default"
6343
+ "type": "string"
5741
6344
  }
5742
6345
  }
5743
6346
  ],
@@ -5776,32 +6379,32 @@
5776
6379
  },
5777
6380
  {
5778
6381
  "name": "id",
5779
- "type": "default",
6382
+ "type": "string",
5780
6383
  "info": "path parameter",
5781
6384
  "required": true,
5782
6385
  "schema": {
5783
6386
  "title": "id",
5784
- "type": "default"
6387
+ "type": "string"
5785
6388
  }
5786
6389
  },
5787
6390
  {
5788
6391
  "name": "taskId",
5789
- "type": "default",
6392
+ "type": "string",
5790
6393
  "info": "path parameter",
5791
6394
  "required": true,
5792
6395
  "schema": {
5793
6396
  "title": "taskId",
5794
- "type": "default"
6397
+ "type": "string"
5795
6398
  }
5796
6399
  },
5797
6400
  {
5798
6401
  "name": "instructionId",
5799
- "type": "default",
6402
+ "type": "string",
5800
6403
  "info": "path parameter",
5801
6404
  "required": true,
5802
6405
  "schema": {
5803
6406
  "title": "instructionId",
5804
- "type": "default"
6407
+ "type": "string"
5805
6408
  }
5806
6409
  }
5807
6410
  ],
@@ -5830,12 +6433,12 @@
5830
6433
  "input": [
5831
6434
  {
5832
6435
  "name": "id",
5833
- "type": "default",
6436
+ "type": "string",
5834
6437
  "info": "path parameter",
5835
6438
  "required": true,
5836
6439
  "schema": {
5837
6440
  "title": "id",
5838
- "type": "default"
6441
+ "type": "string"
5839
6442
  }
5840
6443
  }
5841
6444
  ],
@@ -5874,22 +6477,22 @@
5874
6477
  },
5875
6478
  {
5876
6479
  "name": "id",
5877
- "type": "default",
6480
+ "type": "string",
5878
6481
  "info": "path parameter",
5879
6482
  "required": true,
5880
6483
  "schema": {
5881
6484
  "title": "id",
5882
- "type": "default"
6485
+ "type": "string"
5883
6486
  }
5884
6487
  },
5885
6488
  {
5886
6489
  "name": "taskId",
5887
- "type": "default",
6490
+ "type": "string",
5888
6491
  "info": "path parameter",
5889
6492
  "required": true,
5890
6493
  "schema": {
5891
6494
  "title": "taskId",
5892
- "type": "default"
6495
+ "type": "string"
5893
6496
  }
5894
6497
  }
5895
6498
  ],
@@ -5918,22 +6521,22 @@
5918
6521
  "input": [
5919
6522
  {
5920
6523
  "name": "id",
5921
- "type": "default",
6524
+ "type": "string",
5922
6525
  "info": "path parameter",
5923
6526
  "required": true,
5924
6527
  "schema": {
5925
6528
  "title": "id",
5926
- "type": "default"
6529
+ "type": "string"
5927
6530
  }
5928
6531
  },
5929
6532
  {
5930
6533
  "name": "stepId",
5931
- "type": "default",
6534
+ "type": "string",
5932
6535
  "info": "path parameter",
5933
6536
  "required": true,
5934
6537
  "schema": {
5935
6538
  "title": "stepId",
5936
- "type": "default"
6539
+ "type": "string"
5937
6540
  }
5938
6541
  }
5939
6542
  ],
@@ -5985,42 +6588,42 @@
5985
6588
  "input": [
5986
6589
  {
5987
6590
  "name": "id",
5988
- "type": "default",
6591
+ "type": "string",
5989
6592
  "info": "path parameter",
5990
6593
  "required": true,
5991
6594
  "schema": {
5992
6595
  "title": "id",
5993
- "type": "default"
6596
+ "type": "string"
5994
6597
  }
5995
6598
  },
5996
6599
  {
5997
6600
  "name": "stepId",
5998
- "type": "default",
6601
+ "type": "string",
5999
6602
  "info": "path parameter",
6000
6603
  "required": true,
6001
6604
  "schema": {
6002
6605
  "title": "stepId",
6003
- "type": "default"
6606
+ "type": "string"
6004
6607
  }
6005
6608
  },
6006
6609
  {
6007
6610
  "name": "taskId",
6008
- "type": "default",
6611
+ "type": "string",
6009
6612
  "info": "path parameter",
6010
6613
  "required": true,
6011
6614
  "schema": {
6012
6615
  "title": "taskId",
6013
- "type": "default"
6616
+ "type": "string"
6014
6617
  }
6015
6618
  },
6016
6619
  {
6017
6620
  "name": "fieldId",
6018
- "type": "default",
6621
+ "type": "string",
6019
6622
  "info": "path parameter",
6020
6623
  "required": true,
6021
6624
  "schema": {
6022
6625
  "title": "fieldId",
6023
- "type": "default"
6626
+ "type": "string"
6024
6627
  }
6025
6628
  }
6026
6629
  ],
@@ -6049,22 +6652,22 @@
6049
6652
  "input": [
6050
6653
  {
6051
6654
  "name": "id",
6052
- "type": "default",
6655
+ "type": "string",
6053
6656
  "info": "path parameter",
6054
6657
  "required": true,
6055
6658
  "schema": {
6056
6659
  "title": "id",
6057
- "type": "default"
6660
+ "type": "string"
6058
6661
  }
6059
6662
  },
6060
6663
  {
6061
6664
  "name": "stepId",
6062
- "type": "default",
6665
+ "type": "string",
6063
6666
  "info": "path parameter",
6064
6667
  "required": true,
6065
6668
  "schema": {
6066
6669
  "title": "stepId",
6067
- "type": "default"
6670
+ "type": "string"
6068
6671
  }
6069
6672
  }
6070
6673
  ],
@@ -6093,12 +6696,12 @@
6093
6696
  "input": [
6094
6697
  {
6095
6698
  "name": "id",
6096
- "type": "default",
6699
+ "type": "string",
6097
6700
  "info": "path parameter",
6098
6701
  "required": true,
6099
6702
  "schema": {
6100
6703
  "title": "id",
6101
- "type": "default"
6704
+ "type": "string"
6102
6705
  }
6103
6706
  }
6104
6707
  ],
@@ -6137,32 +6740,32 @@
6137
6740
  },
6138
6741
  {
6139
6742
  "name": "id",
6140
- "type": "default",
6743
+ "type": "string",
6141
6744
  "info": "path parameter",
6142
6745
  "required": true,
6143
6746
  "schema": {
6144
6747
  "title": "id",
6145
- "type": "default"
6748
+ "type": "string"
6146
6749
  }
6147
6750
  },
6148
6751
  {
6149
6752
  "name": "taskId",
6150
- "type": "default",
6753
+ "type": "string",
6151
6754
  "info": "path parameter",
6152
6755
  "required": true,
6153
6756
  "schema": {
6154
6757
  "title": "taskId",
6155
- "type": "default"
6758
+ "type": "string"
6156
6759
  }
6157
6760
  },
6158
6761
  {
6159
6762
  "name": "fieldId",
6160
- "type": "default",
6763
+ "type": "string",
6161
6764
  "info": "path parameter",
6162
6765
  "required": true,
6163
6766
  "schema": {
6164
6767
  "title": "fieldId",
6165
- "type": "default"
6768
+ "type": "string"
6166
6769
  }
6167
6770
  }
6168
6771
  ],
@@ -6191,52 +6794,52 @@
6191
6794
  "input": [
6192
6795
  {
6193
6796
  "name": "id",
6194
- "type": "default",
6797
+ "type": "string",
6195
6798
  "info": "path parameter",
6196
6799
  "required": true,
6197
6800
  "schema": {
6198
6801
  "title": "id",
6199
- "type": "default"
6802
+ "type": "string"
6200
6803
  }
6201
6804
  },
6202
6805
  {
6203
6806
  "name": "stepId",
6204
- "type": "default",
6807
+ "type": "string",
6205
6808
  "info": "path parameter",
6206
6809
  "required": true,
6207
6810
  "schema": {
6208
6811
  "title": "stepId",
6209
- "type": "default"
6812
+ "type": "string"
6210
6813
  }
6211
6814
  },
6212
6815
  {
6213
6816
  "name": "taskId",
6214
- "type": "default",
6817
+ "type": "string",
6215
6818
  "info": "path parameter",
6216
6819
  "required": true,
6217
6820
  "schema": {
6218
6821
  "title": "taskId",
6219
- "type": "default"
6822
+ "type": "string"
6220
6823
  }
6221
6824
  },
6222
6825
  {
6223
6826
  "name": "fieldId",
6224
- "type": "default",
6827
+ "type": "string",
6225
6828
  "info": "path parameter",
6226
6829
  "required": true,
6227
6830
  "schema": {
6228
6831
  "title": "fieldId",
6229
- "type": "default"
6832
+ "type": "string"
6230
6833
  }
6231
6834
  },
6232
6835
  {
6233
6836
  "name": "managementId",
6234
- "type": "default",
6837
+ "type": "string",
6235
6838
  "info": "path parameter",
6236
6839
  "required": true,
6237
6840
  "schema": {
6238
6841
  "title": "managementId",
6239
- "type": "default"
6842
+ "type": "string"
6240
6843
  }
6241
6844
  }
6242
6845
  ],
@@ -6265,32 +6868,32 @@
6265
6868
  "input": [
6266
6869
  {
6267
6870
  "name": "id",
6268
- "type": "default",
6871
+ "type": "string",
6269
6872
  "info": "path parameter",
6270
6873
  "required": true,
6271
6874
  "schema": {
6272
6875
  "title": "id",
6273
- "type": "default"
6876
+ "type": "string"
6274
6877
  }
6275
6878
  },
6276
6879
  {
6277
6880
  "name": "stepId",
6278
- "type": "default",
6881
+ "type": "string",
6279
6882
  "info": "path parameter",
6280
6883
  "required": true,
6281
6884
  "schema": {
6282
6885
  "title": "stepId",
6283
- "type": "default"
6886
+ "type": "string"
6284
6887
  }
6285
6888
  },
6286
6889
  {
6287
6890
  "name": "taskId",
6288
- "type": "default",
6891
+ "type": "string",
6289
6892
  "info": "path parameter",
6290
6893
  "required": true,
6291
6894
  "schema": {
6292
6895
  "title": "taskId",
6293
- "type": "default"
6896
+ "type": "string"
6294
6897
  }
6295
6898
  }
6296
6899
  ],
@@ -6319,32 +6922,32 @@
6319
6922
  "input": [
6320
6923
  {
6321
6924
  "name": "id",
6322
- "type": "default",
6925
+ "type": "string",
6323
6926
  "info": "path parameter",
6324
6927
  "required": true,
6325
6928
  "schema": {
6326
6929
  "title": "id",
6327
- "type": "default"
6930
+ "type": "string"
6328
6931
  }
6329
6932
  },
6330
6933
  {
6331
6934
  "name": "stepId",
6332
- "type": "default",
6935
+ "type": "string",
6333
6936
  "info": "path parameter",
6334
6937
  "required": true,
6335
6938
  "schema": {
6336
6939
  "title": "stepId",
6337
- "type": "default"
6940
+ "type": "string"
6338
6941
  }
6339
6942
  },
6340
6943
  {
6341
6944
  "name": "taskId",
6342
- "type": "default",
6945
+ "type": "string",
6343
6946
  "info": "path parameter",
6344
6947
  "required": true,
6345
6948
  "schema": {
6346
6949
  "title": "taskId",
6347
- "type": "default"
6950
+ "type": "string"
6348
6951
  }
6349
6952
  }
6350
6953
  ],
@@ -6383,32 +6986,32 @@
6383
6986
  },
6384
6987
  {
6385
6988
  "name": "id",
6386
- "type": "default",
6989
+ "type": "string",
6387
6990
  "info": "path parameter",
6388
6991
  "required": true,
6389
6992
  "schema": {
6390
6993
  "title": "id",
6391
- "type": "default"
6994
+ "type": "string"
6392
6995
  }
6393
6996
  },
6394
6997
  {
6395
6998
  "name": "stepId",
6396
- "type": "default",
6999
+ "type": "string",
6397
7000
  "info": "path parameter",
6398
7001
  "required": true,
6399
7002
  "schema": {
6400
7003
  "title": "stepId",
6401
- "type": "default"
7004
+ "type": "string"
6402
7005
  }
6403
7006
  },
6404
7007
  {
6405
7008
  "name": "taskId",
6406
- "type": "default",
7009
+ "type": "string",
6407
7010
  "info": "path parameter",
6408
7011
  "required": true,
6409
7012
  "schema": {
6410
7013
  "title": "taskId",
6411
- "type": "default"
7014
+ "type": "string"
6412
7015
  }
6413
7016
  }
6414
7017
  ],
@@ -6437,42 +7040,42 @@
6437
7040
  "input": [
6438
7041
  {
6439
7042
  "name": "id",
6440
- "type": "default",
7043
+ "type": "string",
6441
7044
  "info": "path parameter",
6442
7045
  "required": true,
6443
7046
  "schema": {
6444
7047
  "title": "id",
6445
- "type": "default"
7048
+ "type": "string"
6446
7049
  }
6447
7050
  },
6448
7051
  {
6449
7052
  "name": "stepId",
6450
- "type": "default",
7053
+ "type": "string",
6451
7054
  "info": "path parameter",
6452
7055
  "required": true,
6453
7056
  "schema": {
6454
7057
  "title": "stepId",
6455
- "type": "default"
7058
+ "type": "string"
6456
7059
  }
6457
7060
  },
6458
7061
  {
6459
7062
  "name": "taskId",
6460
- "type": "default",
7063
+ "type": "string",
6461
7064
  "info": "path parameter",
6462
7065
  "required": true,
6463
7066
  "schema": {
6464
7067
  "title": "taskId",
6465
- "type": "default"
7068
+ "type": "string"
6466
7069
  }
6467
7070
  },
6468
7071
  {
6469
7072
  "name": "fieldId",
6470
- "type": "default",
7073
+ "type": "string",
6471
7074
  "info": "path parameter",
6472
7075
  "required": true,
6473
7076
  "schema": {
6474
7077
  "title": "fieldId",
6475
- "type": "default"
7078
+ "type": "string"
6476
7079
  }
6477
7080
  }
6478
7081
  ],
@@ -6511,32 +7114,32 @@
6511
7114
  },
6512
7115
  {
6513
7116
  "name": "id",
6514
- "type": "default",
7117
+ "type": "string",
6515
7118
  "info": "path parameter",
6516
7119
  "required": true,
6517
7120
  "schema": {
6518
7121
  "title": "id",
6519
- "type": "default"
7122
+ "type": "string"
6520
7123
  }
6521
7124
  },
6522
7125
  {
6523
7126
  "name": "stepId",
6524
- "type": "default",
7127
+ "type": "string",
6525
7128
  "info": "path parameter",
6526
7129
  "required": true,
6527
7130
  "schema": {
6528
7131
  "title": "stepId",
6529
- "type": "default"
7132
+ "type": "string"
6530
7133
  }
6531
7134
  },
6532
7135
  {
6533
7136
  "name": "taskId",
6534
- "type": "default",
7137
+ "type": "string",
6535
7138
  "info": "path parameter",
6536
7139
  "required": true,
6537
7140
  "schema": {
6538
7141
  "title": "taskId",
6539
- "type": "default"
7142
+ "type": "string"
6540
7143
  }
6541
7144
  }
6542
7145
  ],
@@ -6565,32 +7168,32 @@
6565
7168
  "input": [
6566
7169
  {
6567
7170
  "name": "id",
6568
- "type": "default",
7171
+ "type": "string",
6569
7172
  "info": "path parameter",
6570
7173
  "required": true,
6571
7174
  "schema": {
6572
7175
  "title": "id",
6573
- "type": "default"
7176
+ "type": "string"
6574
7177
  }
6575
7178
  },
6576
7179
  {
6577
7180
  "name": "stepId",
6578
- "type": "default",
7181
+ "type": "string",
6579
7182
  "info": "path parameter",
6580
7183
  "required": true,
6581
7184
  "schema": {
6582
7185
  "title": "stepId",
6583
- "type": "default"
7186
+ "type": "string"
6584
7187
  }
6585
7188
  },
6586
7189
  {
6587
7190
  "name": "taskId",
6588
- "type": "default",
7191
+ "type": "string",
6589
7192
  "info": "path parameter",
6590
7193
  "required": true,
6591
7194
  "schema": {
6592
7195
  "title": "taskId",
6593
- "type": "default"
7196
+ "type": "string"
6594
7197
  }
6595
7198
  }
6596
7199
  ],
@@ -6686,42 +7289,42 @@
6686
7289
  },
6687
7290
  {
6688
7291
  "name": "id",
6689
- "type": "default",
7292
+ "type": "string",
6690
7293
  "info": "path parameter",
6691
7294
  "required": true,
6692
7295
  "schema": {
6693
7296
  "title": "id",
6694
- "type": "default"
7297
+ "type": "string"
6695
7298
  }
6696
7299
  },
6697
7300
  {
6698
7301
  "name": "stepId",
6699
- "type": "default",
7302
+ "type": "string",
6700
7303
  "info": "path parameter",
6701
7304
  "required": true,
6702
7305
  "schema": {
6703
7306
  "title": "stepId",
6704
- "type": "default"
7307
+ "type": "string"
6705
7308
  }
6706
7309
  },
6707
7310
  {
6708
7311
  "name": "taskId",
6709
- "type": "default",
7312
+ "type": "string",
6710
7313
  "info": "path parameter",
6711
7314
  "required": true,
6712
7315
  "schema": {
6713
7316
  "title": "taskId",
6714
- "type": "default"
7317
+ "type": "string"
6715
7318
  }
6716
7319
  },
6717
7320
  {
6718
7321
  "name": "fieldId",
6719
- "type": "default",
7322
+ "type": "string",
6720
7323
  "info": "path parameter",
6721
7324
  "required": true,
6722
7325
  "schema": {
6723
7326
  "title": "fieldId",
6724
- "type": "default"
7327
+ "type": "string"
6725
7328
  }
6726
7329
  }
6727
7330
  ],
@@ -6750,42 +7353,42 @@
6750
7353
  "input": [
6751
7354
  {
6752
7355
  "name": "id",
6753
- "type": "default",
7356
+ "type": "string",
6754
7357
  "info": "path parameter",
6755
7358
  "required": true,
6756
7359
  "schema": {
6757
7360
  "title": "id",
6758
- "type": "default"
7361
+ "type": "string"
6759
7362
  }
6760
7363
  },
6761
7364
  {
6762
7365
  "name": "stepId",
6763
- "type": "default",
7366
+ "type": "string",
6764
7367
  "info": "path parameter",
6765
7368
  "required": true,
6766
7369
  "schema": {
6767
7370
  "title": "stepId",
6768
- "type": "default"
7371
+ "type": "string"
6769
7372
  }
6770
7373
  },
6771
7374
  {
6772
7375
  "name": "taskId",
6773
- "type": "default",
7376
+ "type": "string",
6774
7377
  "info": "path parameter",
6775
7378
  "required": true,
6776
7379
  "schema": {
6777
7380
  "title": "taskId",
6778
- "type": "default"
7381
+ "type": "string"
6779
7382
  }
6780
7383
  },
6781
7384
  {
6782
7385
  "name": "fieldId",
6783
- "type": "default",
7386
+ "type": "string",
6784
7387
  "info": "path parameter",
6785
7388
  "required": true,
6786
7389
  "schema": {
6787
7390
  "title": "fieldId",
6788
- "type": "default"
7391
+ "type": "string"
6789
7392
  }
6790
7393
  }
6791
7394
  ],
@@ -6814,32 +7417,32 @@
6814
7417
  "input": [
6815
7418
  {
6816
7419
  "name": "id",
6817
- "type": "default",
7420
+ "type": "string",
6818
7421
  "info": "path parameter",
6819
7422
  "required": true,
6820
7423
  "schema": {
6821
7424
  "title": "id",
6822
- "type": "default"
7425
+ "type": "string"
6823
7426
  }
6824
7427
  },
6825
7428
  {
6826
7429
  "name": "stepId",
6827
- "type": "default",
7430
+ "type": "string",
6828
7431
  "info": "path parameter",
6829
7432
  "required": true,
6830
7433
  "schema": {
6831
7434
  "title": "stepId",
6832
- "type": "default"
7435
+ "type": "string"
6833
7436
  }
6834
7437
  },
6835
7438
  {
6836
7439
  "name": "taskId",
6837
- "type": "default",
7440
+ "type": "string",
6838
7441
  "info": "path parameter",
6839
7442
  "required": true,
6840
7443
  "schema": {
6841
7444
  "title": "taskId",
6842
- "type": "default"
7445
+ "type": "string"
6843
7446
  }
6844
7447
  }
6845
7448
  ],