@itentialopensource/adapter-netbox 0.7.0 → 0.9.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.
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +169 -0
- package/CHANGELOG.md +87 -21
- package/CODE_OF_CONDUCT.md +12 -17
- package/CONTRIBUTING.md +88 -74
- package/ENHANCE.md +69 -0
- package/PROPERTIES.md +641 -0
- package/README.md +221 -571
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +6523 -5885
- package/adapterBase.js +1006 -252
- package/entities/.generic/action.json +105 -0
- package/entities/.generic/schema.json +6 -1
- package/entities/Dcim/action.json +182 -0
- package/entities/Dcim/mockdatafiles/getDcimLocations-default.json +688 -0
- package/entities/Dcim/schema.json +82 -19
- package/entities/Graphql/action.json +1 -1
- package/error.json +6 -0
- package/package.json +7 -5
- package/pronghorn.json +2153 -81
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +421 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1653302322815.json +120 -0
- package/sampleProperties.json +90 -1
- package/test/integration/adapterTestBasicGet.js +1 -1
- package/test/integration/adapterTestIntegration.js +278 -107
- package/test/unit/adapterBaseTestUnit.js +30 -25
- package/test/unit/adapterTestUnit.js +351 -177
- package/utils/adapterInfo.js +206 -0
- package/utils/entitiesToDB.js +12 -57
- package/utils/pre-commit.sh +3 -0
- package/utils/tbScript.js +35 -20
- package/utils/tbUtils.js +49 -31
- package/utils/testRunner.js +16 -16
package/pronghorn.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
],
|
|
10
10
|
"methods": [
|
|
11
11
|
{
|
|
12
|
-
"name": "
|
|
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": [
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
],
|
|
79
79
|
"route": {
|
|
80
80
|
"verb": "POST",
|
|
81
|
-
"path": "/
|
|
81
|
+
"path": "/iapUpdateAdapterConfiguration"
|
|
82
82
|
},
|
|
83
83
|
"task": true
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
"name": "
|
|
86
|
+
"name": "iapFindAdapterPath",
|
|
87
87
|
"summary": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
88
88
|
"description": "Provides the ability to see if a particular API path is supported by the adapter",
|
|
89
89
|
"input": [
|
|
@@ -113,36 +113,35 @@
|
|
|
113
113
|
],
|
|
114
114
|
"route": {
|
|
115
115
|
"verb": "POST",
|
|
116
|
-
"path": "/
|
|
116
|
+
"path": "/iapFindAdapterPath"
|
|
117
117
|
},
|
|
118
118
|
"task": true
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
|
-
"name": "
|
|
122
|
-
"summary": "
|
|
123
|
-
"description": "
|
|
121
|
+
"name": "iapSuspendAdapter",
|
|
122
|
+
"summary": "Suspends the adapter",
|
|
123
|
+
"description": "Suspends the adapter",
|
|
124
124
|
"input": [
|
|
125
125
|
{
|
|
126
|
-
"name": "
|
|
127
|
-
"type": "
|
|
128
|
-
"
|
|
129
|
-
|
|
126
|
+
"name": "mode",
|
|
127
|
+
"type": "enum",
|
|
128
|
+
"enumerals": [
|
|
129
|
+
"pause",
|
|
130
|
+
"error"
|
|
131
|
+
],
|
|
132
|
+
"info": "How incoming requests are handled. Defaults to 'pause'",
|
|
133
|
+
"description": "How incoming requests are handled. Defaults to 'pause'",
|
|
130
134
|
"schema": {
|
|
131
|
-
"title": "
|
|
132
|
-
"type": "
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
{
|
|
136
|
-
"name": "persistFlag",
|
|
137
|
-
"type": "boolean",
|
|
138
|
-
"info": "Whether the input properties should be saved",
|
|
139
|
-
"required": true
|
|
135
|
+
"title": "mode",
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
"required": false
|
|
140
139
|
}
|
|
141
140
|
],
|
|
142
141
|
"output": {
|
|
143
142
|
"name": "result",
|
|
144
143
|
"type": "object",
|
|
145
|
-
"description": "A JSON Object containing the
|
|
144
|
+
"description": "A JSON Object containing the adapter suspended status",
|
|
146
145
|
"schema": {
|
|
147
146
|
"title": "result",
|
|
148
147
|
"type": "object"
|
|
@@ -153,38 +152,42 @@
|
|
|
153
152
|
],
|
|
154
153
|
"route": {
|
|
155
154
|
"verb": "POST",
|
|
156
|
-
"path": "/
|
|
155
|
+
"path": "/iapSuspendAdapter"
|
|
157
156
|
},
|
|
158
157
|
"task": true
|
|
159
158
|
},
|
|
160
159
|
{
|
|
161
|
-
"name": "
|
|
162
|
-
"summary": "
|
|
163
|
-
"description": "
|
|
160
|
+
"name": "iapUnsuspendAdapter",
|
|
161
|
+
"summary": "Unsuspends the adapter",
|
|
162
|
+
"description": "Unsuspends the adapter",
|
|
164
163
|
"input": [],
|
|
165
164
|
"output": {
|
|
166
165
|
"name": "result",
|
|
167
|
-
"type": "
|
|
168
|
-
"description": "
|
|
166
|
+
"type": "object",
|
|
167
|
+
"description": "A JSON Object containing the adapter suspended status",
|
|
168
|
+
"schema": {
|
|
169
|
+
"title": "result",
|
|
170
|
+
"type": "object"
|
|
171
|
+
}
|
|
169
172
|
},
|
|
170
173
|
"roles": [
|
|
171
174
|
"admin"
|
|
172
175
|
],
|
|
173
176
|
"route": {
|
|
174
177
|
"verb": "POST",
|
|
175
|
-
"path": "/
|
|
178
|
+
"path": "/iapUnsuspendAdapter"
|
|
176
179
|
},
|
|
177
180
|
"task": true
|
|
178
181
|
},
|
|
179
182
|
{
|
|
180
|
-
"name": "
|
|
181
|
-
"summary": "
|
|
182
|
-
"description": "
|
|
183
|
+
"name": "iapGetAdapterQueue",
|
|
184
|
+
"summary": "Return the requests that are waiting in the queue if throttling is enabled",
|
|
185
|
+
"description": "Return the requests that are waiting in the queue if throttling is enabled",
|
|
183
186
|
"input": [],
|
|
184
187
|
"output": {
|
|
185
188
|
"name": "result",
|
|
186
189
|
"type": "object",
|
|
187
|
-
"description": "A JSON Object containing the
|
|
190
|
+
"description": "A JSON Object containing the adapter queue",
|
|
188
191
|
"schema": {
|
|
189
192
|
"title": "result",
|
|
190
193
|
"type": "object"
|
|
@@ -195,15 +198,32 @@
|
|
|
195
198
|
],
|
|
196
199
|
"route": {
|
|
197
200
|
"verb": "POST",
|
|
198
|
-
"path": "/
|
|
201
|
+
"path": "/iapGetAdapterQueue"
|
|
199
202
|
},
|
|
200
203
|
"task": true
|
|
201
204
|
},
|
|
202
205
|
{
|
|
203
|
-
"name": "
|
|
204
|
-
"summary": "Runs
|
|
205
|
-
"description": "Runs
|
|
206
|
-
"input": [
|
|
206
|
+
"name": "iapTroubleshootAdapter",
|
|
207
|
+
"summary": "Runs troubleshoot script for adapter",
|
|
208
|
+
"description": "Runs troubleshoot script for adapter",
|
|
209
|
+
"input": [
|
|
210
|
+
{
|
|
211
|
+
"name": "props",
|
|
212
|
+
"type": "object",
|
|
213
|
+
"info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
|
|
214
|
+
"required": true,
|
|
215
|
+
"schema": {
|
|
216
|
+
"title": "props",
|
|
217
|
+
"type": "object"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "persistFlag",
|
|
222
|
+
"type": "boolean",
|
|
223
|
+
"info": "Whether the input properties should be saved",
|
|
224
|
+
"required": true
|
|
225
|
+
}
|
|
226
|
+
],
|
|
207
227
|
"output": {
|
|
208
228
|
"name": "result",
|
|
209
229
|
"type": "object",
|
|
@@ -218,35 +238,38 @@
|
|
|
218
238
|
],
|
|
219
239
|
"route": {
|
|
220
240
|
"verb": "POST",
|
|
221
|
-
"path": "/
|
|
241
|
+
"path": "/iapTroubleshootAdapter"
|
|
222
242
|
},
|
|
223
243
|
"task": true
|
|
224
244
|
},
|
|
225
245
|
{
|
|
226
|
-
"name": "
|
|
227
|
-
"summary": "
|
|
228
|
-
"description": "
|
|
229
|
-
"input": [
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
"info": "How incoming requests are handled. Defaults to 'pause'",
|
|
238
|
-
"description": "How incoming requests are handled. Defaults to 'pause'",
|
|
239
|
-
"schema": {
|
|
240
|
-
"title": "mode",
|
|
241
|
-
"type": "string"
|
|
242
|
-
},
|
|
243
|
-
"required": false
|
|
244
|
-
}
|
|
246
|
+
"name": "iapRunAdapterHealthcheck",
|
|
247
|
+
"summary": "Runs healthcheck script for adapter",
|
|
248
|
+
"description": "Runs healthcheck script for adapter",
|
|
249
|
+
"input": [],
|
|
250
|
+
"output": {
|
|
251
|
+
"name": "result",
|
|
252
|
+
"type": "boolean",
|
|
253
|
+
"description": "Whether healthcheck passed or failed"
|
|
254
|
+
},
|
|
255
|
+
"roles": [
|
|
256
|
+
"admin"
|
|
245
257
|
],
|
|
258
|
+
"route": {
|
|
259
|
+
"verb": "POST",
|
|
260
|
+
"path": "/iapRunAdapterHealthcheck"
|
|
261
|
+
},
|
|
262
|
+
"task": true
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "iapRunAdapterConnectivity",
|
|
266
|
+
"summary": "Runs connectivity check script for adapter",
|
|
267
|
+
"description": "Runs connectivity check script for adapter",
|
|
268
|
+
"input": [],
|
|
246
269
|
"output": {
|
|
247
270
|
"name": "result",
|
|
248
271
|
"type": "object",
|
|
249
|
-
"description": "A JSON Object containing the
|
|
272
|
+
"description": "A JSON Object containing the test results",
|
|
250
273
|
"schema": {
|
|
251
274
|
"title": "result",
|
|
252
275
|
"type": "object"
|
|
@@ -257,19 +280,19 @@
|
|
|
257
280
|
],
|
|
258
281
|
"route": {
|
|
259
282
|
"verb": "POST",
|
|
260
|
-
"path": "/
|
|
283
|
+
"path": "/iapRunAdapterConnectivity"
|
|
261
284
|
},
|
|
262
285
|
"task": true
|
|
263
286
|
},
|
|
264
287
|
{
|
|
265
|
-
"name": "
|
|
266
|
-
"summary": "
|
|
267
|
-
"description": "
|
|
288
|
+
"name": "iapRunAdapterBasicGet",
|
|
289
|
+
"summary": "Runs basicGet script for adapter",
|
|
290
|
+
"description": "Runs basicGet script for adapter",
|
|
268
291
|
"input": [],
|
|
269
292
|
"output": {
|
|
270
293
|
"name": "result",
|
|
271
294
|
"type": "object",
|
|
272
|
-
"description": "A JSON Object containing the
|
|
295
|
+
"description": "A JSON Object containing the test results",
|
|
273
296
|
"schema": {
|
|
274
297
|
"title": "result",
|
|
275
298
|
"type": "object"
|
|
@@ -280,21 +303,21 @@
|
|
|
280
303
|
],
|
|
281
304
|
"route": {
|
|
282
305
|
"verb": "POST",
|
|
283
|
-
"path": "/
|
|
306
|
+
"path": "/iapRunAdapterBasicGet"
|
|
284
307
|
},
|
|
285
308
|
"task": true
|
|
286
309
|
},
|
|
287
310
|
{
|
|
288
|
-
"name": "
|
|
289
|
-
"summary": "
|
|
290
|
-
"description": "
|
|
311
|
+
"name": "iapMoveAdapterEntitiesToDB",
|
|
312
|
+
"summary": "Moves entities from an adapter into the IAP database",
|
|
313
|
+
"description": "Moves entities from an adapter into the IAP database",
|
|
291
314
|
"input": [],
|
|
292
315
|
"output": {
|
|
293
|
-
"name": "
|
|
316
|
+
"name": "res",
|
|
294
317
|
"type": "object",
|
|
295
|
-
"description": "A JSON Object containing the
|
|
318
|
+
"description": "A JSON Object containing status, code and the response from the mongo transaction",
|
|
296
319
|
"schema": {
|
|
297
|
-
"title": "
|
|
320
|
+
"title": "res",
|
|
298
321
|
"type": "object"
|
|
299
322
|
}
|
|
300
323
|
},
|
|
@@ -303,7 +326,7 @@
|
|
|
303
326
|
],
|
|
304
327
|
"route": {
|
|
305
328
|
"verb": "POST",
|
|
306
|
-
"path": "/
|
|
329
|
+
"path": "/iapMoveAdapterEntitiesToDB"
|
|
307
330
|
},
|
|
308
331
|
"task": true
|
|
309
332
|
},
|
|
@@ -387,16 +410,72 @@
|
|
|
387
410
|
"task": true
|
|
388
411
|
},
|
|
389
412
|
{
|
|
390
|
-
"name": "
|
|
391
|
-
"summary": "
|
|
392
|
-
"description": "
|
|
393
|
-
"input": [
|
|
413
|
+
"name": "genericAdapterRequestNoBasePath",
|
|
414
|
+
"summary": "Makes the requested generic call with no base path or version",
|
|
415
|
+
"description": "Makes the requested generic call with no base path or version",
|
|
416
|
+
"input": [
|
|
417
|
+
{
|
|
418
|
+
"name": "uriPath",
|
|
419
|
+
"type": "string",
|
|
420
|
+
"info": "the path of the api call - do not include the host, port, base path or version",
|
|
421
|
+
"description": "the path of the api call",
|
|
422
|
+
"schema": {
|
|
423
|
+
"title": "uriPath",
|
|
424
|
+
"type": "string"
|
|
425
|
+
},
|
|
426
|
+
"required": true
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"name": "restMethod",
|
|
430
|
+
"type": "string",
|
|
431
|
+
"info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
432
|
+
"description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
|
|
433
|
+
"schema": {
|
|
434
|
+
"title": "restMethod",
|
|
435
|
+
"type": "string"
|
|
436
|
+
},
|
|
437
|
+
"required": true
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"name": "queryData",
|
|
441
|
+
"type": "object",
|
|
442
|
+
"info": "the query parameters to be put on the url (optional)",
|
|
443
|
+
"description": "the query parameters to be put on the url (optional)",
|
|
444
|
+
"schema": {
|
|
445
|
+
"title": "queryData",
|
|
446
|
+
"type": "object"
|
|
447
|
+
},
|
|
448
|
+
"required": false
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"name": "requestBody",
|
|
452
|
+
"type": "object",
|
|
453
|
+
"info": "the payload to be sent with the request (optional)",
|
|
454
|
+
"description": "the payload to be sent with the request (optional)",
|
|
455
|
+
"schema": {
|
|
456
|
+
"title": "requestBody",
|
|
457
|
+
"type": "object"
|
|
458
|
+
},
|
|
459
|
+
"required": false
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "addlHeaders",
|
|
463
|
+
"type": "object",
|
|
464
|
+
"info": "additional headers to be put on the call (optional)",
|
|
465
|
+
"description": "additional headers to be put on the call (optional)",
|
|
466
|
+
"schema": {
|
|
467
|
+
"title": "addlHeaders",
|
|
468
|
+
"type": "object"
|
|
469
|
+
},
|
|
470
|
+
"required": false
|
|
471
|
+
}
|
|
472
|
+
],
|
|
394
473
|
"output": {
|
|
395
|
-
"name": "
|
|
474
|
+
"name": "result",
|
|
396
475
|
"type": "object",
|
|
397
|
-
"description": "A JSON Object containing status, code and the
|
|
476
|
+
"description": "A JSON Object containing status, code and the result",
|
|
398
477
|
"schema": {
|
|
399
|
-
"title": "
|
|
478
|
+
"title": "result",
|
|
400
479
|
"type": "object"
|
|
401
480
|
}
|
|
402
481
|
},
|
|
@@ -405,7 +484,7 @@
|
|
|
405
484
|
],
|
|
406
485
|
"route": {
|
|
407
486
|
"verb": "POST",
|
|
408
|
-
"path": "/
|
|
487
|
+
"path": "/genericAdapterRequestNoBasePath"
|
|
409
488
|
},
|
|
410
489
|
"task": true
|
|
411
490
|
},
|
|
@@ -556,7 +635,7 @@
|
|
|
556
635
|
"task": false
|
|
557
636
|
},
|
|
558
637
|
{
|
|
559
|
-
"name": "
|
|
638
|
+
"name": "iapGetDeviceCount",
|
|
560
639
|
"summary": "Gets a device count from the system",
|
|
561
640
|
"description": "Gets a device count from the system",
|
|
562
641
|
"input": [],
|
|
@@ -574,7 +653,7 @@
|
|
|
574
653
|
],
|
|
575
654
|
"route": {
|
|
576
655
|
"verb": "POST",
|
|
577
|
-
"path": "/
|
|
656
|
+
"path": "/iapGetDeviceCount"
|
|
578
657
|
},
|
|
579
658
|
"task": false
|
|
580
659
|
},
|
|
@@ -42662,6 +42741,1999 @@
|
|
|
42662
42741
|
"path": "/getGraphql"
|
|
42663
42742
|
},
|
|
42664
42743
|
"task": true
|
|
42744
|
+
},
|
|
42745
|
+
{
|
|
42746
|
+
"name": "getDcimLocations",
|
|
42747
|
+
"summary": "Overrides ListModelMixin to allow processing ExportTemplates.",
|
|
42748
|
+
"description": "Overrides ListModelMixin to allow processing ExportTemplates.",
|
|
42749
|
+
"input": [
|
|
42750
|
+
{
|
|
42751
|
+
"name": "id",
|
|
42752
|
+
"type": "string",
|
|
42753
|
+
"info": ": string",
|
|
42754
|
+
"required": false,
|
|
42755
|
+
"schema": {
|
|
42756
|
+
"title": "id",
|
|
42757
|
+
"type": "string"
|
|
42758
|
+
}
|
|
42759
|
+
},
|
|
42760
|
+
{
|
|
42761
|
+
"name": "name",
|
|
42762
|
+
"type": "string",
|
|
42763
|
+
"info": ": string",
|
|
42764
|
+
"required": false,
|
|
42765
|
+
"schema": {
|
|
42766
|
+
"title": "name",
|
|
42767
|
+
"type": "string"
|
|
42768
|
+
}
|
|
42769
|
+
},
|
|
42770
|
+
{
|
|
42771
|
+
"name": "slug",
|
|
42772
|
+
"type": "string",
|
|
42773
|
+
"info": ": string",
|
|
42774
|
+
"required": false,
|
|
42775
|
+
"schema": {
|
|
42776
|
+
"title": "slug",
|
|
42777
|
+
"type": "string"
|
|
42778
|
+
}
|
|
42779
|
+
},
|
|
42780
|
+
{
|
|
42781
|
+
"name": "description",
|
|
42782
|
+
"type": "string",
|
|
42783
|
+
"info": ": string",
|
|
42784
|
+
"required": false,
|
|
42785
|
+
"schema": {
|
|
42786
|
+
"title": "description",
|
|
42787
|
+
"type": "string"
|
|
42788
|
+
}
|
|
42789
|
+
},
|
|
42790
|
+
{
|
|
42791
|
+
"name": "tenantGroupId",
|
|
42792
|
+
"type": "string",
|
|
42793
|
+
"info": ": string",
|
|
42794
|
+
"required": false,
|
|
42795
|
+
"schema": {
|
|
42796
|
+
"title": "tenantGroupId",
|
|
42797
|
+
"type": "string"
|
|
42798
|
+
}
|
|
42799
|
+
},
|
|
42800
|
+
{
|
|
42801
|
+
"name": "tenantGroup",
|
|
42802
|
+
"type": "string",
|
|
42803
|
+
"info": ": string",
|
|
42804
|
+
"required": false,
|
|
42805
|
+
"schema": {
|
|
42806
|
+
"title": "tenantGroup",
|
|
42807
|
+
"type": "string"
|
|
42808
|
+
}
|
|
42809
|
+
},
|
|
42810
|
+
{
|
|
42811
|
+
"name": "tenantId",
|
|
42812
|
+
"type": "string",
|
|
42813
|
+
"info": ": string",
|
|
42814
|
+
"required": false,
|
|
42815
|
+
"schema": {
|
|
42816
|
+
"title": "tenantId",
|
|
42817
|
+
"type": "string"
|
|
42818
|
+
}
|
|
42819
|
+
},
|
|
42820
|
+
{
|
|
42821
|
+
"name": "tenant",
|
|
42822
|
+
"type": "string",
|
|
42823
|
+
"info": ": string",
|
|
42824
|
+
"required": false,
|
|
42825
|
+
"schema": {
|
|
42826
|
+
"title": "tenant",
|
|
42827
|
+
"type": "string"
|
|
42828
|
+
}
|
|
42829
|
+
},
|
|
42830
|
+
{
|
|
42831
|
+
"name": "contact",
|
|
42832
|
+
"type": "string",
|
|
42833
|
+
"info": ": string",
|
|
42834
|
+
"required": false,
|
|
42835
|
+
"schema": {
|
|
42836
|
+
"title": "contact",
|
|
42837
|
+
"type": "string"
|
|
42838
|
+
}
|
|
42839
|
+
},
|
|
42840
|
+
{
|
|
42841
|
+
"name": "contactRole",
|
|
42842
|
+
"type": "string",
|
|
42843
|
+
"info": ": string",
|
|
42844
|
+
"required": false,
|
|
42845
|
+
"schema": {
|
|
42846
|
+
"title": "contactRole",
|
|
42847
|
+
"type": "string"
|
|
42848
|
+
}
|
|
42849
|
+
},
|
|
42850
|
+
{
|
|
42851
|
+
"name": "contactGroup",
|
|
42852
|
+
"type": "string",
|
|
42853
|
+
"info": ": string",
|
|
42854
|
+
"required": false,
|
|
42855
|
+
"schema": {
|
|
42856
|
+
"title": "contactGroup",
|
|
42857
|
+
"type": "string"
|
|
42858
|
+
}
|
|
42859
|
+
},
|
|
42860
|
+
{
|
|
42861
|
+
"name": "created",
|
|
42862
|
+
"type": "string",
|
|
42863
|
+
"info": ": string",
|
|
42864
|
+
"required": false,
|
|
42865
|
+
"schema": {
|
|
42866
|
+
"title": "created",
|
|
42867
|
+
"type": "string"
|
|
42868
|
+
}
|
|
42869
|
+
},
|
|
42870
|
+
{
|
|
42871
|
+
"name": "createdGte",
|
|
42872
|
+
"type": "string",
|
|
42873
|
+
"info": ": string",
|
|
42874
|
+
"required": false,
|
|
42875
|
+
"schema": {
|
|
42876
|
+
"title": "createdGte",
|
|
42877
|
+
"type": "string"
|
|
42878
|
+
}
|
|
42879
|
+
},
|
|
42880
|
+
{
|
|
42881
|
+
"name": "createdLte",
|
|
42882
|
+
"type": "string",
|
|
42883
|
+
"info": ": string",
|
|
42884
|
+
"required": false,
|
|
42885
|
+
"schema": {
|
|
42886
|
+
"title": "createdLte",
|
|
42887
|
+
"type": "string"
|
|
42888
|
+
}
|
|
42889
|
+
},
|
|
42890
|
+
{
|
|
42891
|
+
"name": "lastUpdated",
|
|
42892
|
+
"type": "string",
|
|
42893
|
+
"info": ": string",
|
|
42894
|
+
"required": false,
|
|
42895
|
+
"schema": {
|
|
42896
|
+
"title": "lastUpdated",
|
|
42897
|
+
"type": "string"
|
|
42898
|
+
}
|
|
42899
|
+
},
|
|
42900
|
+
{
|
|
42901
|
+
"name": "lastUpdatedGte",
|
|
42902
|
+
"type": "string",
|
|
42903
|
+
"info": ": string",
|
|
42904
|
+
"required": false,
|
|
42905
|
+
"schema": {
|
|
42906
|
+
"title": "lastUpdatedGte",
|
|
42907
|
+
"type": "string"
|
|
42908
|
+
}
|
|
42909
|
+
},
|
|
42910
|
+
{
|
|
42911
|
+
"name": "lastUpdatedLte",
|
|
42912
|
+
"type": "string",
|
|
42913
|
+
"info": ": string",
|
|
42914
|
+
"required": false,
|
|
42915
|
+
"schema": {
|
|
42916
|
+
"title": "lastUpdatedLte",
|
|
42917
|
+
"type": "string"
|
|
42918
|
+
}
|
|
42919
|
+
},
|
|
42920
|
+
{
|
|
42921
|
+
"name": "q",
|
|
42922
|
+
"type": "string",
|
|
42923
|
+
"info": ": string",
|
|
42924
|
+
"required": false,
|
|
42925
|
+
"schema": {
|
|
42926
|
+
"title": "q",
|
|
42927
|
+
"type": "string"
|
|
42928
|
+
}
|
|
42929
|
+
},
|
|
42930
|
+
{
|
|
42931
|
+
"name": "tag",
|
|
42932
|
+
"type": "string",
|
|
42933
|
+
"info": ": string",
|
|
42934
|
+
"required": false,
|
|
42935
|
+
"schema": {
|
|
42936
|
+
"title": "tag",
|
|
42937
|
+
"type": "string"
|
|
42938
|
+
}
|
|
42939
|
+
},
|
|
42940
|
+
{
|
|
42941
|
+
"name": "regionId",
|
|
42942
|
+
"type": "string",
|
|
42943
|
+
"info": ": string",
|
|
42944
|
+
"required": false,
|
|
42945
|
+
"schema": {
|
|
42946
|
+
"title": "regionId",
|
|
42947
|
+
"type": "string"
|
|
42948
|
+
}
|
|
42949
|
+
},
|
|
42950
|
+
{
|
|
42951
|
+
"name": "region",
|
|
42952
|
+
"type": "string",
|
|
42953
|
+
"info": ": string",
|
|
42954
|
+
"required": false,
|
|
42955
|
+
"schema": {
|
|
42956
|
+
"title": "region",
|
|
42957
|
+
"type": "string"
|
|
42958
|
+
}
|
|
42959
|
+
},
|
|
42960
|
+
{
|
|
42961
|
+
"name": "siteGroupId",
|
|
42962
|
+
"type": "string",
|
|
42963
|
+
"info": ": string",
|
|
42964
|
+
"required": false,
|
|
42965
|
+
"schema": {
|
|
42966
|
+
"title": "siteGroupId",
|
|
42967
|
+
"type": "string"
|
|
42968
|
+
}
|
|
42969
|
+
},
|
|
42970
|
+
{
|
|
42971
|
+
"name": "siteGroup",
|
|
42972
|
+
"type": "string",
|
|
42973
|
+
"info": ": string",
|
|
42974
|
+
"required": false,
|
|
42975
|
+
"schema": {
|
|
42976
|
+
"title": "siteGroup",
|
|
42977
|
+
"type": "string"
|
|
42978
|
+
}
|
|
42979
|
+
},
|
|
42980
|
+
{
|
|
42981
|
+
"name": "siteId",
|
|
42982
|
+
"type": "string",
|
|
42983
|
+
"info": ": string",
|
|
42984
|
+
"required": false,
|
|
42985
|
+
"schema": {
|
|
42986
|
+
"title": "siteId",
|
|
42987
|
+
"type": "string"
|
|
42988
|
+
}
|
|
42989
|
+
},
|
|
42990
|
+
{
|
|
42991
|
+
"name": "site",
|
|
42992
|
+
"type": "string",
|
|
42993
|
+
"info": ": string",
|
|
42994
|
+
"required": false,
|
|
42995
|
+
"schema": {
|
|
42996
|
+
"title": "site",
|
|
42997
|
+
"type": "string"
|
|
42998
|
+
}
|
|
42999
|
+
},
|
|
43000
|
+
{
|
|
43001
|
+
"name": "parentId",
|
|
43002
|
+
"type": "string",
|
|
43003
|
+
"info": ": string",
|
|
43004
|
+
"required": false,
|
|
43005
|
+
"schema": {
|
|
43006
|
+
"title": "parentId",
|
|
43007
|
+
"type": "string"
|
|
43008
|
+
}
|
|
43009
|
+
},
|
|
43010
|
+
{
|
|
43011
|
+
"name": "parent",
|
|
43012
|
+
"type": "string",
|
|
43013
|
+
"info": ": string",
|
|
43014
|
+
"required": false,
|
|
43015
|
+
"schema": {
|
|
43016
|
+
"title": "parent",
|
|
43017
|
+
"type": "string"
|
|
43018
|
+
}
|
|
43019
|
+
},
|
|
43020
|
+
{
|
|
43021
|
+
"name": "idN",
|
|
43022
|
+
"type": "string",
|
|
43023
|
+
"info": ": string",
|
|
43024
|
+
"required": false,
|
|
43025
|
+
"schema": {
|
|
43026
|
+
"title": "idN",
|
|
43027
|
+
"type": "string"
|
|
43028
|
+
}
|
|
43029
|
+
},
|
|
43030
|
+
{
|
|
43031
|
+
"name": "idLte",
|
|
43032
|
+
"type": "string",
|
|
43033
|
+
"info": ": string",
|
|
43034
|
+
"required": false,
|
|
43035
|
+
"schema": {
|
|
43036
|
+
"title": "idLte",
|
|
43037
|
+
"type": "string"
|
|
43038
|
+
}
|
|
43039
|
+
},
|
|
43040
|
+
{
|
|
43041
|
+
"name": "idLt",
|
|
43042
|
+
"type": "string",
|
|
43043
|
+
"info": ": string",
|
|
43044
|
+
"required": false,
|
|
43045
|
+
"schema": {
|
|
43046
|
+
"title": "idLt",
|
|
43047
|
+
"type": "string"
|
|
43048
|
+
}
|
|
43049
|
+
},
|
|
43050
|
+
{
|
|
43051
|
+
"name": "idGte",
|
|
43052
|
+
"type": "string",
|
|
43053
|
+
"info": ": string",
|
|
43054
|
+
"required": false,
|
|
43055
|
+
"schema": {
|
|
43056
|
+
"title": "idGte",
|
|
43057
|
+
"type": "string"
|
|
43058
|
+
}
|
|
43059
|
+
},
|
|
43060
|
+
{
|
|
43061
|
+
"name": "idGt",
|
|
43062
|
+
"type": "string",
|
|
43063
|
+
"info": ": string",
|
|
43064
|
+
"required": false,
|
|
43065
|
+
"schema": {
|
|
43066
|
+
"title": "idGt",
|
|
43067
|
+
"type": "string"
|
|
43068
|
+
}
|
|
43069
|
+
},
|
|
43070
|
+
{
|
|
43071
|
+
"name": "nameN",
|
|
43072
|
+
"type": "string",
|
|
43073
|
+
"info": ": string",
|
|
43074
|
+
"required": false,
|
|
43075
|
+
"schema": {
|
|
43076
|
+
"title": "nameN",
|
|
43077
|
+
"type": "string"
|
|
43078
|
+
}
|
|
43079
|
+
},
|
|
43080
|
+
{
|
|
43081
|
+
"name": "nameIc",
|
|
43082
|
+
"type": "string",
|
|
43083
|
+
"info": ": string",
|
|
43084
|
+
"required": false,
|
|
43085
|
+
"schema": {
|
|
43086
|
+
"title": "nameIc",
|
|
43087
|
+
"type": "string"
|
|
43088
|
+
}
|
|
43089
|
+
},
|
|
43090
|
+
{
|
|
43091
|
+
"name": "nameNic",
|
|
43092
|
+
"type": "string",
|
|
43093
|
+
"info": ": string",
|
|
43094
|
+
"required": false,
|
|
43095
|
+
"schema": {
|
|
43096
|
+
"title": "nameNic",
|
|
43097
|
+
"type": "string"
|
|
43098
|
+
}
|
|
43099
|
+
},
|
|
43100
|
+
{
|
|
43101
|
+
"name": "nameIew",
|
|
43102
|
+
"type": "string",
|
|
43103
|
+
"info": ": string",
|
|
43104
|
+
"required": false,
|
|
43105
|
+
"schema": {
|
|
43106
|
+
"title": "nameIew",
|
|
43107
|
+
"type": "string"
|
|
43108
|
+
}
|
|
43109
|
+
},
|
|
43110
|
+
{
|
|
43111
|
+
"name": "nameNiew",
|
|
43112
|
+
"type": "string",
|
|
43113
|
+
"info": ": string",
|
|
43114
|
+
"required": false,
|
|
43115
|
+
"schema": {
|
|
43116
|
+
"title": "nameNiew",
|
|
43117
|
+
"type": "string"
|
|
43118
|
+
}
|
|
43119
|
+
},
|
|
43120
|
+
{
|
|
43121
|
+
"name": "nameIsw",
|
|
43122
|
+
"type": "string",
|
|
43123
|
+
"info": ": string",
|
|
43124
|
+
"required": false,
|
|
43125
|
+
"schema": {
|
|
43126
|
+
"title": "nameIsw",
|
|
43127
|
+
"type": "string"
|
|
43128
|
+
}
|
|
43129
|
+
},
|
|
43130
|
+
{
|
|
43131
|
+
"name": "nameNisw",
|
|
43132
|
+
"type": "string",
|
|
43133
|
+
"info": ": string",
|
|
43134
|
+
"required": false,
|
|
43135
|
+
"schema": {
|
|
43136
|
+
"title": "nameNisw",
|
|
43137
|
+
"type": "string"
|
|
43138
|
+
}
|
|
43139
|
+
},
|
|
43140
|
+
{
|
|
43141
|
+
"name": "nameIe",
|
|
43142
|
+
"type": "string",
|
|
43143
|
+
"info": ": string",
|
|
43144
|
+
"required": false,
|
|
43145
|
+
"schema": {
|
|
43146
|
+
"title": "nameIe",
|
|
43147
|
+
"type": "string"
|
|
43148
|
+
}
|
|
43149
|
+
},
|
|
43150
|
+
{
|
|
43151
|
+
"name": "nameNie",
|
|
43152
|
+
"type": "string",
|
|
43153
|
+
"info": ": string",
|
|
43154
|
+
"required": false,
|
|
43155
|
+
"schema": {
|
|
43156
|
+
"title": "nameNie",
|
|
43157
|
+
"type": "string"
|
|
43158
|
+
}
|
|
43159
|
+
},
|
|
43160
|
+
{
|
|
43161
|
+
"name": "slugN",
|
|
43162
|
+
"type": "string",
|
|
43163
|
+
"info": ": string",
|
|
43164
|
+
"required": false,
|
|
43165
|
+
"schema": {
|
|
43166
|
+
"title": "slugN",
|
|
43167
|
+
"type": "string"
|
|
43168
|
+
}
|
|
43169
|
+
},
|
|
43170
|
+
{
|
|
43171
|
+
"name": "slugIc",
|
|
43172
|
+
"type": "string",
|
|
43173
|
+
"info": ": string",
|
|
43174
|
+
"required": false,
|
|
43175
|
+
"schema": {
|
|
43176
|
+
"title": "slugIc",
|
|
43177
|
+
"type": "string"
|
|
43178
|
+
}
|
|
43179
|
+
},
|
|
43180
|
+
{
|
|
43181
|
+
"name": "slugNic",
|
|
43182
|
+
"type": "string",
|
|
43183
|
+
"info": ": string",
|
|
43184
|
+
"required": false,
|
|
43185
|
+
"schema": {
|
|
43186
|
+
"title": "slugNic",
|
|
43187
|
+
"type": "string"
|
|
43188
|
+
}
|
|
43189
|
+
},
|
|
43190
|
+
{
|
|
43191
|
+
"name": "slugIew",
|
|
43192
|
+
"type": "string",
|
|
43193
|
+
"info": ": string",
|
|
43194
|
+
"required": false,
|
|
43195
|
+
"schema": {
|
|
43196
|
+
"title": "slugIew",
|
|
43197
|
+
"type": "string"
|
|
43198
|
+
}
|
|
43199
|
+
},
|
|
43200
|
+
{
|
|
43201
|
+
"name": "slugNiew",
|
|
43202
|
+
"type": "string",
|
|
43203
|
+
"info": ": string",
|
|
43204
|
+
"required": false,
|
|
43205
|
+
"schema": {
|
|
43206
|
+
"title": "slugNiew",
|
|
43207
|
+
"type": "string"
|
|
43208
|
+
}
|
|
43209
|
+
},
|
|
43210
|
+
{
|
|
43211
|
+
"name": "slugIsw",
|
|
43212
|
+
"type": "string",
|
|
43213
|
+
"info": ": string",
|
|
43214
|
+
"required": false,
|
|
43215
|
+
"schema": {
|
|
43216
|
+
"title": "slugIsw",
|
|
43217
|
+
"type": "string"
|
|
43218
|
+
}
|
|
43219
|
+
},
|
|
43220
|
+
{
|
|
43221
|
+
"name": "slugNisw",
|
|
43222
|
+
"type": "string",
|
|
43223
|
+
"info": ": string",
|
|
43224
|
+
"required": false,
|
|
43225
|
+
"schema": {
|
|
43226
|
+
"title": "slugNisw",
|
|
43227
|
+
"type": "string"
|
|
43228
|
+
}
|
|
43229
|
+
},
|
|
43230
|
+
{
|
|
43231
|
+
"name": "slugIe",
|
|
43232
|
+
"type": "string",
|
|
43233
|
+
"info": ": string",
|
|
43234
|
+
"required": false,
|
|
43235
|
+
"schema": {
|
|
43236
|
+
"title": "slugIe",
|
|
43237
|
+
"type": "string"
|
|
43238
|
+
}
|
|
43239
|
+
},
|
|
43240
|
+
{
|
|
43241
|
+
"name": "slugNie",
|
|
43242
|
+
"type": "string",
|
|
43243
|
+
"info": ": string",
|
|
43244
|
+
"required": false,
|
|
43245
|
+
"schema": {
|
|
43246
|
+
"title": "slugNie",
|
|
43247
|
+
"type": "string"
|
|
43248
|
+
}
|
|
43249
|
+
},
|
|
43250
|
+
{
|
|
43251
|
+
"name": "descriptionN",
|
|
43252
|
+
"type": "string",
|
|
43253
|
+
"info": ": string",
|
|
43254
|
+
"required": false,
|
|
43255
|
+
"schema": {
|
|
43256
|
+
"title": "descriptionN",
|
|
43257
|
+
"type": "string"
|
|
43258
|
+
}
|
|
43259
|
+
},
|
|
43260
|
+
{
|
|
43261
|
+
"name": "descriptionIc",
|
|
43262
|
+
"type": "string",
|
|
43263
|
+
"info": ": string",
|
|
43264
|
+
"required": false,
|
|
43265
|
+
"schema": {
|
|
43266
|
+
"title": "descriptionIc",
|
|
43267
|
+
"type": "string"
|
|
43268
|
+
}
|
|
43269
|
+
},
|
|
43270
|
+
{
|
|
43271
|
+
"name": "descriptionNic",
|
|
43272
|
+
"type": "string",
|
|
43273
|
+
"info": ": string",
|
|
43274
|
+
"required": false,
|
|
43275
|
+
"schema": {
|
|
43276
|
+
"title": "descriptionNic",
|
|
43277
|
+
"type": "string"
|
|
43278
|
+
}
|
|
43279
|
+
},
|
|
43280
|
+
{
|
|
43281
|
+
"name": "descriptionIew",
|
|
43282
|
+
"type": "string",
|
|
43283
|
+
"info": ": string",
|
|
43284
|
+
"required": false,
|
|
43285
|
+
"schema": {
|
|
43286
|
+
"title": "descriptionIew",
|
|
43287
|
+
"type": "string"
|
|
43288
|
+
}
|
|
43289
|
+
},
|
|
43290
|
+
{
|
|
43291
|
+
"name": "descriptionNiew",
|
|
43292
|
+
"type": "string",
|
|
43293
|
+
"info": ": string",
|
|
43294
|
+
"required": false,
|
|
43295
|
+
"schema": {
|
|
43296
|
+
"title": "descriptionNiew",
|
|
43297
|
+
"type": "string"
|
|
43298
|
+
}
|
|
43299
|
+
},
|
|
43300
|
+
{
|
|
43301
|
+
"name": "descriptionIsw",
|
|
43302
|
+
"type": "string",
|
|
43303
|
+
"info": ": string",
|
|
43304
|
+
"required": false,
|
|
43305
|
+
"schema": {
|
|
43306
|
+
"title": "descriptionIsw",
|
|
43307
|
+
"type": "string"
|
|
43308
|
+
}
|
|
43309
|
+
},
|
|
43310
|
+
{
|
|
43311
|
+
"name": "descriptionNisw",
|
|
43312
|
+
"type": "string",
|
|
43313
|
+
"info": ": string",
|
|
43314
|
+
"required": false,
|
|
43315
|
+
"schema": {
|
|
43316
|
+
"title": "descriptionNisw",
|
|
43317
|
+
"type": "string"
|
|
43318
|
+
}
|
|
43319
|
+
},
|
|
43320
|
+
{
|
|
43321
|
+
"name": "descriptionIe",
|
|
43322
|
+
"type": "string",
|
|
43323
|
+
"info": ": string",
|
|
43324
|
+
"required": false,
|
|
43325
|
+
"schema": {
|
|
43326
|
+
"title": "descriptionIe",
|
|
43327
|
+
"type": "string"
|
|
43328
|
+
}
|
|
43329
|
+
},
|
|
43330
|
+
{
|
|
43331
|
+
"name": "descriptionNie",
|
|
43332
|
+
"type": "string",
|
|
43333
|
+
"info": ": string",
|
|
43334
|
+
"required": false,
|
|
43335
|
+
"schema": {
|
|
43336
|
+
"title": "descriptionNie",
|
|
43337
|
+
"type": "string"
|
|
43338
|
+
}
|
|
43339
|
+
},
|
|
43340
|
+
{
|
|
43341
|
+
"name": "tenantGroupIdN",
|
|
43342
|
+
"type": "string",
|
|
43343
|
+
"info": ": string",
|
|
43344
|
+
"required": false,
|
|
43345
|
+
"schema": {
|
|
43346
|
+
"title": "tenantGroupIdN",
|
|
43347
|
+
"type": "string"
|
|
43348
|
+
}
|
|
43349
|
+
},
|
|
43350
|
+
{
|
|
43351
|
+
"name": "tenantGroupN",
|
|
43352
|
+
"type": "string",
|
|
43353
|
+
"info": ": string",
|
|
43354
|
+
"required": false,
|
|
43355
|
+
"schema": {
|
|
43356
|
+
"title": "tenantGroupN",
|
|
43357
|
+
"type": "string"
|
|
43358
|
+
}
|
|
43359
|
+
},
|
|
43360
|
+
{
|
|
43361
|
+
"name": "tenantIdN",
|
|
43362
|
+
"type": "string",
|
|
43363
|
+
"info": ": string",
|
|
43364
|
+
"required": false,
|
|
43365
|
+
"schema": {
|
|
43366
|
+
"title": "tenantIdN",
|
|
43367
|
+
"type": "string"
|
|
43368
|
+
}
|
|
43369
|
+
},
|
|
43370
|
+
{
|
|
43371
|
+
"name": "tenantN",
|
|
43372
|
+
"type": "string",
|
|
43373
|
+
"info": ": string",
|
|
43374
|
+
"required": false,
|
|
43375
|
+
"schema": {
|
|
43376
|
+
"title": "tenantN",
|
|
43377
|
+
"type": "string"
|
|
43378
|
+
}
|
|
43379
|
+
},
|
|
43380
|
+
{
|
|
43381
|
+
"name": "contactN",
|
|
43382
|
+
"type": "string",
|
|
43383
|
+
"info": ": string",
|
|
43384
|
+
"required": false,
|
|
43385
|
+
"schema": {
|
|
43386
|
+
"title": "contactN",
|
|
43387
|
+
"type": "string"
|
|
43388
|
+
}
|
|
43389
|
+
},
|
|
43390
|
+
{
|
|
43391
|
+
"name": "contactRoleN",
|
|
43392
|
+
"type": "string",
|
|
43393
|
+
"info": ": string",
|
|
43394
|
+
"required": false,
|
|
43395
|
+
"schema": {
|
|
43396
|
+
"title": "contactRoleN",
|
|
43397
|
+
"type": "string"
|
|
43398
|
+
}
|
|
43399
|
+
},
|
|
43400
|
+
{
|
|
43401
|
+
"name": "contactGroupN",
|
|
43402
|
+
"type": "string",
|
|
43403
|
+
"info": ": string",
|
|
43404
|
+
"required": false,
|
|
43405
|
+
"schema": {
|
|
43406
|
+
"title": "contactGroupN",
|
|
43407
|
+
"type": "string"
|
|
43408
|
+
}
|
|
43409
|
+
},
|
|
43410
|
+
{
|
|
43411
|
+
"name": "tagN",
|
|
43412
|
+
"type": "string",
|
|
43413
|
+
"info": ": string",
|
|
43414
|
+
"required": false,
|
|
43415
|
+
"schema": {
|
|
43416
|
+
"title": "tagN",
|
|
43417
|
+
"type": "string"
|
|
43418
|
+
}
|
|
43419
|
+
},
|
|
43420
|
+
{
|
|
43421
|
+
"name": "regionIdN",
|
|
43422
|
+
"type": "string",
|
|
43423
|
+
"info": ": string",
|
|
43424
|
+
"required": false,
|
|
43425
|
+
"schema": {
|
|
43426
|
+
"title": "regionIdN",
|
|
43427
|
+
"type": "string"
|
|
43428
|
+
}
|
|
43429
|
+
},
|
|
43430
|
+
{
|
|
43431
|
+
"name": "regionN",
|
|
43432
|
+
"type": "string",
|
|
43433
|
+
"info": ": string",
|
|
43434
|
+
"required": false,
|
|
43435
|
+
"schema": {
|
|
43436
|
+
"title": "regionN",
|
|
43437
|
+
"type": "string"
|
|
43438
|
+
}
|
|
43439
|
+
},
|
|
43440
|
+
{
|
|
43441
|
+
"name": "siteGroupIdN",
|
|
43442
|
+
"type": "string",
|
|
43443
|
+
"info": ": string",
|
|
43444
|
+
"required": false,
|
|
43445
|
+
"schema": {
|
|
43446
|
+
"title": "siteGroupIdN",
|
|
43447
|
+
"type": "string"
|
|
43448
|
+
}
|
|
43449
|
+
},
|
|
43450
|
+
{
|
|
43451
|
+
"name": "siteGroupN",
|
|
43452
|
+
"type": "string",
|
|
43453
|
+
"info": ": string",
|
|
43454
|
+
"required": false,
|
|
43455
|
+
"schema": {
|
|
43456
|
+
"title": "siteGroupN",
|
|
43457
|
+
"type": "string"
|
|
43458
|
+
}
|
|
43459
|
+
},
|
|
43460
|
+
{
|
|
43461
|
+
"name": "siteIdN",
|
|
43462
|
+
"type": "string",
|
|
43463
|
+
"info": ": string",
|
|
43464
|
+
"required": false,
|
|
43465
|
+
"schema": {
|
|
43466
|
+
"title": "siteIdN",
|
|
43467
|
+
"type": "string"
|
|
43468
|
+
}
|
|
43469
|
+
},
|
|
43470
|
+
{
|
|
43471
|
+
"name": "siteN",
|
|
43472
|
+
"type": "string",
|
|
43473
|
+
"info": ": string",
|
|
43474
|
+
"required": false,
|
|
43475
|
+
"schema": {
|
|
43476
|
+
"title": "siteN",
|
|
43477
|
+
"type": "string"
|
|
43478
|
+
}
|
|
43479
|
+
},
|
|
43480
|
+
{
|
|
43481
|
+
"name": "parentIdN",
|
|
43482
|
+
"type": "string",
|
|
43483
|
+
"info": ": string",
|
|
43484
|
+
"required": false,
|
|
43485
|
+
"schema": {
|
|
43486
|
+
"title": "parentIdN",
|
|
43487
|
+
"type": "string"
|
|
43488
|
+
}
|
|
43489
|
+
},
|
|
43490
|
+
{
|
|
43491
|
+
"name": "parentN",
|
|
43492
|
+
"type": "string",
|
|
43493
|
+
"info": ": string",
|
|
43494
|
+
"required": false,
|
|
43495
|
+
"schema": {
|
|
43496
|
+
"title": "parentN",
|
|
43497
|
+
"type": "string"
|
|
43498
|
+
}
|
|
43499
|
+
},
|
|
43500
|
+
{
|
|
43501
|
+
"name": "limit",
|
|
43502
|
+
"type": "number",
|
|
43503
|
+
"info": "Number of results to return per page.: 123",
|
|
43504
|
+
"required": false,
|
|
43505
|
+
"schema": {
|
|
43506
|
+
"title": "limit",
|
|
43507
|
+
"type": "number"
|
|
43508
|
+
}
|
|
43509
|
+
},
|
|
43510
|
+
{
|
|
43511
|
+
"name": "offset",
|
|
43512
|
+
"type": "number",
|
|
43513
|
+
"info": "The initial index from which to return the results.: 123",
|
|
43514
|
+
"required": false,
|
|
43515
|
+
"schema": {
|
|
43516
|
+
"title": "offset",
|
|
43517
|
+
"type": "number"
|
|
43518
|
+
}
|
|
43519
|
+
}
|
|
43520
|
+
],
|
|
43521
|
+
"output": {
|
|
43522
|
+
"name": "result",
|
|
43523
|
+
"type": "object",
|
|
43524
|
+
"description": "A JSON Object containing status, code and the result",
|
|
43525
|
+
"schema": {
|
|
43526
|
+
"required": [
|
|
43527
|
+
"count",
|
|
43528
|
+
"results"
|
|
43529
|
+
],
|
|
43530
|
+
"type": "object",
|
|
43531
|
+
"properties": {
|
|
43532
|
+
"count": {
|
|
43533
|
+
"type": "integer"
|
|
43534
|
+
},
|
|
43535
|
+
"next": {
|
|
43536
|
+
"type": "string",
|
|
43537
|
+
"x-nullable": true
|
|
43538
|
+
},
|
|
43539
|
+
"previous": {
|
|
43540
|
+
"type": "string",
|
|
43541
|
+
"x-nullable": true
|
|
43542
|
+
},
|
|
43543
|
+
"results": {
|
|
43544
|
+
"type": "array",
|
|
43545
|
+
"items": {
|
|
43546
|
+
"required": [
|
|
43547
|
+
"name",
|
|
43548
|
+
"slug",
|
|
43549
|
+
"site"
|
|
43550
|
+
],
|
|
43551
|
+
"type": "object",
|
|
43552
|
+
"properties": {
|
|
43553
|
+
"id": {
|
|
43554
|
+
"title": "ID",
|
|
43555
|
+
"type": "integer",
|
|
43556
|
+
"readOnly": true
|
|
43557
|
+
},
|
|
43558
|
+
"url": {
|
|
43559
|
+
"title": "Url",
|
|
43560
|
+
"type": "string",
|
|
43561
|
+
"readOnly": true
|
|
43562
|
+
},
|
|
43563
|
+
"display": {
|
|
43564
|
+
"title": "Display",
|
|
43565
|
+
"type": "string",
|
|
43566
|
+
"readOnly": true
|
|
43567
|
+
},
|
|
43568
|
+
"name": {
|
|
43569
|
+
"title": "Name",
|
|
43570
|
+
"type": "string",
|
|
43571
|
+
"maxLength": 100,
|
|
43572
|
+
"minLength": 1
|
|
43573
|
+
},
|
|
43574
|
+
"slug": {
|
|
43575
|
+
"title": "Slug",
|
|
43576
|
+
"type": "string",
|
|
43577
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
43578
|
+
"maxLength": 100,
|
|
43579
|
+
"minLength": 1
|
|
43580
|
+
},
|
|
43581
|
+
"site": {
|
|
43582
|
+
"required": [
|
|
43583
|
+
"name",
|
|
43584
|
+
"slug"
|
|
43585
|
+
],
|
|
43586
|
+
"type": "object",
|
|
43587
|
+
"properties": {
|
|
43588
|
+
"id": {
|
|
43589
|
+
"title": "ID",
|
|
43590
|
+
"type": "integer",
|
|
43591
|
+
"readOnly": true
|
|
43592
|
+
},
|
|
43593
|
+
"url": {
|
|
43594
|
+
"title": "Url",
|
|
43595
|
+
"type": "string",
|
|
43596
|
+
"readOnly": true
|
|
43597
|
+
},
|
|
43598
|
+
"display": {
|
|
43599
|
+
"title": "Display",
|
|
43600
|
+
"type": "string",
|
|
43601
|
+
"readOnly": true
|
|
43602
|
+
},
|
|
43603
|
+
"name": {
|
|
43604
|
+
"title": "Name",
|
|
43605
|
+
"type": "string",
|
|
43606
|
+
"maxLength": 100,
|
|
43607
|
+
"minLength": 1
|
|
43608
|
+
},
|
|
43609
|
+
"slug": {
|
|
43610
|
+
"title": "Slug",
|
|
43611
|
+
"type": "string",
|
|
43612
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
43613
|
+
"maxLength": 100,
|
|
43614
|
+
"minLength": 1
|
|
43615
|
+
}
|
|
43616
|
+
},
|
|
43617
|
+
"x-nullable": true
|
|
43618
|
+
},
|
|
43619
|
+
"parent": {
|
|
43620
|
+
"required": [
|
|
43621
|
+
"name",
|
|
43622
|
+
"slug"
|
|
43623
|
+
],
|
|
43624
|
+
"type": "object",
|
|
43625
|
+
"properties": {
|
|
43626
|
+
"id": {
|
|
43627
|
+
"title": "ID",
|
|
43628
|
+
"type": "integer",
|
|
43629
|
+
"readOnly": true
|
|
43630
|
+
},
|
|
43631
|
+
"url": {
|
|
43632
|
+
"title": "Url",
|
|
43633
|
+
"type": "string",
|
|
43634
|
+
"readOnly": true
|
|
43635
|
+
},
|
|
43636
|
+
"display": {
|
|
43637
|
+
"title": "Display",
|
|
43638
|
+
"type": "string",
|
|
43639
|
+
"readOnly": true
|
|
43640
|
+
},
|
|
43641
|
+
"name": {
|
|
43642
|
+
"title": "Name",
|
|
43643
|
+
"type": "string",
|
|
43644
|
+
"maxLength": 100,
|
|
43645
|
+
"minLength": 1
|
|
43646
|
+
},
|
|
43647
|
+
"slug": {
|
|
43648
|
+
"title": "Slug",
|
|
43649
|
+
"type": "string",
|
|
43650
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
43651
|
+
"maxLength": 100,
|
|
43652
|
+
"minLength": 1
|
|
43653
|
+
},
|
|
43654
|
+
"rack_count": {
|
|
43655
|
+
"title": "Rack count",
|
|
43656
|
+
"type": "integer",
|
|
43657
|
+
"readOnly": true
|
|
43658
|
+
},
|
|
43659
|
+
"_depth": {
|
|
43660
|
+
"title": "depth",
|
|
43661
|
+
"type": "integer",
|
|
43662
|
+
"readOnly": true
|
|
43663
|
+
}
|
|
43664
|
+
},
|
|
43665
|
+
"x-nullable": true
|
|
43666
|
+
},
|
|
43667
|
+
"tenant": {
|
|
43668
|
+
"required": [
|
|
43669
|
+
"name",
|
|
43670
|
+
"slug"
|
|
43671
|
+
],
|
|
43672
|
+
"type": "object",
|
|
43673
|
+
"properties": {
|
|
43674
|
+
"id": {
|
|
43675
|
+
"title": "ID",
|
|
43676
|
+
"type": "integer",
|
|
43677
|
+
"readOnly": true
|
|
43678
|
+
},
|
|
43679
|
+
"url": {
|
|
43680
|
+
"title": "Url",
|
|
43681
|
+
"type": "string",
|
|
43682
|
+
"readOnly": true
|
|
43683
|
+
},
|
|
43684
|
+
"display": {
|
|
43685
|
+
"title": "Display",
|
|
43686
|
+
"type": "string",
|
|
43687
|
+
"readOnly": true
|
|
43688
|
+
},
|
|
43689
|
+
"name": {
|
|
43690
|
+
"title": "Name",
|
|
43691
|
+
"type": "string",
|
|
43692
|
+
"maxLength": 100,
|
|
43693
|
+
"minLength": 1
|
|
43694
|
+
},
|
|
43695
|
+
"slug": {
|
|
43696
|
+
"title": "Slug",
|
|
43697
|
+
"type": "string",
|
|
43698
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
43699
|
+
"maxLength": 100,
|
|
43700
|
+
"minLength": 1
|
|
43701
|
+
}
|
|
43702
|
+
},
|
|
43703
|
+
"x-nullable": true
|
|
43704
|
+
},
|
|
43705
|
+
"description": {
|
|
43706
|
+
"title": "Description",
|
|
43707
|
+
"type": "string",
|
|
43708
|
+
"maxLength": 200
|
|
43709
|
+
},
|
|
43710
|
+
"tags": {
|
|
43711
|
+
"type": "array",
|
|
43712
|
+
"items": {
|
|
43713
|
+
"required": [
|
|
43714
|
+
"name",
|
|
43715
|
+
"slug"
|
|
43716
|
+
],
|
|
43717
|
+
"type": "object",
|
|
43718
|
+
"properties": {
|
|
43719
|
+
"id": {
|
|
43720
|
+
"title": "Id",
|
|
43721
|
+
"type": "integer",
|
|
43722
|
+
"readOnly": true
|
|
43723
|
+
},
|
|
43724
|
+
"url": {
|
|
43725
|
+
"title": "Url",
|
|
43726
|
+
"type": "string",
|
|
43727
|
+
"readOnly": true
|
|
43728
|
+
},
|
|
43729
|
+
"display": {
|
|
43730
|
+
"title": "Display",
|
|
43731
|
+
"type": "string",
|
|
43732
|
+
"readOnly": true
|
|
43733
|
+
},
|
|
43734
|
+
"name": {
|
|
43735
|
+
"title": "Name",
|
|
43736
|
+
"type": "string",
|
|
43737
|
+
"maxLength": 100,
|
|
43738
|
+
"minLength": 1
|
|
43739
|
+
},
|
|
43740
|
+
"slug": {
|
|
43741
|
+
"title": "Slug",
|
|
43742
|
+
"type": "string",
|
|
43743
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
43744
|
+
"maxLength": 100,
|
|
43745
|
+
"minLength": 1
|
|
43746
|
+
},
|
|
43747
|
+
"color": {
|
|
43748
|
+
"title": "Color",
|
|
43749
|
+
"type": "string",
|
|
43750
|
+
"pattern": "^[0-9a-f]{6}$",
|
|
43751
|
+
"maxLength": 6,
|
|
43752
|
+
"minLength": 1
|
|
43753
|
+
}
|
|
43754
|
+
}
|
|
43755
|
+
}
|
|
43756
|
+
},
|
|
43757
|
+
"custom_fields": {
|
|
43758
|
+
"title": "Custom fields",
|
|
43759
|
+
"type": "object",
|
|
43760
|
+
"default": {}
|
|
43761
|
+
},
|
|
43762
|
+
"created": {
|
|
43763
|
+
"title": "Created",
|
|
43764
|
+
"type": "string",
|
|
43765
|
+
"readOnly": true
|
|
43766
|
+
},
|
|
43767
|
+
"last_updated": {
|
|
43768
|
+
"title": "Last updated",
|
|
43769
|
+
"type": "string",
|
|
43770
|
+
"readOnly": true
|
|
43771
|
+
},
|
|
43772
|
+
"rack_count": {
|
|
43773
|
+
"title": "Rack count",
|
|
43774
|
+
"type": "integer",
|
|
43775
|
+
"readOnly": true
|
|
43776
|
+
},
|
|
43777
|
+
"device_count": {
|
|
43778
|
+
"title": "Device count",
|
|
43779
|
+
"type": "integer",
|
|
43780
|
+
"readOnly": true
|
|
43781
|
+
},
|
|
43782
|
+
"_depth": {
|
|
43783
|
+
"title": "depth",
|
|
43784
|
+
"type": "integer",
|
|
43785
|
+
"readOnly": true
|
|
43786
|
+
}
|
|
43787
|
+
}
|
|
43788
|
+
}
|
|
43789
|
+
}
|
|
43790
|
+
}
|
|
43791
|
+
}
|
|
43792
|
+
},
|
|
43793
|
+
"roles": [
|
|
43794
|
+
"admin"
|
|
43795
|
+
],
|
|
43796
|
+
"route": {
|
|
43797
|
+
"verb": "POST",
|
|
43798
|
+
"path": "/getDcimLocations"
|
|
43799
|
+
},
|
|
43800
|
+
"task": true
|
|
43801
|
+
},
|
|
43802
|
+
{
|
|
43803
|
+
"name": "postDcimLocations",
|
|
43804
|
+
"summary": "dcim_locations_create",
|
|
43805
|
+
"description": "dcim_locations_create",
|
|
43806
|
+
"input": [
|
|
43807
|
+
{
|
|
43808
|
+
"name": "data",
|
|
43809
|
+
"type": "object",
|
|
43810
|
+
"info": ": {\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"site\": 123, \"parent\": 123, \"tenant\": 123, \"description\": \"string\", \"tags\": [{\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"color\": \"string\"}], \"custom_fields\": \"object\", \"created\": \"string\", \"last_updated\": \"string\", \"rack_count\": 123, \"device_count\": 123, \"_depth\": 123}",
|
|
43811
|
+
"required": true,
|
|
43812
|
+
"schema": {
|
|
43813
|
+
"required": [
|
|
43814
|
+
"name",
|
|
43815
|
+
"slug",
|
|
43816
|
+
"site"
|
|
43817
|
+
],
|
|
43818
|
+
"type": "object",
|
|
43819
|
+
"properties": {
|
|
43820
|
+
"id": {
|
|
43821
|
+
"title": "ID",
|
|
43822
|
+
"type": "integer",
|
|
43823
|
+
"readOnly": true
|
|
43824
|
+
},
|
|
43825
|
+
"url": {
|
|
43826
|
+
"title": "Url",
|
|
43827
|
+
"type": "string",
|
|
43828
|
+
"readOnly": true
|
|
43829
|
+
},
|
|
43830
|
+
"display": {
|
|
43831
|
+
"title": "Display",
|
|
43832
|
+
"type": "string",
|
|
43833
|
+
"readOnly": true
|
|
43834
|
+
},
|
|
43835
|
+
"name": {
|
|
43836
|
+
"title": "Name",
|
|
43837
|
+
"type": "string",
|
|
43838
|
+
"maxLength": 100,
|
|
43839
|
+
"minLength": 1
|
|
43840
|
+
},
|
|
43841
|
+
"slug": {
|
|
43842
|
+
"title": "Slug",
|
|
43843
|
+
"type": "string",
|
|
43844
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
43845
|
+
"maxLength": 100,
|
|
43846
|
+
"minLength": 1
|
|
43847
|
+
},
|
|
43848
|
+
"site": {
|
|
43849
|
+
"title": "Site",
|
|
43850
|
+
"type": "integer"
|
|
43851
|
+
},
|
|
43852
|
+
"parent": {
|
|
43853
|
+
"title": "Parent",
|
|
43854
|
+
"type": "integer",
|
|
43855
|
+
"x-nullable": true
|
|
43856
|
+
},
|
|
43857
|
+
"tenant": {
|
|
43858
|
+
"title": "Tenant",
|
|
43859
|
+
"type": "integer",
|
|
43860
|
+
"x-nullable": true
|
|
43861
|
+
},
|
|
43862
|
+
"description": {
|
|
43863
|
+
"title": "Description",
|
|
43864
|
+
"type": "string",
|
|
43865
|
+
"maxLength": 200
|
|
43866
|
+
},
|
|
43867
|
+
"tags": {
|
|
43868
|
+
"type": "array",
|
|
43869
|
+
"items": {
|
|
43870
|
+
"required": [
|
|
43871
|
+
"name",
|
|
43872
|
+
"slug"
|
|
43873
|
+
],
|
|
43874
|
+
"type": "object",
|
|
43875
|
+
"properties": {
|
|
43876
|
+
"id": {
|
|
43877
|
+
"title": "Id",
|
|
43878
|
+
"type": "integer",
|
|
43879
|
+
"readOnly": true
|
|
43880
|
+
},
|
|
43881
|
+
"url": {
|
|
43882
|
+
"title": "Url",
|
|
43883
|
+
"type": "string",
|
|
43884
|
+
"readOnly": true
|
|
43885
|
+
},
|
|
43886
|
+
"display": {
|
|
43887
|
+
"title": "Display",
|
|
43888
|
+
"type": "string",
|
|
43889
|
+
"readOnly": true
|
|
43890
|
+
},
|
|
43891
|
+
"name": {
|
|
43892
|
+
"title": "Name",
|
|
43893
|
+
"type": "string",
|
|
43894
|
+
"maxLength": 100,
|
|
43895
|
+
"minLength": 1
|
|
43896
|
+
},
|
|
43897
|
+
"slug": {
|
|
43898
|
+
"title": "Slug",
|
|
43899
|
+
"type": "string",
|
|
43900
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
43901
|
+
"maxLength": 100,
|
|
43902
|
+
"minLength": 1
|
|
43903
|
+
},
|
|
43904
|
+
"color": {
|
|
43905
|
+
"title": "Color",
|
|
43906
|
+
"type": "string",
|
|
43907
|
+
"pattern": "^[0-9a-f]{6}$",
|
|
43908
|
+
"maxLength": 6,
|
|
43909
|
+
"minLength": 1
|
|
43910
|
+
}
|
|
43911
|
+
}
|
|
43912
|
+
}
|
|
43913
|
+
},
|
|
43914
|
+
"custom_fields": {
|
|
43915
|
+
"title": "Custom fields",
|
|
43916
|
+
"type": "object",
|
|
43917
|
+
"default": {}
|
|
43918
|
+
},
|
|
43919
|
+
"created": {
|
|
43920
|
+
"title": "Created",
|
|
43921
|
+
"type": "string",
|
|
43922
|
+
"readOnly": true
|
|
43923
|
+
},
|
|
43924
|
+
"last_updated": {
|
|
43925
|
+
"title": "Last updated",
|
|
43926
|
+
"type": "string",
|
|
43927
|
+
"readOnly": true
|
|
43928
|
+
},
|
|
43929
|
+
"rack_count": {
|
|
43930
|
+
"title": "Rack count",
|
|
43931
|
+
"type": "integer",
|
|
43932
|
+
"readOnly": true
|
|
43933
|
+
},
|
|
43934
|
+
"device_count": {
|
|
43935
|
+
"title": "Device count",
|
|
43936
|
+
"type": "integer",
|
|
43937
|
+
"readOnly": true
|
|
43938
|
+
},
|
|
43939
|
+
"_depth": {
|
|
43940
|
+
"title": "depth",
|
|
43941
|
+
"type": "integer",
|
|
43942
|
+
"readOnly": true
|
|
43943
|
+
}
|
|
43944
|
+
},
|
|
43945
|
+
"definitions": {}
|
|
43946
|
+
}
|
|
43947
|
+
}
|
|
43948
|
+
],
|
|
43949
|
+
"output": {
|
|
43950
|
+
"name": "result",
|
|
43951
|
+
"type": "object",
|
|
43952
|
+
"description": "A JSON Object containing status, code and the result",
|
|
43953
|
+
"schema": {
|
|
43954
|
+
"title": "result",
|
|
43955
|
+
"type": "object"
|
|
43956
|
+
}
|
|
43957
|
+
},
|
|
43958
|
+
"roles": [
|
|
43959
|
+
"admin"
|
|
43960
|
+
],
|
|
43961
|
+
"route": {
|
|
43962
|
+
"verb": "POST",
|
|
43963
|
+
"path": "/postDcimLocations"
|
|
43964
|
+
},
|
|
43965
|
+
"task": true
|
|
43966
|
+
},
|
|
43967
|
+
{
|
|
43968
|
+
"name": "putDcimLocations",
|
|
43969
|
+
"summary": "dcim_locations_bulk_update",
|
|
43970
|
+
"description": "dcim_locations_bulk_update",
|
|
43971
|
+
"input": [
|
|
43972
|
+
{
|
|
43973
|
+
"name": "data",
|
|
43974
|
+
"type": "object",
|
|
43975
|
+
"info": ": {\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"site\": 123, \"parent\": 123, \"tenant\": 123, \"description\": \"string\", \"tags\": [{\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"color\": \"string\"}], \"custom_fields\": \"object\", \"created\": \"string\", \"last_updated\": \"string\", \"rack_count\": 123, \"device_count\": 123, \"_depth\": 123}",
|
|
43976
|
+
"required": true,
|
|
43977
|
+
"schema": {
|
|
43978
|
+
"required": [
|
|
43979
|
+
"name",
|
|
43980
|
+
"slug",
|
|
43981
|
+
"site"
|
|
43982
|
+
],
|
|
43983
|
+
"type": "object",
|
|
43984
|
+
"properties": {
|
|
43985
|
+
"id": {
|
|
43986
|
+
"title": "ID",
|
|
43987
|
+
"type": "integer",
|
|
43988
|
+
"readOnly": true
|
|
43989
|
+
},
|
|
43990
|
+
"url": {
|
|
43991
|
+
"title": "Url",
|
|
43992
|
+
"type": "string",
|
|
43993
|
+
"readOnly": true
|
|
43994
|
+
},
|
|
43995
|
+
"display": {
|
|
43996
|
+
"title": "Display",
|
|
43997
|
+
"type": "string",
|
|
43998
|
+
"readOnly": true
|
|
43999
|
+
},
|
|
44000
|
+
"name": {
|
|
44001
|
+
"title": "Name",
|
|
44002
|
+
"type": "string",
|
|
44003
|
+
"maxLength": 100,
|
|
44004
|
+
"minLength": 1
|
|
44005
|
+
},
|
|
44006
|
+
"slug": {
|
|
44007
|
+
"title": "Slug",
|
|
44008
|
+
"type": "string",
|
|
44009
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
44010
|
+
"maxLength": 100,
|
|
44011
|
+
"minLength": 1
|
|
44012
|
+
},
|
|
44013
|
+
"site": {
|
|
44014
|
+
"title": "Site",
|
|
44015
|
+
"type": "integer"
|
|
44016
|
+
},
|
|
44017
|
+
"parent": {
|
|
44018
|
+
"title": "Parent",
|
|
44019
|
+
"type": "integer",
|
|
44020
|
+
"x-nullable": true
|
|
44021
|
+
},
|
|
44022
|
+
"tenant": {
|
|
44023
|
+
"title": "Tenant",
|
|
44024
|
+
"type": "integer",
|
|
44025
|
+
"x-nullable": true
|
|
44026
|
+
},
|
|
44027
|
+
"description": {
|
|
44028
|
+
"title": "Description",
|
|
44029
|
+
"type": "string",
|
|
44030
|
+
"maxLength": 200
|
|
44031
|
+
},
|
|
44032
|
+
"tags": {
|
|
44033
|
+
"type": "array",
|
|
44034
|
+
"items": {
|
|
44035
|
+
"required": [
|
|
44036
|
+
"name",
|
|
44037
|
+
"slug"
|
|
44038
|
+
],
|
|
44039
|
+
"type": "object",
|
|
44040
|
+
"properties": {
|
|
44041
|
+
"id": {
|
|
44042
|
+
"title": "Id",
|
|
44043
|
+
"type": "integer",
|
|
44044
|
+
"readOnly": true
|
|
44045
|
+
},
|
|
44046
|
+
"url": {
|
|
44047
|
+
"title": "Url",
|
|
44048
|
+
"type": "string",
|
|
44049
|
+
"readOnly": true
|
|
44050
|
+
},
|
|
44051
|
+
"display": {
|
|
44052
|
+
"title": "Display",
|
|
44053
|
+
"type": "string",
|
|
44054
|
+
"readOnly": true
|
|
44055
|
+
},
|
|
44056
|
+
"name": {
|
|
44057
|
+
"title": "Name",
|
|
44058
|
+
"type": "string",
|
|
44059
|
+
"maxLength": 100,
|
|
44060
|
+
"minLength": 1
|
|
44061
|
+
},
|
|
44062
|
+
"slug": {
|
|
44063
|
+
"title": "Slug",
|
|
44064
|
+
"type": "string",
|
|
44065
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
44066
|
+
"maxLength": 100,
|
|
44067
|
+
"minLength": 1
|
|
44068
|
+
},
|
|
44069
|
+
"color": {
|
|
44070
|
+
"title": "Color",
|
|
44071
|
+
"type": "string",
|
|
44072
|
+
"pattern": "^[0-9a-f]{6}$",
|
|
44073
|
+
"maxLength": 6,
|
|
44074
|
+
"minLength": 1
|
|
44075
|
+
}
|
|
44076
|
+
}
|
|
44077
|
+
}
|
|
44078
|
+
},
|
|
44079
|
+
"custom_fields": {
|
|
44080
|
+
"title": "Custom fields",
|
|
44081
|
+
"type": "object",
|
|
44082
|
+
"default": {}
|
|
44083
|
+
},
|
|
44084
|
+
"created": {
|
|
44085
|
+
"title": "Created",
|
|
44086
|
+
"type": "string",
|
|
44087
|
+
"readOnly": true
|
|
44088
|
+
},
|
|
44089
|
+
"last_updated": {
|
|
44090
|
+
"title": "Last updated",
|
|
44091
|
+
"type": "string",
|
|
44092
|
+
"readOnly": true
|
|
44093
|
+
},
|
|
44094
|
+
"rack_count": {
|
|
44095
|
+
"title": "Rack count",
|
|
44096
|
+
"type": "integer",
|
|
44097
|
+
"readOnly": true
|
|
44098
|
+
},
|
|
44099
|
+
"device_count": {
|
|
44100
|
+
"title": "Device count",
|
|
44101
|
+
"type": "integer",
|
|
44102
|
+
"readOnly": true
|
|
44103
|
+
},
|
|
44104
|
+
"_depth": {
|
|
44105
|
+
"title": "depth",
|
|
44106
|
+
"type": "integer",
|
|
44107
|
+
"readOnly": true
|
|
44108
|
+
}
|
|
44109
|
+
},
|
|
44110
|
+
"definitions": {}
|
|
44111
|
+
}
|
|
44112
|
+
}
|
|
44113
|
+
],
|
|
44114
|
+
"output": {
|
|
44115
|
+
"name": "result",
|
|
44116
|
+
"type": "object",
|
|
44117
|
+
"description": "A JSON Object containing status, code and the result",
|
|
44118
|
+
"schema": {
|
|
44119
|
+
"title": "result",
|
|
44120
|
+
"type": "object"
|
|
44121
|
+
}
|
|
44122
|
+
},
|
|
44123
|
+
"roles": [
|
|
44124
|
+
"admin"
|
|
44125
|
+
],
|
|
44126
|
+
"route": {
|
|
44127
|
+
"verb": "POST",
|
|
44128
|
+
"path": "/putDcimLocations"
|
|
44129
|
+
},
|
|
44130
|
+
"task": true
|
|
44131
|
+
},
|
|
44132
|
+
{
|
|
44133
|
+
"name": "patchDcimLocations",
|
|
44134
|
+
"summary": "dcim_locations_bulk_partial_update",
|
|
44135
|
+
"description": "dcim_locations_bulk_partial_update",
|
|
44136
|
+
"input": [
|
|
44137
|
+
{
|
|
44138
|
+
"name": "data",
|
|
44139
|
+
"type": "object",
|
|
44140
|
+
"info": ": {\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"site\": 123, \"parent\": 123, \"tenant\": 123, \"description\": \"string\", \"tags\": [{\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"color\": \"string\"}], \"custom_fields\": \"object\", \"created\": \"string\", \"last_updated\": \"string\", \"rack_count\": 123, \"device_count\": 123, \"_depth\": 123}",
|
|
44141
|
+
"required": true,
|
|
44142
|
+
"schema": {
|
|
44143
|
+
"required": [
|
|
44144
|
+
"name",
|
|
44145
|
+
"slug",
|
|
44146
|
+
"site"
|
|
44147
|
+
],
|
|
44148
|
+
"type": "object",
|
|
44149
|
+
"properties": {
|
|
44150
|
+
"id": {
|
|
44151
|
+
"title": "ID",
|
|
44152
|
+
"type": "integer",
|
|
44153
|
+
"readOnly": true
|
|
44154
|
+
},
|
|
44155
|
+
"url": {
|
|
44156
|
+
"title": "Url",
|
|
44157
|
+
"type": "string",
|
|
44158
|
+
"readOnly": true
|
|
44159
|
+
},
|
|
44160
|
+
"display": {
|
|
44161
|
+
"title": "Display",
|
|
44162
|
+
"type": "string",
|
|
44163
|
+
"readOnly": true
|
|
44164
|
+
},
|
|
44165
|
+
"name": {
|
|
44166
|
+
"title": "Name",
|
|
44167
|
+
"type": "string",
|
|
44168
|
+
"maxLength": 100,
|
|
44169
|
+
"minLength": 1
|
|
44170
|
+
},
|
|
44171
|
+
"slug": {
|
|
44172
|
+
"title": "Slug",
|
|
44173
|
+
"type": "string",
|
|
44174
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
44175
|
+
"maxLength": 100,
|
|
44176
|
+
"minLength": 1
|
|
44177
|
+
},
|
|
44178
|
+
"site": {
|
|
44179
|
+
"title": "Site",
|
|
44180
|
+
"type": "integer"
|
|
44181
|
+
},
|
|
44182
|
+
"parent": {
|
|
44183
|
+
"title": "Parent",
|
|
44184
|
+
"type": "integer",
|
|
44185
|
+
"x-nullable": true
|
|
44186
|
+
},
|
|
44187
|
+
"tenant": {
|
|
44188
|
+
"title": "Tenant",
|
|
44189
|
+
"type": "integer",
|
|
44190
|
+
"x-nullable": true
|
|
44191
|
+
},
|
|
44192
|
+
"description": {
|
|
44193
|
+
"title": "Description",
|
|
44194
|
+
"type": "string",
|
|
44195
|
+
"maxLength": 200
|
|
44196
|
+
},
|
|
44197
|
+
"tags": {
|
|
44198
|
+
"type": "array",
|
|
44199
|
+
"items": {
|
|
44200
|
+
"required": [
|
|
44201
|
+
"name",
|
|
44202
|
+
"slug"
|
|
44203
|
+
],
|
|
44204
|
+
"type": "object",
|
|
44205
|
+
"properties": {
|
|
44206
|
+
"id": {
|
|
44207
|
+
"title": "Id",
|
|
44208
|
+
"type": "integer",
|
|
44209
|
+
"readOnly": true
|
|
44210
|
+
},
|
|
44211
|
+
"url": {
|
|
44212
|
+
"title": "Url",
|
|
44213
|
+
"type": "string",
|
|
44214
|
+
"readOnly": true
|
|
44215
|
+
},
|
|
44216
|
+
"display": {
|
|
44217
|
+
"title": "Display",
|
|
44218
|
+
"type": "string",
|
|
44219
|
+
"readOnly": true
|
|
44220
|
+
},
|
|
44221
|
+
"name": {
|
|
44222
|
+
"title": "Name",
|
|
44223
|
+
"type": "string",
|
|
44224
|
+
"maxLength": 100,
|
|
44225
|
+
"minLength": 1
|
|
44226
|
+
},
|
|
44227
|
+
"slug": {
|
|
44228
|
+
"title": "Slug",
|
|
44229
|
+
"type": "string",
|
|
44230
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
44231
|
+
"maxLength": 100,
|
|
44232
|
+
"minLength": 1
|
|
44233
|
+
},
|
|
44234
|
+
"color": {
|
|
44235
|
+
"title": "Color",
|
|
44236
|
+
"type": "string",
|
|
44237
|
+
"pattern": "^[0-9a-f]{6}$",
|
|
44238
|
+
"maxLength": 6,
|
|
44239
|
+
"minLength": 1
|
|
44240
|
+
}
|
|
44241
|
+
}
|
|
44242
|
+
}
|
|
44243
|
+
},
|
|
44244
|
+
"custom_fields": {
|
|
44245
|
+
"title": "Custom fields",
|
|
44246
|
+
"type": "object",
|
|
44247
|
+
"default": {}
|
|
44248
|
+
},
|
|
44249
|
+
"created": {
|
|
44250
|
+
"title": "Created",
|
|
44251
|
+
"type": "string",
|
|
44252
|
+
"readOnly": true
|
|
44253
|
+
},
|
|
44254
|
+
"last_updated": {
|
|
44255
|
+
"title": "Last updated",
|
|
44256
|
+
"type": "string",
|
|
44257
|
+
"readOnly": true
|
|
44258
|
+
},
|
|
44259
|
+
"rack_count": {
|
|
44260
|
+
"title": "Rack count",
|
|
44261
|
+
"type": "integer",
|
|
44262
|
+
"readOnly": true
|
|
44263
|
+
},
|
|
44264
|
+
"device_count": {
|
|
44265
|
+
"title": "Device count",
|
|
44266
|
+
"type": "integer",
|
|
44267
|
+
"readOnly": true
|
|
44268
|
+
},
|
|
44269
|
+
"_depth": {
|
|
44270
|
+
"title": "depth",
|
|
44271
|
+
"type": "integer",
|
|
44272
|
+
"readOnly": true
|
|
44273
|
+
}
|
|
44274
|
+
},
|
|
44275
|
+
"definitions": {}
|
|
44276
|
+
}
|
|
44277
|
+
}
|
|
44278
|
+
],
|
|
44279
|
+
"output": {
|
|
44280
|
+
"name": "result",
|
|
44281
|
+
"type": "object",
|
|
44282
|
+
"description": "A JSON Object containing status, code and the result",
|
|
44283
|
+
"schema": {
|
|
44284
|
+
"title": "result",
|
|
44285
|
+
"type": "object"
|
|
44286
|
+
}
|
|
44287
|
+
},
|
|
44288
|
+
"roles": [
|
|
44289
|
+
"admin"
|
|
44290
|
+
],
|
|
44291
|
+
"route": {
|
|
44292
|
+
"verb": "POST",
|
|
44293
|
+
"path": "/patchDcimLocations"
|
|
44294
|
+
},
|
|
44295
|
+
"task": true
|
|
44296
|
+
},
|
|
44297
|
+
{
|
|
44298
|
+
"name": "deleteDcimLocations",
|
|
44299
|
+
"summary": "dcim_locations_bulk_delete",
|
|
44300
|
+
"description": "dcim_locations_bulk_delete",
|
|
44301
|
+
"input": [],
|
|
44302
|
+
"output": {
|
|
44303
|
+
"name": "result",
|
|
44304
|
+
"type": "object",
|
|
44305
|
+
"description": "A JSON Object containing status, code and the result",
|
|
44306
|
+
"schema": {
|
|
44307
|
+
"title": "result",
|
|
44308
|
+
"type": "object"
|
|
44309
|
+
}
|
|
44310
|
+
},
|
|
44311
|
+
"roles": [
|
|
44312
|
+
"admin"
|
|
44313
|
+
],
|
|
44314
|
+
"route": {
|
|
44315
|
+
"verb": "GET",
|
|
44316
|
+
"path": "/deleteDcimLocations"
|
|
44317
|
+
},
|
|
44318
|
+
"task": true
|
|
44319
|
+
},
|
|
44320
|
+
{
|
|
44321
|
+
"name": "getDcimLocationsId",
|
|
44322
|
+
"summary": "dcim_locations_read",
|
|
44323
|
+
"description": "dcim_locations_read",
|
|
44324
|
+
"input": [
|
|
44325
|
+
{
|
|
44326
|
+
"name": "id",
|
|
44327
|
+
"type": "number",
|
|
44328
|
+
"info": "A unique integer value identifying this location.: 123",
|
|
44329
|
+
"required": true,
|
|
44330
|
+
"schema": {
|
|
44331
|
+
"title": "id",
|
|
44332
|
+
"type": "number"
|
|
44333
|
+
}
|
|
44334
|
+
}
|
|
44335
|
+
],
|
|
44336
|
+
"output": {
|
|
44337
|
+
"name": "result",
|
|
44338
|
+
"type": "object",
|
|
44339
|
+
"description": "A JSON Object containing status, code and the result",
|
|
44340
|
+
"schema": {
|
|
44341
|
+
"title": "result",
|
|
44342
|
+
"type": "object"
|
|
44343
|
+
}
|
|
44344
|
+
},
|
|
44345
|
+
"roles": [
|
|
44346
|
+
"admin"
|
|
44347
|
+
],
|
|
44348
|
+
"route": {
|
|
44349
|
+
"verb": "POST",
|
|
44350
|
+
"path": "/getDcimLocationsId"
|
|
44351
|
+
},
|
|
44352
|
+
"task": true
|
|
44353
|
+
},
|
|
44354
|
+
{
|
|
44355
|
+
"name": "putDcimLocationsId",
|
|
44356
|
+
"summary": "dcim_locations_update",
|
|
44357
|
+
"description": "dcim_locations_update",
|
|
44358
|
+
"input": [
|
|
44359
|
+
{
|
|
44360
|
+
"name": "id",
|
|
44361
|
+
"type": "number",
|
|
44362
|
+
"info": "A unique integer value identifying this location.: 123",
|
|
44363
|
+
"required": true,
|
|
44364
|
+
"schema": {
|
|
44365
|
+
"title": "id",
|
|
44366
|
+
"type": "number"
|
|
44367
|
+
}
|
|
44368
|
+
},
|
|
44369
|
+
{
|
|
44370
|
+
"name": "data",
|
|
44371
|
+
"type": "object",
|
|
44372
|
+
"info": ": {\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"site\": 123, \"parent\": 123, \"tenant\": 123, \"description\": \"string\", \"tags\": [{\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"color\": \"string\"}], \"custom_fields\": \"object\", \"created\": \"string\", \"last_updated\": \"string\", \"rack_count\": 123, \"device_count\": 123, \"_depth\": 123}",
|
|
44373
|
+
"required": true,
|
|
44374
|
+
"schema": {
|
|
44375
|
+
"required": [
|
|
44376
|
+
"name",
|
|
44377
|
+
"slug",
|
|
44378
|
+
"site"
|
|
44379
|
+
],
|
|
44380
|
+
"type": "object",
|
|
44381
|
+
"properties": {
|
|
44382
|
+
"id": {
|
|
44383
|
+
"title": "ID",
|
|
44384
|
+
"type": "integer",
|
|
44385
|
+
"readOnly": true
|
|
44386
|
+
},
|
|
44387
|
+
"url": {
|
|
44388
|
+
"title": "Url",
|
|
44389
|
+
"type": "string",
|
|
44390
|
+
"readOnly": true
|
|
44391
|
+
},
|
|
44392
|
+
"display": {
|
|
44393
|
+
"title": "Display",
|
|
44394
|
+
"type": "string",
|
|
44395
|
+
"readOnly": true
|
|
44396
|
+
},
|
|
44397
|
+
"name": {
|
|
44398
|
+
"title": "Name",
|
|
44399
|
+
"type": "string",
|
|
44400
|
+
"maxLength": 100,
|
|
44401
|
+
"minLength": 1
|
|
44402
|
+
},
|
|
44403
|
+
"slug": {
|
|
44404
|
+
"title": "Slug",
|
|
44405
|
+
"type": "string",
|
|
44406
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
44407
|
+
"maxLength": 100,
|
|
44408
|
+
"minLength": 1
|
|
44409
|
+
},
|
|
44410
|
+
"site": {
|
|
44411
|
+
"title": "Site",
|
|
44412
|
+
"type": "integer"
|
|
44413
|
+
},
|
|
44414
|
+
"parent": {
|
|
44415
|
+
"title": "Parent",
|
|
44416
|
+
"type": "integer",
|
|
44417
|
+
"x-nullable": true
|
|
44418
|
+
},
|
|
44419
|
+
"tenant": {
|
|
44420
|
+
"title": "Tenant",
|
|
44421
|
+
"type": "integer",
|
|
44422
|
+
"x-nullable": true
|
|
44423
|
+
},
|
|
44424
|
+
"description": {
|
|
44425
|
+
"title": "Description",
|
|
44426
|
+
"type": "string",
|
|
44427
|
+
"maxLength": 200
|
|
44428
|
+
},
|
|
44429
|
+
"tags": {
|
|
44430
|
+
"type": "array",
|
|
44431
|
+
"items": {
|
|
44432
|
+
"required": [
|
|
44433
|
+
"name",
|
|
44434
|
+
"slug"
|
|
44435
|
+
],
|
|
44436
|
+
"type": "object",
|
|
44437
|
+
"properties": {
|
|
44438
|
+
"id": {
|
|
44439
|
+
"title": "Id",
|
|
44440
|
+
"type": "integer",
|
|
44441
|
+
"readOnly": true
|
|
44442
|
+
},
|
|
44443
|
+
"url": {
|
|
44444
|
+
"title": "Url",
|
|
44445
|
+
"type": "string",
|
|
44446
|
+
"readOnly": true
|
|
44447
|
+
},
|
|
44448
|
+
"display": {
|
|
44449
|
+
"title": "Display",
|
|
44450
|
+
"type": "string",
|
|
44451
|
+
"readOnly": true
|
|
44452
|
+
},
|
|
44453
|
+
"name": {
|
|
44454
|
+
"title": "Name",
|
|
44455
|
+
"type": "string",
|
|
44456
|
+
"maxLength": 100,
|
|
44457
|
+
"minLength": 1
|
|
44458
|
+
},
|
|
44459
|
+
"slug": {
|
|
44460
|
+
"title": "Slug",
|
|
44461
|
+
"type": "string",
|
|
44462
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
44463
|
+
"maxLength": 100,
|
|
44464
|
+
"minLength": 1
|
|
44465
|
+
},
|
|
44466
|
+
"color": {
|
|
44467
|
+
"title": "Color",
|
|
44468
|
+
"type": "string",
|
|
44469
|
+
"pattern": "^[0-9a-f]{6}$",
|
|
44470
|
+
"maxLength": 6,
|
|
44471
|
+
"minLength": 1
|
|
44472
|
+
}
|
|
44473
|
+
}
|
|
44474
|
+
}
|
|
44475
|
+
},
|
|
44476
|
+
"custom_fields": {
|
|
44477
|
+
"title": "Custom fields",
|
|
44478
|
+
"type": "object",
|
|
44479
|
+
"default": {}
|
|
44480
|
+
},
|
|
44481
|
+
"created": {
|
|
44482
|
+
"title": "Created",
|
|
44483
|
+
"type": "string",
|
|
44484
|
+
"readOnly": true
|
|
44485
|
+
},
|
|
44486
|
+
"last_updated": {
|
|
44487
|
+
"title": "Last updated",
|
|
44488
|
+
"type": "string",
|
|
44489
|
+
"readOnly": true
|
|
44490
|
+
},
|
|
44491
|
+
"rack_count": {
|
|
44492
|
+
"title": "Rack count",
|
|
44493
|
+
"type": "integer",
|
|
44494
|
+
"readOnly": true
|
|
44495
|
+
},
|
|
44496
|
+
"device_count": {
|
|
44497
|
+
"title": "Device count",
|
|
44498
|
+
"type": "integer",
|
|
44499
|
+
"readOnly": true
|
|
44500
|
+
},
|
|
44501
|
+
"_depth": {
|
|
44502
|
+
"title": "depth",
|
|
44503
|
+
"type": "integer",
|
|
44504
|
+
"readOnly": true
|
|
44505
|
+
}
|
|
44506
|
+
},
|
|
44507
|
+
"definitions": {}
|
|
44508
|
+
}
|
|
44509
|
+
}
|
|
44510
|
+
],
|
|
44511
|
+
"output": {
|
|
44512
|
+
"name": "result",
|
|
44513
|
+
"type": "object",
|
|
44514
|
+
"description": "A JSON Object containing status, code and the result",
|
|
44515
|
+
"schema": {
|
|
44516
|
+
"title": "result",
|
|
44517
|
+
"type": "object"
|
|
44518
|
+
}
|
|
44519
|
+
},
|
|
44520
|
+
"roles": [
|
|
44521
|
+
"admin"
|
|
44522
|
+
],
|
|
44523
|
+
"route": {
|
|
44524
|
+
"verb": "POST",
|
|
44525
|
+
"path": "/putDcimLocationsId"
|
|
44526
|
+
},
|
|
44527
|
+
"task": true
|
|
44528
|
+
},
|
|
44529
|
+
{
|
|
44530
|
+
"name": "patchDcimLocationsId",
|
|
44531
|
+
"summary": "dcim_locations_partial_update",
|
|
44532
|
+
"description": "dcim_locations_partial_update",
|
|
44533
|
+
"input": [
|
|
44534
|
+
{
|
|
44535
|
+
"name": "id",
|
|
44536
|
+
"type": "number",
|
|
44537
|
+
"info": "A unique integer value identifying this location.: 123",
|
|
44538
|
+
"required": true,
|
|
44539
|
+
"schema": {
|
|
44540
|
+
"title": "id",
|
|
44541
|
+
"type": "number"
|
|
44542
|
+
}
|
|
44543
|
+
},
|
|
44544
|
+
{
|
|
44545
|
+
"name": "data",
|
|
44546
|
+
"type": "object",
|
|
44547
|
+
"info": ": {\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"site\": 123, \"parent\": 123, \"tenant\": 123, \"description\": \"string\", \"tags\": [{\"id\": 123, \"url\": \"string\", \"display\": \"string\", \"name\": \"string\", \"slug\": \"string\", \"color\": \"string\"}], \"custom_fields\": \"object\", \"created\": \"string\", \"last_updated\": \"string\", \"rack_count\": 123, \"device_count\": 123, \"_depth\": 123}",
|
|
44548
|
+
"required": true,
|
|
44549
|
+
"schema": {
|
|
44550
|
+
"required": [
|
|
44551
|
+
"name",
|
|
44552
|
+
"slug",
|
|
44553
|
+
"site"
|
|
44554
|
+
],
|
|
44555
|
+
"type": "object",
|
|
44556
|
+
"properties": {
|
|
44557
|
+
"id": {
|
|
44558
|
+
"title": "ID",
|
|
44559
|
+
"type": "integer",
|
|
44560
|
+
"readOnly": true
|
|
44561
|
+
},
|
|
44562
|
+
"url": {
|
|
44563
|
+
"title": "Url",
|
|
44564
|
+
"type": "string",
|
|
44565
|
+
"readOnly": true
|
|
44566
|
+
},
|
|
44567
|
+
"display": {
|
|
44568
|
+
"title": "Display",
|
|
44569
|
+
"type": "string",
|
|
44570
|
+
"readOnly": true
|
|
44571
|
+
},
|
|
44572
|
+
"name": {
|
|
44573
|
+
"title": "Name",
|
|
44574
|
+
"type": "string",
|
|
44575
|
+
"maxLength": 100,
|
|
44576
|
+
"minLength": 1
|
|
44577
|
+
},
|
|
44578
|
+
"slug": {
|
|
44579
|
+
"title": "Slug",
|
|
44580
|
+
"type": "string",
|
|
44581
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
44582
|
+
"maxLength": 100,
|
|
44583
|
+
"minLength": 1
|
|
44584
|
+
},
|
|
44585
|
+
"site": {
|
|
44586
|
+
"title": "Site",
|
|
44587
|
+
"type": "integer"
|
|
44588
|
+
},
|
|
44589
|
+
"parent": {
|
|
44590
|
+
"title": "Parent",
|
|
44591
|
+
"type": "integer",
|
|
44592
|
+
"x-nullable": true
|
|
44593
|
+
},
|
|
44594
|
+
"tenant": {
|
|
44595
|
+
"title": "Tenant",
|
|
44596
|
+
"type": "integer",
|
|
44597
|
+
"x-nullable": true
|
|
44598
|
+
},
|
|
44599
|
+
"description": {
|
|
44600
|
+
"title": "Description",
|
|
44601
|
+
"type": "string",
|
|
44602
|
+
"maxLength": 200
|
|
44603
|
+
},
|
|
44604
|
+
"tags": {
|
|
44605
|
+
"type": "array",
|
|
44606
|
+
"items": {
|
|
44607
|
+
"required": [
|
|
44608
|
+
"name",
|
|
44609
|
+
"slug"
|
|
44610
|
+
],
|
|
44611
|
+
"type": "object",
|
|
44612
|
+
"properties": {
|
|
44613
|
+
"id": {
|
|
44614
|
+
"title": "Id",
|
|
44615
|
+
"type": "integer",
|
|
44616
|
+
"readOnly": true
|
|
44617
|
+
},
|
|
44618
|
+
"url": {
|
|
44619
|
+
"title": "Url",
|
|
44620
|
+
"type": "string",
|
|
44621
|
+
"readOnly": true
|
|
44622
|
+
},
|
|
44623
|
+
"display": {
|
|
44624
|
+
"title": "Display",
|
|
44625
|
+
"type": "string",
|
|
44626
|
+
"readOnly": true
|
|
44627
|
+
},
|
|
44628
|
+
"name": {
|
|
44629
|
+
"title": "Name",
|
|
44630
|
+
"type": "string",
|
|
44631
|
+
"maxLength": 100,
|
|
44632
|
+
"minLength": 1
|
|
44633
|
+
},
|
|
44634
|
+
"slug": {
|
|
44635
|
+
"title": "Slug",
|
|
44636
|
+
"type": "string",
|
|
44637
|
+
"pattern": "^[-a-zA-Z0-9_]+$",
|
|
44638
|
+
"maxLength": 100,
|
|
44639
|
+
"minLength": 1
|
|
44640
|
+
},
|
|
44641
|
+
"color": {
|
|
44642
|
+
"title": "Color",
|
|
44643
|
+
"type": "string",
|
|
44644
|
+
"pattern": "^[0-9a-f]{6}$",
|
|
44645
|
+
"maxLength": 6,
|
|
44646
|
+
"minLength": 1
|
|
44647
|
+
}
|
|
44648
|
+
}
|
|
44649
|
+
}
|
|
44650
|
+
},
|
|
44651
|
+
"custom_fields": {
|
|
44652
|
+
"title": "Custom fields",
|
|
44653
|
+
"type": "object",
|
|
44654
|
+
"default": {}
|
|
44655
|
+
},
|
|
44656
|
+
"created": {
|
|
44657
|
+
"title": "Created",
|
|
44658
|
+
"type": "string",
|
|
44659
|
+
"readOnly": true
|
|
44660
|
+
},
|
|
44661
|
+
"last_updated": {
|
|
44662
|
+
"title": "Last updated",
|
|
44663
|
+
"type": "string",
|
|
44664
|
+
"readOnly": true
|
|
44665
|
+
},
|
|
44666
|
+
"rack_count": {
|
|
44667
|
+
"title": "Rack count",
|
|
44668
|
+
"type": "integer",
|
|
44669
|
+
"readOnly": true
|
|
44670
|
+
},
|
|
44671
|
+
"device_count": {
|
|
44672
|
+
"title": "Device count",
|
|
44673
|
+
"type": "integer",
|
|
44674
|
+
"readOnly": true
|
|
44675
|
+
},
|
|
44676
|
+
"_depth": {
|
|
44677
|
+
"title": "depth",
|
|
44678
|
+
"type": "integer",
|
|
44679
|
+
"readOnly": true
|
|
44680
|
+
}
|
|
44681
|
+
},
|
|
44682
|
+
"definitions": {}
|
|
44683
|
+
}
|
|
44684
|
+
}
|
|
44685
|
+
],
|
|
44686
|
+
"output": {
|
|
44687
|
+
"name": "result",
|
|
44688
|
+
"type": "object",
|
|
44689
|
+
"description": "A JSON Object containing status, code and the result",
|
|
44690
|
+
"schema": {
|
|
44691
|
+
"title": "result",
|
|
44692
|
+
"type": "object"
|
|
44693
|
+
}
|
|
44694
|
+
},
|
|
44695
|
+
"roles": [
|
|
44696
|
+
"admin"
|
|
44697
|
+
],
|
|
44698
|
+
"route": {
|
|
44699
|
+
"verb": "POST",
|
|
44700
|
+
"path": "/patchDcimLocationsId"
|
|
44701
|
+
},
|
|
44702
|
+
"task": true
|
|
44703
|
+
},
|
|
44704
|
+
{
|
|
44705
|
+
"name": "deleteDcimLocationsId",
|
|
44706
|
+
"summary": "dcim_locations_delete",
|
|
44707
|
+
"description": "dcim_locations_delete",
|
|
44708
|
+
"input": [
|
|
44709
|
+
{
|
|
44710
|
+
"name": "id",
|
|
44711
|
+
"type": "number",
|
|
44712
|
+
"info": "A unique integer value identifying this location.: 123",
|
|
44713
|
+
"required": true,
|
|
44714
|
+
"schema": {
|
|
44715
|
+
"title": "id",
|
|
44716
|
+
"type": "number"
|
|
44717
|
+
}
|
|
44718
|
+
}
|
|
44719
|
+
],
|
|
44720
|
+
"output": {
|
|
44721
|
+
"name": "result",
|
|
44722
|
+
"type": "object",
|
|
44723
|
+
"description": "A JSON Object containing status, code and the result",
|
|
44724
|
+
"schema": {
|
|
44725
|
+
"title": "result",
|
|
44726
|
+
"type": "object"
|
|
44727
|
+
}
|
|
44728
|
+
},
|
|
44729
|
+
"roles": [
|
|
44730
|
+
"admin"
|
|
44731
|
+
],
|
|
44732
|
+
"route": {
|
|
44733
|
+
"verb": "POST",
|
|
44734
|
+
"path": "/deleteDcimLocationsId"
|
|
44735
|
+
},
|
|
44736
|
+
"task": true
|
|
42665
44737
|
}
|
|
42666
44738
|
],
|
|
42667
44739
|
"views": []
|