@pellux/goodvibes-tui 0.19.51 → 0.19.53
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/CHANGELOG.md +27 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +790 -370
- package/package.json +2 -2
- package/src/input/commands/knowledge.ts +54 -1
- package/src/version.ts +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.26.
|
|
6
|
+
"version": "0.26.8"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -33173,6 +33173,426 @@
|
|
|
33173
33173
|
},
|
|
33174
33174
|
"invokable": true
|
|
33175
33175
|
},
|
|
33176
|
+
{
|
|
33177
|
+
"id": "knowledge.issue.review",
|
|
33178
|
+
"title": "Review Knowledge Issue",
|
|
33179
|
+
"description": "Record an LLM or user review decision for a knowledge issue and optionally apply semantic facts to the linked source or node.",
|
|
33180
|
+
"category": "knowledge",
|
|
33181
|
+
"source": "builtin",
|
|
33182
|
+
"access": "admin",
|
|
33183
|
+
"transport": [
|
|
33184
|
+
"http",
|
|
33185
|
+
"ws"
|
|
33186
|
+
],
|
|
33187
|
+
"scopes": [
|
|
33188
|
+
"write:knowledge"
|
|
33189
|
+
],
|
|
33190
|
+
"http": {
|
|
33191
|
+
"method": "POST",
|
|
33192
|
+
"path": "/api/knowledge/issues/{id}/review"
|
|
33193
|
+
},
|
|
33194
|
+
"inputSchema": {
|
|
33195
|
+
"type": "object",
|
|
33196
|
+
"properties": {
|
|
33197
|
+
"id": {
|
|
33198
|
+
"type": "string"
|
|
33199
|
+
},
|
|
33200
|
+
"action": {
|
|
33201
|
+
"type": "string"
|
|
33202
|
+
},
|
|
33203
|
+
"reviewer": {
|
|
33204
|
+
"type": "string"
|
|
33205
|
+
},
|
|
33206
|
+
"value": {
|
|
33207
|
+
"type": "object",
|
|
33208
|
+
"additionalProperties": {
|
|
33209
|
+
"anyOf": [
|
|
33210
|
+
{
|
|
33211
|
+
"type": "string"
|
|
33212
|
+
},
|
|
33213
|
+
{
|
|
33214
|
+
"type": "number"
|
|
33215
|
+
},
|
|
33216
|
+
{
|
|
33217
|
+
"type": "boolean"
|
|
33218
|
+
},
|
|
33219
|
+
{
|
|
33220
|
+
"type": "null"
|
|
33221
|
+
},
|
|
33222
|
+
{
|
|
33223
|
+
"type": "object",
|
|
33224
|
+
"additionalProperties": {
|
|
33225
|
+
"$ref": "$.operator.methods[126].inputSchema.properties.value.additionalProperties"
|
|
33226
|
+
}
|
|
33227
|
+
},
|
|
33228
|
+
{
|
|
33229
|
+
"type": "array",
|
|
33230
|
+
"items": {
|
|
33231
|
+
"$ref": "$.operator.methods[126].inputSchema.properties.value.additionalProperties"
|
|
33232
|
+
}
|
|
33233
|
+
}
|
|
33234
|
+
]
|
|
33235
|
+
}
|
|
33236
|
+
}
|
|
33237
|
+
},
|
|
33238
|
+
"required": [
|
|
33239
|
+
"id",
|
|
33240
|
+
"action"
|
|
33241
|
+
],
|
|
33242
|
+
"additionalProperties": false
|
|
33243
|
+
},
|
|
33244
|
+
"outputSchema": {
|
|
33245
|
+
"type": "object",
|
|
33246
|
+
"properties": {
|
|
33247
|
+
"ok": {
|
|
33248
|
+
"type": "boolean"
|
|
33249
|
+
},
|
|
33250
|
+
"issue": {
|
|
33251
|
+
"type": "object",
|
|
33252
|
+
"properties": {
|
|
33253
|
+
"id": {
|
|
33254
|
+
"type": "string"
|
|
33255
|
+
},
|
|
33256
|
+
"severity": {
|
|
33257
|
+
"type": "string"
|
|
33258
|
+
},
|
|
33259
|
+
"code": {
|
|
33260
|
+
"type": "string"
|
|
33261
|
+
},
|
|
33262
|
+
"message": {
|
|
33263
|
+
"type": "string"
|
|
33264
|
+
},
|
|
33265
|
+
"status": {
|
|
33266
|
+
"type": "string"
|
|
33267
|
+
},
|
|
33268
|
+
"sourceId": {
|
|
33269
|
+
"type": "string"
|
|
33270
|
+
},
|
|
33271
|
+
"nodeId": {
|
|
33272
|
+
"type": "string"
|
|
33273
|
+
},
|
|
33274
|
+
"metadata": {
|
|
33275
|
+
"type": "object",
|
|
33276
|
+
"additionalProperties": {
|
|
33277
|
+
"anyOf": [
|
|
33278
|
+
{
|
|
33279
|
+
"type": "string"
|
|
33280
|
+
},
|
|
33281
|
+
{
|
|
33282
|
+
"type": "number"
|
|
33283
|
+
},
|
|
33284
|
+
{
|
|
33285
|
+
"type": "boolean"
|
|
33286
|
+
},
|
|
33287
|
+
{
|
|
33288
|
+
"type": "null"
|
|
33289
|
+
},
|
|
33290
|
+
{
|
|
33291
|
+
"type": "object",
|
|
33292
|
+
"additionalProperties": {
|
|
33293
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.issue.properties.metadata.additionalProperties"
|
|
33294
|
+
}
|
|
33295
|
+
},
|
|
33296
|
+
{
|
|
33297
|
+
"type": "array",
|
|
33298
|
+
"items": {
|
|
33299
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.issue.properties.metadata.additionalProperties"
|
|
33300
|
+
}
|
|
33301
|
+
}
|
|
33302
|
+
]
|
|
33303
|
+
}
|
|
33304
|
+
},
|
|
33305
|
+
"createdAt": {
|
|
33306
|
+
"type": "number"
|
|
33307
|
+
},
|
|
33308
|
+
"updatedAt": {
|
|
33309
|
+
"type": "number"
|
|
33310
|
+
}
|
|
33311
|
+
},
|
|
33312
|
+
"required": [
|
|
33313
|
+
"id",
|
|
33314
|
+
"severity",
|
|
33315
|
+
"code",
|
|
33316
|
+
"message",
|
|
33317
|
+
"status",
|
|
33318
|
+
"metadata",
|
|
33319
|
+
"createdAt",
|
|
33320
|
+
"updatedAt"
|
|
33321
|
+
],
|
|
33322
|
+
"additionalProperties": true
|
|
33323
|
+
},
|
|
33324
|
+
"node": {
|
|
33325
|
+
"type": "object",
|
|
33326
|
+
"properties": {
|
|
33327
|
+
"id": {
|
|
33328
|
+
"type": "string"
|
|
33329
|
+
},
|
|
33330
|
+
"kind": {
|
|
33331
|
+
"type": "string"
|
|
33332
|
+
},
|
|
33333
|
+
"slug": {
|
|
33334
|
+
"type": "string"
|
|
33335
|
+
},
|
|
33336
|
+
"title": {
|
|
33337
|
+
"type": "string"
|
|
33338
|
+
},
|
|
33339
|
+
"summary": {
|
|
33340
|
+
"type": "string"
|
|
33341
|
+
},
|
|
33342
|
+
"aliases": {
|
|
33343
|
+
"type": "array",
|
|
33344
|
+
"items": {
|
|
33345
|
+
"type": "string"
|
|
33346
|
+
}
|
|
33347
|
+
},
|
|
33348
|
+
"status": {
|
|
33349
|
+
"type": "string"
|
|
33350
|
+
},
|
|
33351
|
+
"confidence": {
|
|
33352
|
+
"type": "number"
|
|
33353
|
+
},
|
|
33354
|
+
"sourceId": {
|
|
33355
|
+
"type": "string"
|
|
33356
|
+
},
|
|
33357
|
+
"metadata": {
|
|
33358
|
+
"type": "object",
|
|
33359
|
+
"additionalProperties": {
|
|
33360
|
+
"anyOf": [
|
|
33361
|
+
{
|
|
33362
|
+
"type": "string"
|
|
33363
|
+
},
|
|
33364
|
+
{
|
|
33365
|
+
"type": "number"
|
|
33366
|
+
},
|
|
33367
|
+
{
|
|
33368
|
+
"type": "boolean"
|
|
33369
|
+
},
|
|
33370
|
+
{
|
|
33371
|
+
"type": "null"
|
|
33372
|
+
},
|
|
33373
|
+
{
|
|
33374
|
+
"type": "object",
|
|
33375
|
+
"additionalProperties": {
|
|
33376
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.node.properties.metadata.additionalProperties"
|
|
33377
|
+
}
|
|
33378
|
+
},
|
|
33379
|
+
{
|
|
33380
|
+
"type": "array",
|
|
33381
|
+
"items": {
|
|
33382
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.node.properties.metadata.additionalProperties"
|
|
33383
|
+
}
|
|
33384
|
+
}
|
|
33385
|
+
]
|
|
33386
|
+
}
|
|
33387
|
+
},
|
|
33388
|
+
"createdAt": {
|
|
33389
|
+
"type": "number"
|
|
33390
|
+
},
|
|
33391
|
+
"updatedAt": {
|
|
33392
|
+
"type": "number"
|
|
33393
|
+
}
|
|
33394
|
+
},
|
|
33395
|
+
"required": [
|
|
33396
|
+
"id",
|
|
33397
|
+
"kind",
|
|
33398
|
+
"slug",
|
|
33399
|
+
"title",
|
|
33400
|
+
"aliases",
|
|
33401
|
+
"status",
|
|
33402
|
+
"confidence",
|
|
33403
|
+
"metadata",
|
|
33404
|
+
"createdAt",
|
|
33405
|
+
"updatedAt"
|
|
33406
|
+
],
|
|
33407
|
+
"additionalProperties": true
|
|
33408
|
+
},
|
|
33409
|
+
"source": {
|
|
33410
|
+
"type": "object",
|
|
33411
|
+
"properties": {
|
|
33412
|
+
"id": {
|
|
33413
|
+
"type": "string"
|
|
33414
|
+
},
|
|
33415
|
+
"connectorId": {
|
|
33416
|
+
"type": "string"
|
|
33417
|
+
},
|
|
33418
|
+
"sourceType": {
|
|
33419
|
+
"type": "string",
|
|
33420
|
+
"enum": [
|
|
33421
|
+
"url",
|
|
33422
|
+
"bookmark",
|
|
33423
|
+
"bookmark-list",
|
|
33424
|
+
"history",
|
|
33425
|
+
"document",
|
|
33426
|
+
"repo",
|
|
33427
|
+
"dataset",
|
|
33428
|
+
"image",
|
|
33429
|
+
"manual",
|
|
33430
|
+
"other"
|
|
33431
|
+
]
|
|
33432
|
+
},
|
|
33433
|
+
"title": {
|
|
33434
|
+
"type": "string"
|
|
33435
|
+
},
|
|
33436
|
+
"sourceUri": {
|
|
33437
|
+
"type": "string"
|
|
33438
|
+
},
|
|
33439
|
+
"canonicalUri": {
|
|
33440
|
+
"type": "string"
|
|
33441
|
+
},
|
|
33442
|
+
"summary": {
|
|
33443
|
+
"type": "string"
|
|
33444
|
+
},
|
|
33445
|
+
"description": {
|
|
33446
|
+
"type": "string"
|
|
33447
|
+
},
|
|
33448
|
+
"tags": {
|
|
33449
|
+
"type": "array",
|
|
33450
|
+
"items": {
|
|
33451
|
+
"type": "string"
|
|
33452
|
+
}
|
|
33453
|
+
},
|
|
33454
|
+
"folderPath": {
|
|
33455
|
+
"type": "string"
|
|
33456
|
+
},
|
|
33457
|
+
"status": {
|
|
33458
|
+
"type": "string"
|
|
33459
|
+
},
|
|
33460
|
+
"artifactId": {
|
|
33461
|
+
"type": "string"
|
|
33462
|
+
},
|
|
33463
|
+
"contentHash": {
|
|
33464
|
+
"type": "string"
|
|
33465
|
+
},
|
|
33466
|
+
"lastCrawledAt": {
|
|
33467
|
+
"type": "number"
|
|
33468
|
+
},
|
|
33469
|
+
"crawlError": {
|
|
33470
|
+
"type": "string"
|
|
33471
|
+
},
|
|
33472
|
+
"sessionId": {
|
|
33473
|
+
"type": "string"
|
|
33474
|
+
},
|
|
33475
|
+
"metadata": {
|
|
33476
|
+
"type": "object",
|
|
33477
|
+
"additionalProperties": {
|
|
33478
|
+
"anyOf": [
|
|
33479
|
+
{
|
|
33480
|
+
"type": "string"
|
|
33481
|
+
},
|
|
33482
|
+
{
|
|
33483
|
+
"type": "number"
|
|
33484
|
+
},
|
|
33485
|
+
{
|
|
33486
|
+
"type": "boolean"
|
|
33487
|
+
},
|
|
33488
|
+
{
|
|
33489
|
+
"type": "null"
|
|
33490
|
+
},
|
|
33491
|
+
{
|
|
33492
|
+
"type": "object",
|
|
33493
|
+
"additionalProperties": {
|
|
33494
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
33495
|
+
}
|
|
33496
|
+
},
|
|
33497
|
+
{
|
|
33498
|
+
"type": "array",
|
|
33499
|
+
"items": {
|
|
33500
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
33501
|
+
}
|
|
33502
|
+
}
|
|
33503
|
+
]
|
|
33504
|
+
}
|
|
33505
|
+
},
|
|
33506
|
+
"createdAt": {
|
|
33507
|
+
"type": "number"
|
|
33508
|
+
},
|
|
33509
|
+
"updatedAt": {
|
|
33510
|
+
"type": "number"
|
|
33511
|
+
}
|
|
33512
|
+
},
|
|
33513
|
+
"required": [
|
|
33514
|
+
"id",
|
|
33515
|
+
"connectorId",
|
|
33516
|
+
"sourceType",
|
|
33517
|
+
"tags",
|
|
33518
|
+
"status",
|
|
33519
|
+
"metadata",
|
|
33520
|
+
"createdAt",
|
|
33521
|
+
"updatedAt"
|
|
33522
|
+
],
|
|
33523
|
+
"additionalProperties": true
|
|
33524
|
+
},
|
|
33525
|
+
"suppression": {
|
|
33526
|
+
"type": "object",
|
|
33527
|
+
"additionalProperties": {
|
|
33528
|
+
"anyOf": [
|
|
33529
|
+
{
|
|
33530
|
+
"type": "string"
|
|
33531
|
+
},
|
|
33532
|
+
{
|
|
33533
|
+
"type": "number"
|
|
33534
|
+
},
|
|
33535
|
+
{
|
|
33536
|
+
"type": "boolean"
|
|
33537
|
+
},
|
|
33538
|
+
{
|
|
33539
|
+
"type": "null"
|
|
33540
|
+
},
|
|
33541
|
+
{
|
|
33542
|
+
"type": "object",
|
|
33543
|
+
"additionalProperties": {
|
|
33544
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.suppression.additionalProperties"
|
|
33545
|
+
}
|
|
33546
|
+
},
|
|
33547
|
+
{
|
|
33548
|
+
"type": "array",
|
|
33549
|
+
"items": {
|
|
33550
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.suppression.additionalProperties"
|
|
33551
|
+
}
|
|
33552
|
+
}
|
|
33553
|
+
]
|
|
33554
|
+
}
|
|
33555
|
+
},
|
|
33556
|
+
"appliedFacts": {
|
|
33557
|
+
"type": "object",
|
|
33558
|
+
"additionalProperties": {
|
|
33559
|
+
"anyOf": [
|
|
33560
|
+
{
|
|
33561
|
+
"type": "string"
|
|
33562
|
+
},
|
|
33563
|
+
{
|
|
33564
|
+
"type": "number"
|
|
33565
|
+
},
|
|
33566
|
+
{
|
|
33567
|
+
"type": "boolean"
|
|
33568
|
+
},
|
|
33569
|
+
{
|
|
33570
|
+
"type": "null"
|
|
33571
|
+
},
|
|
33572
|
+
{
|
|
33573
|
+
"type": "object",
|
|
33574
|
+
"additionalProperties": {
|
|
33575
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.appliedFacts.additionalProperties"
|
|
33576
|
+
}
|
|
33577
|
+
},
|
|
33578
|
+
{
|
|
33579
|
+
"type": "array",
|
|
33580
|
+
"items": {
|
|
33581
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.appliedFacts.additionalProperties"
|
|
33582
|
+
}
|
|
33583
|
+
}
|
|
33584
|
+
]
|
|
33585
|
+
}
|
|
33586
|
+
}
|
|
33587
|
+
},
|
|
33588
|
+
"required": [
|
|
33589
|
+
"ok",
|
|
33590
|
+
"issue"
|
|
33591
|
+
],
|
|
33592
|
+
"additionalProperties": true
|
|
33593
|
+
},
|
|
33594
|
+
"invokable": true
|
|
33595
|
+
},
|
|
33176
33596
|
{
|
|
33177
33597
|
"id": "knowledge.issues.list",
|
|
33178
33598
|
"title": "List Knowledge Issues",
|
|
@@ -33248,13 +33668,13 @@
|
|
|
33248
33668
|
{
|
|
33249
33669
|
"type": "object",
|
|
33250
33670
|
"additionalProperties": {
|
|
33251
|
-
"$ref": "$.operator.methods[
|
|
33671
|
+
"$ref": "$.operator.methods[127].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
33252
33672
|
}
|
|
33253
33673
|
},
|
|
33254
33674
|
{
|
|
33255
33675
|
"type": "array",
|
|
33256
33676
|
"items": {
|
|
33257
|
-
"$ref": "$.operator.methods[
|
|
33677
|
+
"$ref": "$.operator.methods[127].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
33258
33678
|
}
|
|
33259
33679
|
}
|
|
33260
33680
|
]
|
|
@@ -33406,13 +33826,13 @@
|
|
|
33406
33826
|
{
|
|
33407
33827
|
"type": "object",
|
|
33408
33828
|
"additionalProperties": {
|
|
33409
|
-
"$ref": "$.operator.methods[
|
|
33829
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
33410
33830
|
}
|
|
33411
33831
|
},
|
|
33412
33832
|
{
|
|
33413
33833
|
"type": "array",
|
|
33414
33834
|
"items": {
|
|
33415
|
-
"$ref": "$.operator.methods[
|
|
33835
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
33416
33836
|
}
|
|
33417
33837
|
}
|
|
33418
33838
|
]
|
|
@@ -33489,13 +33909,13 @@
|
|
|
33489
33909
|
{
|
|
33490
33910
|
"type": "object",
|
|
33491
33911
|
"additionalProperties": {
|
|
33492
|
-
"$ref": "$.operator.methods[
|
|
33912
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.node.properties.metadata.additionalProperties"
|
|
33493
33913
|
}
|
|
33494
33914
|
},
|
|
33495
33915
|
{
|
|
33496
33916
|
"type": "array",
|
|
33497
33917
|
"items": {
|
|
33498
|
-
"$ref": "$.operator.methods[
|
|
33918
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.node.properties.metadata.additionalProperties"
|
|
33499
33919
|
}
|
|
33500
33920
|
}
|
|
33501
33921
|
]
|
|
@@ -33565,13 +33985,13 @@
|
|
|
33565
33985
|
{
|
|
33566
33986
|
"type": "object",
|
|
33567
33987
|
"additionalProperties": {
|
|
33568
|
-
"$ref": "$.operator.methods[
|
|
33988
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.issue.properties.metadata.additionalProperties"
|
|
33569
33989
|
}
|
|
33570
33990
|
},
|
|
33571
33991
|
{
|
|
33572
33992
|
"type": "array",
|
|
33573
33993
|
"items": {
|
|
33574
|
-
"$ref": "$.operator.methods[
|
|
33994
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.issue.properties.metadata.additionalProperties"
|
|
33575
33995
|
}
|
|
33576
33996
|
}
|
|
33577
33997
|
]
|
|
@@ -33641,13 +34061,13 @@
|
|
|
33641
34061
|
{
|
|
33642
34062
|
"type": "object",
|
|
33643
34063
|
"additionalProperties": {
|
|
33644
|
-
"$ref": "$.operator.methods[
|
|
34064
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.relatedEdges.items.properties.metadata.additionalProperties"
|
|
33645
34065
|
}
|
|
33646
34066
|
},
|
|
33647
34067
|
{
|
|
33648
34068
|
"type": "array",
|
|
33649
34069
|
"items": {
|
|
33650
|
-
"$ref": "$.operator.methods[
|
|
34070
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.relatedEdges.items.properties.metadata.additionalProperties"
|
|
33651
34071
|
}
|
|
33652
34072
|
}
|
|
33653
34073
|
]
|
|
@@ -33762,13 +34182,13 @@
|
|
|
33762
34182
|
{
|
|
33763
34183
|
"type": "object",
|
|
33764
34184
|
"additionalProperties": {
|
|
33765
|
-
"$ref": "$.operator.methods[
|
|
34185
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.linkedSources.items.properties.metadata.additionalProperties"
|
|
33766
34186
|
}
|
|
33767
34187
|
},
|
|
33768
34188
|
{
|
|
33769
34189
|
"type": "array",
|
|
33770
34190
|
"items": {
|
|
33771
|
-
"$ref": "$.operator.methods[
|
|
34191
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.linkedSources.items.properties.metadata.additionalProperties"
|
|
33772
34192
|
}
|
|
33773
34193
|
}
|
|
33774
34194
|
]
|
|
@@ -33848,13 +34268,13 @@
|
|
|
33848
34268
|
{
|
|
33849
34269
|
"type": "object",
|
|
33850
34270
|
"additionalProperties": {
|
|
33851
|
-
"$ref": "$.operator.methods[
|
|
34271
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.linkedNodes.items.properties.metadata.additionalProperties"
|
|
33852
34272
|
}
|
|
33853
34273
|
},
|
|
33854
34274
|
{
|
|
33855
34275
|
"type": "array",
|
|
33856
34276
|
"items": {
|
|
33857
|
-
"$ref": "$.operator.methods[
|
|
34277
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.linkedNodes.items.properties.metadata.additionalProperties"
|
|
33858
34278
|
}
|
|
33859
34279
|
}
|
|
33860
34280
|
]
|
|
@@ -34098,13 +34518,13 @@
|
|
|
34098
34518
|
{
|
|
34099
34519
|
"type": "object",
|
|
34100
34520
|
"additionalProperties": {
|
|
34101
|
-
"$ref": "$.operator.methods[
|
|
34521
|
+
"$ref": "$.operator.methods[129].outputSchema.properties.runs.items.properties.metadata.additionalProperties"
|
|
34102
34522
|
}
|
|
34103
34523
|
},
|
|
34104
34524
|
{
|
|
34105
34525
|
"type": "array",
|
|
34106
34526
|
"items": {
|
|
34107
|
-
"$ref": "$.operator.methods[
|
|
34527
|
+
"$ref": "$.operator.methods[129].outputSchema.properties.runs.items.properties.metadata.additionalProperties"
|
|
34108
34528
|
}
|
|
34109
34529
|
}
|
|
34110
34530
|
]
|
|
@@ -34223,13 +34643,13 @@
|
|
|
34223
34643
|
{
|
|
34224
34644
|
"type": "object",
|
|
34225
34645
|
"additionalProperties": {
|
|
34226
|
-
"$ref": "$.operator.methods[
|
|
34646
|
+
"$ref": "$.operator.methods[130].outputSchema.properties.job.properties.metadata.additionalProperties"
|
|
34227
34647
|
}
|
|
34228
34648
|
},
|
|
34229
34649
|
{
|
|
34230
34650
|
"type": "array",
|
|
34231
34651
|
"items": {
|
|
34232
|
-
"$ref": "$.operator.methods[
|
|
34652
|
+
"$ref": "$.operator.methods[130].outputSchema.properties.job.properties.metadata.additionalProperties"
|
|
34233
34653
|
}
|
|
34234
34654
|
}
|
|
34235
34655
|
]
|
|
@@ -34476,13 +34896,13 @@
|
|
|
34476
34896
|
{
|
|
34477
34897
|
"type": "object",
|
|
34478
34898
|
"additionalProperties": {
|
|
34479
|
-
"$ref": "$.operator.methods[
|
|
34899
|
+
"$ref": "$.operator.methods[131].outputSchema.properties.run.properties.metadata.additionalProperties"
|
|
34480
34900
|
}
|
|
34481
34901
|
},
|
|
34482
34902
|
{
|
|
34483
34903
|
"type": "array",
|
|
34484
34904
|
"items": {
|
|
34485
|
-
"$ref": "$.operator.methods[
|
|
34905
|
+
"$ref": "$.operator.methods[131].outputSchema.properties.run.properties.metadata.additionalProperties"
|
|
34486
34906
|
}
|
|
34487
34907
|
}
|
|
34488
34908
|
]
|
|
@@ -34595,13 +35015,13 @@
|
|
|
34595
35015
|
{
|
|
34596
35016
|
"type": "object",
|
|
34597
35017
|
"additionalProperties": {
|
|
34598
|
-
"$ref": "$.operator.methods[
|
|
35018
|
+
"$ref": "$.operator.methods[132].outputSchema.properties.jobs.items.properties.metadata.additionalProperties"
|
|
34599
35019
|
}
|
|
34600
35020
|
},
|
|
34601
35021
|
{
|
|
34602
35022
|
"type": "array",
|
|
34603
35023
|
"items": {
|
|
34604
|
-
"$ref": "$.operator.methods[
|
|
35024
|
+
"$ref": "$.operator.methods[132].outputSchema.properties.jobs.items.properties.metadata.additionalProperties"
|
|
34605
35025
|
}
|
|
34606
35026
|
}
|
|
34607
35027
|
]
|
|
@@ -34698,13 +35118,13 @@
|
|
|
34698
35118
|
{
|
|
34699
35119
|
"type": "object",
|
|
34700
35120
|
"additionalProperties": {
|
|
34701
|
-
"$ref": "$.operator.methods[
|
|
35121
|
+
"$ref": "$.operator.methods[133].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
34702
35122
|
}
|
|
34703
35123
|
},
|
|
34704
35124
|
{
|
|
34705
35125
|
"type": "array",
|
|
34706
35126
|
"items": {
|
|
34707
|
-
"$ref": "$.operator.methods[
|
|
35127
|
+
"$ref": "$.operator.methods[133].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
34708
35128
|
}
|
|
34709
35129
|
}
|
|
34710
35130
|
]
|
|
@@ -34822,13 +35242,13 @@
|
|
|
34822
35242
|
{
|
|
34823
35243
|
"type": "object",
|
|
34824
35244
|
"additionalProperties": {
|
|
34825
|
-
"$ref": "$.operator.methods[
|
|
35245
|
+
"$ref": "$.operator.methods[134].outputSchema.properties.nodes.items.properties.metadata.additionalProperties"
|
|
34826
35246
|
}
|
|
34827
35247
|
},
|
|
34828
35248
|
{
|
|
34829
35249
|
"type": "array",
|
|
34830
35250
|
"items": {
|
|
34831
|
-
"$ref": "$.operator.methods[
|
|
35251
|
+
"$ref": "$.operator.methods[134].outputSchema.properties.nodes.items.properties.metadata.additionalProperties"
|
|
34832
35252
|
}
|
|
34833
35253
|
}
|
|
34834
35254
|
]
|
|
@@ -35003,13 +35423,13 @@
|
|
|
35003
35423
|
{
|
|
35004
35424
|
"type": "object",
|
|
35005
35425
|
"additionalProperties": {
|
|
35006
|
-
"$ref": "$.operator.methods[
|
|
35426
|
+
"$ref": "$.operator.methods[135].outputSchema.properties.items.items.properties.metadata.additionalProperties"
|
|
35007
35427
|
}
|
|
35008
35428
|
},
|
|
35009
35429
|
{
|
|
35010
35430
|
"type": "array",
|
|
35011
35431
|
"items": {
|
|
35012
|
-
"$ref": "$.operator.methods[
|
|
35432
|
+
"$ref": "$.operator.methods[135].outputSchema.properties.items.items.properties.metadata.additionalProperties"
|
|
35013
35433
|
}
|
|
35014
35434
|
}
|
|
35015
35435
|
]
|
|
@@ -35133,13 +35553,13 @@
|
|
|
35133
35553
|
{
|
|
35134
35554
|
"type": "object",
|
|
35135
35555
|
"additionalProperties": {
|
|
35136
|
-
"$ref": "$.operator.methods[
|
|
35556
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.bundle.properties.target.properties.metadata.additionalProperties"
|
|
35137
35557
|
}
|
|
35138
35558
|
},
|
|
35139
35559
|
{
|
|
35140
35560
|
"type": "array",
|
|
35141
35561
|
"items": {
|
|
35142
|
-
"$ref": "$.operator.methods[
|
|
35562
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.bundle.properties.target.properties.metadata.additionalProperties"
|
|
35143
35563
|
}
|
|
35144
35564
|
}
|
|
35145
35565
|
]
|
|
@@ -35205,13 +35625,13 @@
|
|
|
35205
35625
|
{
|
|
35206
35626
|
"type": "object",
|
|
35207
35627
|
"additionalProperties": {
|
|
35208
|
-
"$ref": "$.operator.methods[
|
|
35628
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.bundle.properties.pages.items.properties.metadata.additionalProperties"
|
|
35209
35629
|
}
|
|
35210
35630
|
},
|
|
35211
35631
|
{
|
|
35212
35632
|
"type": "array",
|
|
35213
35633
|
"items": {
|
|
35214
|
-
"$ref": "$.operator.methods[
|
|
35634
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.bundle.properties.pages.items.properties.metadata.additionalProperties"
|
|
35215
35635
|
}
|
|
35216
35636
|
}
|
|
35217
35637
|
]
|
|
@@ -35248,13 +35668,13 @@
|
|
|
35248
35668
|
{
|
|
35249
35669
|
"type": "object",
|
|
35250
35670
|
"additionalProperties": {
|
|
35251
|
-
"$ref": "$.operator.methods[
|
|
35671
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.bundle.properties.metadata.additionalProperties"
|
|
35252
35672
|
}
|
|
35253
35673
|
},
|
|
35254
35674
|
{
|
|
35255
35675
|
"type": "array",
|
|
35256
35676
|
"items": {
|
|
35257
|
-
"$ref": "$.operator.methods[
|
|
35677
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.bundle.properties.metadata.additionalProperties"
|
|
35258
35678
|
}
|
|
35259
35679
|
}
|
|
35260
35680
|
]
|
|
@@ -35326,13 +35746,13 @@
|
|
|
35326
35746
|
{
|
|
35327
35747
|
"type": "object",
|
|
35328
35748
|
"additionalProperties": {
|
|
35329
|
-
"$ref": "$.operator.methods[
|
|
35749
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
35330
35750
|
}
|
|
35331
35751
|
},
|
|
35332
35752
|
{
|
|
35333
35753
|
"type": "array",
|
|
35334
35754
|
"items": {
|
|
35335
|
-
"$ref": "$.operator.methods[
|
|
35755
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
35336
35756
|
}
|
|
35337
35757
|
}
|
|
35338
35758
|
]
|
|
@@ -35444,13 +35864,13 @@
|
|
|
35444
35864
|
{
|
|
35445
35865
|
"type": "object",
|
|
35446
35866
|
"additionalProperties": {
|
|
35447
|
-
"$ref": "$.operator.methods[
|
|
35867
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.target.properties.metadata.additionalProperties"
|
|
35448
35868
|
}
|
|
35449
35869
|
},
|
|
35450
35870
|
{
|
|
35451
35871
|
"type": "array",
|
|
35452
35872
|
"items": {
|
|
35453
|
-
"$ref": "$.operator.methods[
|
|
35873
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.target.properties.metadata.additionalProperties"
|
|
35454
35874
|
}
|
|
35455
35875
|
}
|
|
35456
35876
|
]
|
|
@@ -35516,13 +35936,13 @@
|
|
|
35516
35936
|
{
|
|
35517
35937
|
"type": "object",
|
|
35518
35938
|
"additionalProperties": {
|
|
35519
|
-
"$ref": "$.operator.methods[
|
|
35939
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.pages.items.properties.metadata.additionalProperties"
|
|
35520
35940
|
}
|
|
35521
35941
|
},
|
|
35522
35942
|
{
|
|
35523
35943
|
"type": "array",
|
|
35524
35944
|
"items": {
|
|
35525
|
-
"$ref": "$.operator.methods[
|
|
35945
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.pages.items.properties.metadata.additionalProperties"
|
|
35526
35946
|
}
|
|
35527
35947
|
}
|
|
35528
35948
|
]
|
|
@@ -35559,13 +35979,13 @@
|
|
|
35559
35979
|
{
|
|
35560
35980
|
"type": "object",
|
|
35561
35981
|
"additionalProperties": {
|
|
35562
|
-
"$ref": "$.operator.methods[
|
|
35982
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.metadata.additionalProperties"
|
|
35563
35983
|
}
|
|
35564
35984
|
},
|
|
35565
35985
|
{
|
|
35566
35986
|
"type": "array",
|
|
35567
35987
|
"items": {
|
|
35568
|
-
"$ref": "$.operator.methods[
|
|
35988
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.metadata.additionalProperties"
|
|
35569
35989
|
}
|
|
35570
35990
|
}
|
|
35571
35991
|
]
|
|
@@ -35659,13 +36079,13 @@
|
|
|
35659
36079
|
{
|
|
35660
36080
|
"type": "object",
|
|
35661
36081
|
"additionalProperties": {
|
|
35662
|
-
"$ref": "$.operator.methods[
|
|
36082
|
+
"$ref": "$.operator.methods[138].outputSchema.properties.targets.items.properties.metadata.additionalProperties"
|
|
35663
36083
|
}
|
|
35664
36084
|
},
|
|
35665
36085
|
{
|
|
35666
36086
|
"type": "array",
|
|
35667
36087
|
"items": {
|
|
35668
|
-
"$ref": "$.operator.methods[
|
|
36088
|
+
"$ref": "$.operator.methods[138].outputSchema.properties.targets.items.properties.metadata.additionalProperties"
|
|
35669
36089
|
}
|
|
35670
36090
|
}
|
|
35671
36091
|
]
|
|
@@ -35819,13 +36239,13 @@
|
|
|
35819
36239
|
{
|
|
35820
36240
|
"type": "object",
|
|
35821
36241
|
"additionalProperties": {
|
|
35822
|
-
"$ref": "$.operator.methods[
|
|
36242
|
+
"$ref": "$.operator.methods[139].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
35823
36243
|
}
|
|
35824
36244
|
},
|
|
35825
36245
|
{
|
|
35826
36246
|
"type": "array",
|
|
35827
36247
|
"items": {
|
|
35828
|
-
"$ref": "$.operator.methods[
|
|
36248
|
+
"$ref": "$.operator.methods[139].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
35829
36249
|
}
|
|
35830
36250
|
}
|
|
35831
36251
|
]
|
|
@@ -35939,13 +36359,13 @@
|
|
|
35939
36359
|
{
|
|
35940
36360
|
"type": "object",
|
|
35941
36361
|
"additionalProperties": {
|
|
35942
|
-
"$ref": "$.operator.methods[
|
|
36362
|
+
"$ref": "$.operator.methods[140].outputSchema.properties.report.properties.metadata.additionalProperties"
|
|
35943
36363
|
}
|
|
35944
36364
|
},
|
|
35945
36365
|
{
|
|
35946
36366
|
"type": "array",
|
|
35947
36367
|
"items": {
|
|
35948
|
-
"$ref": "$.operator.methods[
|
|
36368
|
+
"$ref": "$.operator.methods[140].outputSchema.properties.report.properties.metadata.additionalProperties"
|
|
35949
36369
|
}
|
|
35950
36370
|
}
|
|
35951
36371
|
]
|
|
@@ -36057,13 +36477,13 @@
|
|
|
36057
36477
|
{
|
|
36058
36478
|
"type": "object",
|
|
36059
36479
|
"additionalProperties": {
|
|
36060
|
-
"$ref": "$.operator.methods[
|
|
36480
|
+
"$ref": "$.operator.methods[141].outputSchema.properties.reports.items.properties.metadata.additionalProperties"
|
|
36061
36481
|
}
|
|
36062
36482
|
},
|
|
36063
36483
|
{
|
|
36064
36484
|
"type": "array",
|
|
36065
36485
|
"items": {
|
|
36066
|
-
"$ref": "$.operator.methods[
|
|
36486
|
+
"$ref": "$.operator.methods[141].outputSchema.properties.reports.items.properties.metadata.additionalProperties"
|
|
36067
36487
|
}
|
|
36068
36488
|
}
|
|
36069
36489
|
]
|
|
@@ -36285,13 +36705,13 @@
|
|
|
36285
36705
|
{
|
|
36286
36706
|
"type": "object",
|
|
36287
36707
|
"additionalProperties": {
|
|
36288
|
-
"$ref": "$.operator.methods[
|
|
36708
|
+
"$ref": "$.operator.methods[143].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
36289
36709
|
}
|
|
36290
36710
|
},
|
|
36291
36711
|
{
|
|
36292
36712
|
"type": "array",
|
|
36293
36713
|
"items": {
|
|
36294
|
-
"$ref": "$.operator.methods[
|
|
36714
|
+
"$ref": "$.operator.methods[143].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
36295
36715
|
}
|
|
36296
36716
|
}
|
|
36297
36717
|
]
|
|
@@ -36467,13 +36887,13 @@
|
|
|
36467
36887
|
{
|
|
36468
36888
|
"type": "object",
|
|
36469
36889
|
"additionalProperties": {
|
|
36470
|
-
"$ref": "$.operator.methods[
|
|
36890
|
+
"$ref": "$.operator.methods[144].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
36471
36891
|
}
|
|
36472
36892
|
},
|
|
36473
36893
|
{
|
|
36474
36894
|
"type": "array",
|
|
36475
36895
|
"items": {
|
|
36476
|
-
"$ref": "$.operator.methods[
|
|
36896
|
+
"$ref": "$.operator.methods[144].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
36477
36897
|
}
|
|
36478
36898
|
}
|
|
36479
36899
|
]
|
|
@@ -36650,13 +37070,13 @@
|
|
|
36650
37070
|
{
|
|
36651
37071
|
"type": "object",
|
|
36652
37072
|
"additionalProperties": {
|
|
36653
|
-
"$ref": "$.operator.methods[
|
|
37073
|
+
"$ref": "$.operator.methods[145].inputSchema.properties.metadata.additionalProperties"
|
|
36654
37074
|
}
|
|
36655
37075
|
},
|
|
36656
37076
|
{
|
|
36657
37077
|
"type": "array",
|
|
36658
37078
|
"items": {
|
|
36659
|
-
"$ref": "$.operator.methods[
|
|
37079
|
+
"$ref": "$.operator.methods[145].inputSchema.properties.metadata.additionalProperties"
|
|
36660
37080
|
}
|
|
36661
37081
|
}
|
|
36662
37082
|
]
|
|
@@ -36782,13 +37202,13 @@
|
|
|
36782
37202
|
{
|
|
36783
37203
|
"type": "object",
|
|
36784
37204
|
"additionalProperties": {
|
|
36785
|
-
"$ref": "$.operator.methods[
|
|
37205
|
+
"$ref": "$.operator.methods[145].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
36786
37206
|
}
|
|
36787
37207
|
},
|
|
36788
37208
|
{
|
|
36789
37209
|
"type": "array",
|
|
36790
37210
|
"items": {
|
|
36791
|
-
"$ref": "$.operator.methods[
|
|
37211
|
+
"$ref": "$.operator.methods[145].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
36792
37212
|
}
|
|
36793
37213
|
}
|
|
36794
37214
|
]
|
|
@@ -36963,13 +37383,13 @@
|
|
|
36963
37383
|
{
|
|
36964
37384
|
"type": "object",
|
|
36965
37385
|
"additionalProperties": {
|
|
36966
|
-
"$ref": "$.operator.methods[
|
|
37386
|
+
"$ref": "$.operator.methods[146].outputSchema.properties.schedules.items.properties.metadata.additionalProperties"
|
|
36967
37387
|
}
|
|
36968
37388
|
},
|
|
36969
37389
|
{
|
|
36970
37390
|
"type": "array",
|
|
36971
37391
|
"items": {
|
|
36972
|
-
"$ref": "$.operator.methods[
|
|
37392
|
+
"$ref": "$.operator.methods[146].outputSchema.properties.schedules.items.properties.metadata.additionalProperties"
|
|
36973
37393
|
}
|
|
36974
37394
|
}
|
|
36975
37395
|
]
|
|
@@ -37055,13 +37475,13 @@
|
|
|
37055
37475
|
{
|
|
37056
37476
|
"type": "object",
|
|
37057
37477
|
"additionalProperties": {
|
|
37058
|
-
"$ref": "$.operator.methods[
|
|
37478
|
+
"$ref": "$.operator.methods[147].inputSchema.properties.metadata.additionalProperties"
|
|
37059
37479
|
}
|
|
37060
37480
|
},
|
|
37061
37481
|
{
|
|
37062
37482
|
"type": "array",
|
|
37063
37483
|
"items": {
|
|
37064
|
-
"$ref": "$.operator.methods[
|
|
37484
|
+
"$ref": "$.operator.methods[147].inputSchema.properties.metadata.additionalProperties"
|
|
37065
37485
|
}
|
|
37066
37486
|
}
|
|
37067
37487
|
]
|
|
@@ -37178,13 +37598,13 @@
|
|
|
37178
37598
|
{
|
|
37179
37599
|
"type": "object",
|
|
37180
37600
|
"additionalProperties": {
|
|
37181
|
-
"$ref": "$.operator.methods[
|
|
37601
|
+
"$ref": "$.operator.methods[147].outputSchema.properties.results.items.properties.source.properties.metadata.additionalProperties"
|
|
37182
37602
|
}
|
|
37183
37603
|
},
|
|
37184
37604
|
{
|
|
37185
37605
|
"type": "array",
|
|
37186
37606
|
"items": {
|
|
37187
|
-
"$ref": "$.operator.methods[
|
|
37607
|
+
"$ref": "$.operator.methods[147].outputSchema.properties.results.items.properties.source.properties.metadata.additionalProperties"
|
|
37188
37608
|
}
|
|
37189
37609
|
}
|
|
37190
37610
|
]
|
|
@@ -37261,13 +37681,13 @@
|
|
|
37261
37681
|
{
|
|
37262
37682
|
"type": "object",
|
|
37263
37683
|
"additionalProperties": {
|
|
37264
|
-
"$ref": "$.operator.methods[
|
|
37684
|
+
"$ref": "$.operator.methods[147].outputSchema.properties.results.items.properties.node.properties.metadata.additionalProperties"
|
|
37265
37685
|
}
|
|
37266
37686
|
},
|
|
37267
37687
|
{
|
|
37268
37688
|
"type": "array",
|
|
37269
37689
|
"items": {
|
|
37270
|
-
"$ref": "$.operator.methods[
|
|
37690
|
+
"$ref": "$.operator.methods[147].outputSchema.properties.results.items.properties.node.properties.metadata.additionalProperties"
|
|
37271
37691
|
}
|
|
37272
37692
|
}
|
|
37273
37693
|
]
|
|
@@ -37406,13 +37826,13 @@
|
|
|
37406
37826
|
{
|
|
37407
37827
|
"type": "object",
|
|
37408
37828
|
"additionalProperties": {
|
|
37409
|
-
"$ref": "$.operator.methods[
|
|
37829
|
+
"$ref": "$.operator.methods[148].outputSchema.properties.extraction.properties.structure.additionalProperties"
|
|
37410
37830
|
}
|
|
37411
37831
|
},
|
|
37412
37832
|
{
|
|
37413
37833
|
"type": "array",
|
|
37414
37834
|
"items": {
|
|
37415
|
-
"$ref": "$.operator.methods[
|
|
37835
|
+
"$ref": "$.operator.methods[148].outputSchema.properties.extraction.properties.structure.additionalProperties"
|
|
37416
37836
|
}
|
|
37417
37837
|
}
|
|
37418
37838
|
]
|
|
@@ -37437,13 +37857,13 @@
|
|
|
37437
37857
|
{
|
|
37438
37858
|
"type": "object",
|
|
37439
37859
|
"additionalProperties": {
|
|
37440
|
-
"$ref": "$.operator.methods[
|
|
37860
|
+
"$ref": "$.operator.methods[148].outputSchema.properties.extraction.properties.metadata.additionalProperties"
|
|
37441
37861
|
}
|
|
37442
37862
|
},
|
|
37443
37863
|
{
|
|
37444
37864
|
"type": "array",
|
|
37445
37865
|
"items": {
|
|
37446
|
-
"$ref": "$.operator.methods[
|
|
37866
|
+
"$ref": "$.operator.methods[148].outputSchema.properties.extraction.properties.metadata.additionalProperties"
|
|
37447
37867
|
}
|
|
37448
37868
|
}
|
|
37449
37869
|
]
|
|
@@ -37596,13 +38016,13 @@
|
|
|
37596
38016
|
{
|
|
37597
38017
|
"type": "object",
|
|
37598
38018
|
"additionalProperties": {
|
|
37599
|
-
"$ref": "$.operator.methods[
|
|
38019
|
+
"$ref": "$.operator.methods[149].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
37600
38020
|
}
|
|
37601
38021
|
},
|
|
37602
38022
|
{
|
|
37603
38023
|
"type": "array",
|
|
37604
38024
|
"items": {
|
|
37605
|
-
"$ref": "$.operator.methods[
|
|
38025
|
+
"$ref": "$.operator.methods[149].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
37606
38026
|
}
|
|
37607
38027
|
}
|
|
37608
38028
|
]
|
|
@@ -37801,13 +38221,13 @@
|
|
|
37801
38221
|
{
|
|
37802
38222
|
"type": "object",
|
|
37803
38223
|
"additionalProperties": {
|
|
37804
|
-
"$ref": "$.operator.methods[
|
|
38224
|
+
"$ref": "$.operator.methods[151].outputSchema.properties.usage.items.properties.metadata.additionalProperties"
|
|
37805
38225
|
}
|
|
37806
38226
|
},
|
|
37807
38227
|
{
|
|
37808
38228
|
"type": "array",
|
|
37809
38229
|
"items": {
|
|
37810
|
-
"$ref": "$.operator.methods[
|
|
38230
|
+
"$ref": "$.operator.methods[151].outputSchema.properties.usage.items.properties.metadata.additionalProperties"
|
|
37811
38231
|
}
|
|
37812
38232
|
}
|
|
37813
38233
|
]
|
|
@@ -37906,13 +38326,13 @@
|
|
|
37906
38326
|
{
|
|
37907
38327
|
"type": "object",
|
|
37908
38328
|
"additionalProperties": {
|
|
37909
|
-
"$ref": "$.operator.methods[
|
|
38329
|
+
"$ref": "$.operator.methods[152].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
37910
38330
|
}
|
|
37911
38331
|
},
|
|
37912
38332
|
{
|
|
37913
38333
|
"type": "array",
|
|
37914
38334
|
"items": {
|
|
37915
|
-
"$ref": "$.operator.methods[
|
|
38335
|
+
"$ref": "$.operator.methods[152].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
37916
38336
|
}
|
|
37917
38337
|
}
|
|
37918
38338
|
]
|
|
@@ -37953,13 +38373,13 @@
|
|
|
37953
38373
|
{
|
|
37954
38374
|
"type": "object",
|
|
37955
38375
|
"additionalProperties": {
|
|
37956
|
-
"$ref": "$.operator.methods[
|
|
38376
|
+
"$ref": "$.operator.methods[152].inputSchema.properties.metadata.additionalProperties"
|
|
37957
38377
|
}
|
|
37958
38378
|
},
|
|
37959
38379
|
{
|
|
37960
38380
|
"type": "array",
|
|
37961
38381
|
"items": {
|
|
37962
|
-
"$ref": "$.operator.methods[
|
|
38382
|
+
"$ref": "$.operator.methods[152].inputSchema.properties.metadata.additionalProperties"
|
|
37963
38383
|
}
|
|
37964
38384
|
}
|
|
37965
38385
|
]
|
|
@@ -38005,13 +38425,13 @@
|
|
|
38005
38425
|
{
|
|
38006
38426
|
"type": "object",
|
|
38007
38427
|
"additionalProperties": {
|
|
38008
|
-
"$ref": "$.operator.methods[
|
|
38428
|
+
"$ref": "$.operator.methods[152].outputSchema.properties.metadata.additionalProperties"
|
|
38009
38429
|
}
|
|
38010
38430
|
},
|
|
38011
38431
|
{
|
|
38012
38432
|
"type": "array",
|
|
38013
38433
|
"items": {
|
|
38014
|
-
"$ref": "$.operator.methods[
|
|
38434
|
+
"$ref": "$.operator.methods[152].outputSchema.properties.metadata.additionalProperties"
|
|
38015
38435
|
}
|
|
38016
38436
|
}
|
|
38017
38437
|
]
|
|
@@ -38078,13 +38498,13 @@
|
|
|
38078
38498
|
{
|
|
38079
38499
|
"type": "object",
|
|
38080
38500
|
"additionalProperties": {
|
|
38081
|
-
"$ref": "$.operator.methods[
|
|
38501
|
+
"$ref": "$.operator.methods[153].inputSchema.properties.options.additionalProperties"
|
|
38082
38502
|
}
|
|
38083
38503
|
},
|
|
38084
38504
|
{
|
|
38085
38505
|
"type": "array",
|
|
38086
38506
|
"items": {
|
|
38087
|
-
"$ref": "$.operator.methods[
|
|
38507
|
+
"$ref": "$.operator.methods[153].inputSchema.properties.options.additionalProperties"
|
|
38088
38508
|
}
|
|
38089
38509
|
}
|
|
38090
38510
|
]
|
|
@@ -38109,13 +38529,13 @@
|
|
|
38109
38529
|
{
|
|
38110
38530
|
"type": "object",
|
|
38111
38531
|
"additionalProperties": {
|
|
38112
|
-
"$ref": "$.operator.methods[
|
|
38532
|
+
"$ref": "$.operator.methods[153].inputSchema.properties.metadata.additionalProperties"
|
|
38113
38533
|
}
|
|
38114
38534
|
},
|
|
38115
38535
|
{
|
|
38116
38536
|
"type": "array",
|
|
38117
38537
|
"items": {
|
|
38118
|
-
"$ref": "$.operator.methods[
|
|
38538
|
+
"$ref": "$.operator.methods[153].inputSchema.properties.metadata.additionalProperties"
|
|
38119
38539
|
}
|
|
38120
38540
|
}
|
|
38121
38541
|
]
|
|
@@ -38199,13 +38619,13 @@
|
|
|
38199
38619
|
{
|
|
38200
38620
|
"type": "object",
|
|
38201
38621
|
"additionalProperties": {
|
|
38202
|
-
"$ref": "$.operator.methods[
|
|
38622
|
+
"$ref": "$.operator.methods[153].outputSchema.properties.artifacts.items.properties.metadata.additionalProperties"
|
|
38203
38623
|
}
|
|
38204
38624
|
},
|
|
38205
38625
|
{
|
|
38206
38626
|
"type": "array",
|
|
38207
38627
|
"items": {
|
|
38208
|
-
"$ref": "$.operator.methods[
|
|
38628
|
+
"$ref": "$.operator.methods[153].outputSchema.properties.artifacts.items.properties.metadata.additionalProperties"
|
|
38209
38629
|
}
|
|
38210
38630
|
}
|
|
38211
38631
|
]
|
|
@@ -38238,13 +38658,13 @@
|
|
|
38238
38658
|
{
|
|
38239
38659
|
"type": "object",
|
|
38240
38660
|
"additionalProperties": {
|
|
38241
|
-
"$ref": "$.operator.methods[
|
|
38661
|
+
"$ref": "$.operator.methods[153].outputSchema.properties.metadata.additionalProperties"
|
|
38242
38662
|
}
|
|
38243
38663
|
},
|
|
38244
38664
|
{
|
|
38245
38665
|
"type": "array",
|
|
38246
38666
|
"items": {
|
|
38247
|
-
"$ref": "$.operator.methods[
|
|
38667
|
+
"$ref": "$.operator.methods[153].outputSchema.properties.metadata.additionalProperties"
|
|
38248
38668
|
}
|
|
38249
38669
|
}
|
|
38250
38670
|
]
|
|
@@ -38390,13 +38810,13 @@
|
|
|
38390
38810
|
{
|
|
38391
38811
|
"type": "object",
|
|
38392
38812
|
"additionalProperties": {
|
|
38393
|
-
"$ref": "$.operator.methods[
|
|
38813
|
+
"$ref": "$.operator.methods[155].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
38394
38814
|
}
|
|
38395
38815
|
},
|
|
38396
38816
|
{
|
|
38397
38817
|
"type": "array",
|
|
38398
38818
|
"items": {
|
|
38399
|
-
"$ref": "$.operator.methods[
|
|
38819
|
+
"$ref": "$.operator.methods[155].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
38400
38820
|
}
|
|
38401
38821
|
}
|
|
38402
38822
|
]
|
|
@@ -38434,13 +38854,13 @@
|
|
|
38434
38854
|
{
|
|
38435
38855
|
"type": "object",
|
|
38436
38856
|
"additionalProperties": {
|
|
38437
|
-
"$ref": "$.operator.methods[
|
|
38857
|
+
"$ref": "$.operator.methods[155].inputSchema.properties.options.additionalProperties"
|
|
38438
38858
|
}
|
|
38439
38859
|
},
|
|
38440
38860
|
{
|
|
38441
38861
|
"type": "array",
|
|
38442
38862
|
"items": {
|
|
38443
|
-
"$ref": "$.operator.methods[
|
|
38863
|
+
"$ref": "$.operator.methods[155].inputSchema.properties.options.additionalProperties"
|
|
38444
38864
|
}
|
|
38445
38865
|
}
|
|
38446
38866
|
]
|
|
@@ -38465,13 +38885,13 @@
|
|
|
38465
38885
|
{
|
|
38466
38886
|
"type": "object",
|
|
38467
38887
|
"additionalProperties": {
|
|
38468
|
-
"$ref": "$.operator.methods[
|
|
38888
|
+
"$ref": "$.operator.methods[155].inputSchema.properties.metadata.additionalProperties"
|
|
38469
38889
|
}
|
|
38470
38890
|
},
|
|
38471
38891
|
{
|
|
38472
38892
|
"type": "array",
|
|
38473
38893
|
"items": {
|
|
38474
|
-
"$ref": "$.operator.methods[
|
|
38894
|
+
"$ref": "$.operator.methods[155].inputSchema.properties.metadata.additionalProperties"
|
|
38475
38895
|
}
|
|
38476
38896
|
}
|
|
38477
38897
|
]
|
|
@@ -38554,13 +38974,13 @@
|
|
|
38554
38974
|
{
|
|
38555
38975
|
"type": "object",
|
|
38556
38976
|
"additionalProperties": {
|
|
38557
|
-
"$ref": "$.operator.methods[
|
|
38977
|
+
"$ref": "$.operator.methods[155].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
38558
38978
|
}
|
|
38559
38979
|
},
|
|
38560
38980
|
{
|
|
38561
38981
|
"type": "array",
|
|
38562
38982
|
"items": {
|
|
38563
|
-
"$ref": "$.operator.methods[
|
|
38983
|
+
"$ref": "$.operator.methods[155].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
38564
38984
|
}
|
|
38565
38985
|
}
|
|
38566
38986
|
]
|
|
@@ -38592,13 +39012,13 @@
|
|
|
38592
39012
|
{
|
|
38593
39013
|
"type": "object",
|
|
38594
39014
|
"additionalProperties": {
|
|
38595
|
-
"$ref": "$.operator.methods[
|
|
39015
|
+
"$ref": "$.operator.methods[155].outputSchema.properties.metadata.additionalProperties"
|
|
38596
39016
|
}
|
|
38597
39017
|
},
|
|
38598
39018
|
{
|
|
38599
39019
|
"type": "array",
|
|
38600
39020
|
"items": {
|
|
38601
|
-
"$ref": "$.operator.methods[
|
|
39021
|
+
"$ref": "$.operator.methods[155].outputSchema.properties.metadata.additionalProperties"
|
|
38602
39022
|
}
|
|
38603
39023
|
}
|
|
38604
39024
|
]
|
|
@@ -38678,13 +39098,13 @@
|
|
|
38678
39098
|
{
|
|
38679
39099
|
"type": "object",
|
|
38680
39100
|
"additionalProperties": {
|
|
38681
|
-
"$ref": "$.operator.methods[
|
|
39101
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
38682
39102
|
}
|
|
38683
39103
|
},
|
|
38684
39104
|
{
|
|
38685
39105
|
"type": "array",
|
|
38686
39106
|
"items": {
|
|
38687
|
-
"$ref": "$.operator.methods[
|
|
39107
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
38688
39108
|
}
|
|
38689
39109
|
}
|
|
38690
39110
|
]
|
|
@@ -38759,13 +39179,13 @@
|
|
|
38759
39179
|
{
|
|
38760
39180
|
"type": "object",
|
|
38761
39181
|
"additionalProperties": {
|
|
38762
|
-
"$ref": "$.operator.methods[
|
|
39182
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
38763
39183
|
}
|
|
38764
39184
|
},
|
|
38765
39185
|
{
|
|
38766
39186
|
"type": "array",
|
|
38767
39187
|
"items": {
|
|
38768
|
-
"$ref": "$.operator.methods[
|
|
39188
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
38769
39189
|
}
|
|
38770
39190
|
}
|
|
38771
39191
|
]
|
|
@@ -38796,13 +39216,13 @@
|
|
|
38796
39216
|
{
|
|
38797
39217
|
"type": "object",
|
|
38798
39218
|
"additionalProperties": {
|
|
38799
|
-
"$ref": "$.operator.methods[
|
|
39219
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.metadata.additionalProperties"
|
|
38800
39220
|
}
|
|
38801
39221
|
},
|
|
38802
39222
|
{
|
|
38803
39223
|
"type": "array",
|
|
38804
39224
|
"items": {
|
|
38805
|
-
"$ref": "$.operator.methods[
|
|
39225
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.metadata.additionalProperties"
|
|
38806
39226
|
}
|
|
38807
39227
|
}
|
|
38808
39228
|
]
|
|
@@ -38878,13 +39298,13 @@
|
|
|
38878
39298
|
{
|
|
38879
39299
|
"type": "object",
|
|
38880
39300
|
"additionalProperties": {
|
|
38881
|
-
"$ref": "$.operator.methods[
|
|
39301
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
38882
39302
|
}
|
|
38883
39303
|
},
|
|
38884
39304
|
{
|
|
38885
39305
|
"type": "array",
|
|
38886
39306
|
"items": {
|
|
38887
|
-
"$ref": "$.operator.methods[
|
|
39307
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
38888
39308
|
}
|
|
38889
39309
|
}
|
|
38890
39310
|
]
|
|
@@ -38968,13 +39388,13 @@
|
|
|
38968
39388
|
{
|
|
38969
39389
|
"type": "object",
|
|
38970
39390
|
"additionalProperties": {
|
|
38971
|
-
"$ref": "$.operator.methods[
|
|
39391
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
38972
39392
|
}
|
|
38973
39393
|
},
|
|
38974
39394
|
{
|
|
38975
39395
|
"type": "array",
|
|
38976
39396
|
"items": {
|
|
38977
|
-
"$ref": "$.operator.methods[
|
|
39397
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
38978
39398
|
}
|
|
38979
39399
|
}
|
|
38980
39400
|
]
|
|
@@ -39007,13 +39427,13 @@
|
|
|
39007
39427
|
{
|
|
39008
39428
|
"type": "object",
|
|
39009
39429
|
"additionalProperties": {
|
|
39010
|
-
"$ref": "$.operator.methods[
|
|
39430
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
39011
39431
|
}
|
|
39012
39432
|
},
|
|
39013
39433
|
{
|
|
39014
39434
|
"type": "array",
|
|
39015
39435
|
"items": {
|
|
39016
|
-
"$ref": "$.operator.methods[
|
|
39436
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
39017
39437
|
}
|
|
39018
39438
|
}
|
|
39019
39439
|
]
|
|
@@ -39121,13 +39541,13 @@
|
|
|
39121
39541
|
{
|
|
39122
39542
|
"type": "object",
|
|
39123
39543
|
"additionalProperties": {
|
|
39124
|
-
"$ref": "$.operator.methods[
|
|
39544
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
39125
39545
|
}
|
|
39126
39546
|
},
|
|
39127
39547
|
{
|
|
39128
39548
|
"type": "array",
|
|
39129
39549
|
"items": {
|
|
39130
|
-
"$ref": "$.operator.methods[
|
|
39550
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
39131
39551
|
}
|
|
39132
39552
|
}
|
|
39133
39553
|
]
|
|
@@ -39167,13 +39587,13 @@
|
|
|
39167
39587
|
{
|
|
39168
39588
|
"type": "object",
|
|
39169
39589
|
"additionalProperties": {
|
|
39170
|
-
"$ref": "$.operator.methods[
|
|
39590
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
39171
39591
|
}
|
|
39172
39592
|
},
|
|
39173
39593
|
{
|
|
39174
39594
|
"type": "array",
|
|
39175
39595
|
"items": {
|
|
39176
|
-
"$ref": "$.operator.methods[
|
|
39596
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
39177
39597
|
}
|
|
39178
39598
|
}
|
|
39179
39599
|
]
|
|
@@ -39279,13 +39699,13 @@
|
|
|
39279
39699
|
{
|
|
39280
39700
|
"type": "object",
|
|
39281
39701
|
"additionalProperties": {
|
|
39282
|
-
"$ref": "$.operator.methods[
|
|
39702
|
+
"$ref": "$.operator.methods[157].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
39283
39703
|
}
|
|
39284
39704
|
},
|
|
39285
39705
|
{
|
|
39286
39706
|
"type": "array",
|
|
39287
39707
|
"items": {
|
|
39288
|
-
"$ref": "$.operator.methods[
|
|
39708
|
+
"$ref": "$.operator.methods[157].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
39289
39709
|
}
|
|
39290
39710
|
}
|
|
39291
39711
|
]
|
|
@@ -39369,13 +39789,13 @@
|
|
|
39369
39789
|
{
|
|
39370
39790
|
"type": "object",
|
|
39371
39791
|
"additionalProperties": {
|
|
39372
|
-
"$ref": "$.operator.methods[
|
|
39792
|
+
"$ref": "$.operator.methods[157].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
39373
39793
|
}
|
|
39374
39794
|
},
|
|
39375
39795
|
{
|
|
39376
39796
|
"type": "array",
|
|
39377
39797
|
"items": {
|
|
39378
|
-
"$ref": "$.operator.methods[
|
|
39798
|
+
"$ref": "$.operator.methods[157].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
39379
39799
|
}
|
|
39380
39800
|
}
|
|
39381
39801
|
]
|
|
@@ -39408,13 +39828,13 @@
|
|
|
39408
39828
|
{
|
|
39409
39829
|
"type": "object",
|
|
39410
39830
|
"additionalProperties": {
|
|
39411
|
-
"$ref": "$.operator.methods[
|
|
39831
|
+
"$ref": "$.operator.methods[157].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
39412
39832
|
}
|
|
39413
39833
|
},
|
|
39414
39834
|
{
|
|
39415
39835
|
"type": "array",
|
|
39416
39836
|
"items": {
|
|
39417
|
-
"$ref": "$.operator.methods[
|
|
39837
|
+
"$ref": "$.operator.methods[157].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
39418
39838
|
}
|
|
39419
39839
|
}
|
|
39420
39840
|
]
|
|
@@ -39560,13 +39980,13 @@
|
|
|
39560
39980
|
{
|
|
39561
39981
|
"type": "object",
|
|
39562
39982
|
"additionalProperties": {
|
|
39563
|
-
"$ref": "$.operator.methods[
|
|
39983
|
+
"$ref": "$.operator.methods[158].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
39564
39984
|
}
|
|
39565
39985
|
},
|
|
39566
39986
|
{
|
|
39567
39987
|
"type": "array",
|
|
39568
39988
|
"items": {
|
|
39569
|
-
"$ref": "$.operator.methods[
|
|
39989
|
+
"$ref": "$.operator.methods[158].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
39570
39990
|
}
|
|
39571
39991
|
}
|
|
39572
39992
|
]
|
|
@@ -39666,13 +40086,13 @@
|
|
|
39666
40086
|
{
|
|
39667
40087
|
"type": "object",
|
|
39668
40088
|
"additionalProperties": {
|
|
39669
|
-
"$ref": "$.operator.methods[
|
|
40089
|
+
"$ref": "$.operator.methods[159].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
39670
40090
|
}
|
|
39671
40091
|
},
|
|
39672
40092
|
{
|
|
39673
40093
|
"type": "array",
|
|
39674
40094
|
"items": {
|
|
39675
|
-
"$ref": "$.operator.methods[
|
|
40095
|
+
"$ref": "$.operator.methods[159].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
39676
40096
|
}
|
|
39677
40097
|
}
|
|
39678
40098
|
]
|
|
@@ -39790,13 +40210,13 @@
|
|
|
39790
40210
|
{
|
|
39791
40211
|
"type": "object",
|
|
39792
40212
|
"additionalProperties": {
|
|
39793
|
-
"$ref": "$.operator.methods[
|
|
40213
|
+
"$ref": "$.operator.methods[160].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
39794
40214
|
}
|
|
39795
40215
|
},
|
|
39796
40216
|
{
|
|
39797
40217
|
"type": "array",
|
|
39798
40218
|
"items": {
|
|
39799
|
-
"$ref": "$.operator.methods[
|
|
40219
|
+
"$ref": "$.operator.methods[160].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
39800
40220
|
}
|
|
39801
40221
|
}
|
|
39802
40222
|
]
|
|
@@ -39880,13 +40300,13 @@
|
|
|
39880
40300
|
{
|
|
39881
40301
|
"type": "object",
|
|
39882
40302
|
"additionalProperties": {
|
|
39883
|
-
"$ref": "$.operator.methods[
|
|
40303
|
+
"$ref": "$.operator.methods[160].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
39884
40304
|
}
|
|
39885
40305
|
},
|
|
39886
40306
|
{
|
|
39887
40307
|
"type": "array",
|
|
39888
40308
|
"items": {
|
|
39889
|
-
"$ref": "$.operator.methods[
|
|
40309
|
+
"$ref": "$.operator.methods[160].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
39890
40310
|
}
|
|
39891
40311
|
}
|
|
39892
40312
|
]
|
|
@@ -39919,13 +40339,13 @@
|
|
|
39919
40339
|
{
|
|
39920
40340
|
"type": "object",
|
|
39921
40341
|
"additionalProperties": {
|
|
39922
|
-
"$ref": "$.operator.methods[
|
|
40342
|
+
"$ref": "$.operator.methods[160].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
39923
40343
|
}
|
|
39924
40344
|
},
|
|
39925
40345
|
{
|
|
39926
40346
|
"type": "array",
|
|
39927
40347
|
"items": {
|
|
39928
|
-
"$ref": "$.operator.methods[
|
|
40348
|
+
"$ref": "$.operator.methods[160].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
39929
40349
|
}
|
|
39930
40350
|
}
|
|
39931
40351
|
]
|
|
@@ -39978,13 +40398,13 @@
|
|
|
39978
40398
|
{
|
|
39979
40399
|
"type": "object",
|
|
39980
40400
|
"additionalProperties": {
|
|
39981
|
-
"$ref": "$.operator.methods[
|
|
40401
|
+
"$ref": "$.operator.methods[160].inputSchema.properties.metadata.additionalProperties"
|
|
39982
40402
|
}
|
|
39983
40403
|
},
|
|
39984
40404
|
{
|
|
39985
40405
|
"type": "array",
|
|
39986
40406
|
"items": {
|
|
39987
|
-
"$ref": "$.operator.methods[
|
|
40407
|
+
"$ref": "$.operator.methods[160].inputSchema.properties.metadata.additionalProperties"
|
|
39988
40408
|
}
|
|
39989
40409
|
}
|
|
39990
40410
|
]
|
|
@@ -40057,13 +40477,13 @@
|
|
|
40057
40477
|
{
|
|
40058
40478
|
"type": "object",
|
|
40059
40479
|
"additionalProperties": {
|
|
40060
|
-
"$ref": "$.operator.methods[
|
|
40480
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
40061
40481
|
}
|
|
40062
40482
|
},
|
|
40063
40483
|
{
|
|
40064
40484
|
"type": "array",
|
|
40065
40485
|
"items": {
|
|
40066
|
-
"$ref": "$.operator.methods[
|
|
40486
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
40067
40487
|
}
|
|
40068
40488
|
}
|
|
40069
40489
|
]
|
|
@@ -40103,13 +40523,13 @@
|
|
|
40103
40523
|
{
|
|
40104
40524
|
"type": "object",
|
|
40105
40525
|
"additionalProperties": {
|
|
40106
|
-
"$ref": "$.operator.methods[
|
|
40526
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
40107
40527
|
}
|
|
40108
40528
|
},
|
|
40109
40529
|
{
|
|
40110
40530
|
"type": "array",
|
|
40111
40531
|
"items": {
|
|
40112
|
-
"$ref": "$.operator.methods[
|
|
40532
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
40113
40533
|
}
|
|
40114
40534
|
}
|
|
40115
40535
|
]
|
|
@@ -40259,13 +40679,13 @@
|
|
|
40259
40679
|
{
|
|
40260
40680
|
"type": "object",
|
|
40261
40681
|
"additionalProperties": {
|
|
40262
|
-
"$ref": "$.operator.methods[
|
|
40682
|
+
"$ref": "$.operator.methods[161].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
40263
40683
|
}
|
|
40264
40684
|
},
|
|
40265
40685
|
{
|
|
40266
40686
|
"type": "array",
|
|
40267
40687
|
"items": {
|
|
40268
|
-
"$ref": "$.operator.methods[
|
|
40688
|
+
"$ref": "$.operator.methods[161].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
40269
40689
|
}
|
|
40270
40690
|
}
|
|
40271
40691
|
]
|
|
@@ -40460,13 +40880,13 @@
|
|
|
40460
40880
|
{
|
|
40461
40881
|
"type": "object",
|
|
40462
40882
|
"additionalProperties": {
|
|
40463
|
-
"$ref": "$.operator.methods[
|
|
40883
|
+
"$ref": "$.operator.methods[162].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
40464
40884
|
}
|
|
40465
40885
|
},
|
|
40466
40886
|
{
|
|
40467
40887
|
"type": "array",
|
|
40468
40888
|
"items": {
|
|
40469
|
-
"$ref": "$.operator.methods[
|
|
40889
|
+
"$ref": "$.operator.methods[162].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
40470
40890
|
}
|
|
40471
40891
|
}
|
|
40472
40892
|
]
|
|
@@ -41795,13 +42215,13 @@
|
|
|
41795
42215
|
{
|
|
41796
42216
|
"type": "object",
|
|
41797
42217
|
"additionalProperties": {
|
|
41798
|
-
"$ref": "$.operator.methods[
|
|
42218
|
+
"$ref": "$.operator.methods[170].outputSchema.properties.contract.properties.endpoints.items.properties.inputSchema.additionalProperties"
|
|
41799
42219
|
}
|
|
41800
42220
|
},
|
|
41801
42221
|
{
|
|
41802
42222
|
"type": "array",
|
|
41803
42223
|
"items": {
|
|
41804
|
-
"$ref": "$.operator.methods[
|
|
42224
|
+
"$ref": "$.operator.methods[170].outputSchema.properties.contract.properties.endpoints.items.properties.inputSchema.additionalProperties"
|
|
41805
42225
|
}
|
|
41806
42226
|
}
|
|
41807
42227
|
]
|
|
@@ -41826,13 +42246,13 @@
|
|
|
41826
42246
|
{
|
|
41827
42247
|
"type": "object",
|
|
41828
42248
|
"additionalProperties": {
|
|
41829
|
-
"$ref": "$.operator.methods[
|
|
42249
|
+
"$ref": "$.operator.methods[170].outputSchema.properties.contract.properties.endpoints.items.properties.outputSchema.additionalProperties"
|
|
41830
42250
|
}
|
|
41831
42251
|
},
|
|
41832
42252
|
{
|
|
41833
42253
|
"type": "array",
|
|
41834
42254
|
"items": {
|
|
41835
|
-
"$ref": "$.operator.methods[
|
|
42255
|
+
"$ref": "$.operator.methods[170].outputSchema.properties.contract.properties.endpoints.items.properties.outputSchema.additionalProperties"
|
|
41836
42256
|
}
|
|
41837
42257
|
}
|
|
41838
42258
|
]
|
|
@@ -41882,13 +42302,13 @@
|
|
|
41882
42302
|
{
|
|
41883
42303
|
"type": "object",
|
|
41884
42304
|
"additionalProperties": {
|
|
41885
|
-
"$ref": "$.operator.methods[
|
|
42305
|
+
"$ref": "$.operator.methods[170].outputSchema.properties.contract.properties.metadata.additionalProperties"
|
|
41886
42306
|
}
|
|
41887
42307
|
},
|
|
41888
42308
|
{
|
|
41889
42309
|
"type": "array",
|
|
41890
42310
|
"items": {
|
|
41891
|
-
"$ref": "$.operator.methods[
|
|
42311
|
+
"$ref": "$.operator.methods[170].outputSchema.properties.contract.properties.metadata.additionalProperties"
|
|
41892
42312
|
}
|
|
41893
42313
|
}
|
|
41894
42314
|
]
|
|
@@ -41972,13 +42392,13 @@
|
|
|
41972
42392
|
{
|
|
41973
42393
|
"type": "object",
|
|
41974
42394
|
"additionalProperties": {
|
|
41975
|
-
"$ref": "$.operator.methods[
|
|
42395
|
+
"$ref": "$.operator.methods[171].inputSchema.properties.metadata.additionalProperties"
|
|
41976
42396
|
}
|
|
41977
42397
|
},
|
|
41978
42398
|
{
|
|
41979
42399
|
"type": "array",
|
|
41980
42400
|
"items": {
|
|
41981
|
-
"$ref": "$.operator.methods[
|
|
42401
|
+
"$ref": "$.operator.methods[171].inputSchema.properties.metadata.additionalProperties"
|
|
41982
42402
|
}
|
|
41983
42403
|
}
|
|
41984
42404
|
]
|
|
@@ -42099,13 +42519,13 @@
|
|
|
42099
42519
|
{
|
|
42100
42520
|
"type": "object",
|
|
42101
42521
|
"additionalProperties": {
|
|
42102
|
-
"$ref": "$.operator.methods[
|
|
42522
|
+
"$ref": "$.operator.methods[171].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
42103
42523
|
}
|
|
42104
42524
|
},
|
|
42105
42525
|
{
|
|
42106
42526
|
"type": "array",
|
|
42107
42527
|
"items": {
|
|
42108
|
-
"$ref": "$.operator.methods[
|
|
42528
|
+
"$ref": "$.operator.methods[171].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
42109
42529
|
}
|
|
42110
42530
|
}
|
|
42111
42531
|
]
|
|
@@ -42271,13 +42691,13 @@
|
|
|
42271
42691
|
{
|
|
42272
42692
|
"type": "object",
|
|
42273
42693
|
"additionalProperties": {
|
|
42274
|
-
"$ref": "$.operator.methods[
|
|
42694
|
+
"$ref": "$.operator.methods[171].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
42275
42695
|
}
|
|
42276
42696
|
},
|
|
42277
42697
|
{
|
|
42278
42698
|
"type": "array",
|
|
42279
42699
|
"items": {
|
|
42280
|
-
"$ref": "$.operator.methods[
|
|
42700
|
+
"$ref": "$.operator.methods[171].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
42281
42701
|
}
|
|
42282
42702
|
}
|
|
42283
42703
|
]
|
|
@@ -42441,13 +42861,13 @@
|
|
|
42441
42861
|
{
|
|
42442
42862
|
"type": "object",
|
|
42443
42863
|
"additionalProperties": {
|
|
42444
|
-
"$ref": "$.operator.methods[
|
|
42864
|
+
"$ref": "$.operator.methods[172].outputSchema.properties.requests.items.properties.metadata.additionalProperties"
|
|
42445
42865
|
}
|
|
42446
42866
|
},
|
|
42447
42867
|
{
|
|
42448
42868
|
"type": "array",
|
|
42449
42869
|
"items": {
|
|
42450
|
-
"$ref": "$.operator.methods[
|
|
42870
|
+
"$ref": "$.operator.methods[172].outputSchema.properties.requests.items.properties.metadata.additionalProperties"
|
|
42451
42871
|
}
|
|
42452
42872
|
}
|
|
42453
42873
|
]
|
|
@@ -42529,13 +42949,13 @@
|
|
|
42529
42949
|
{
|
|
42530
42950
|
"type": "object",
|
|
42531
42951
|
"additionalProperties": {
|
|
42532
|
-
"$ref": "$.operator.methods[
|
|
42952
|
+
"$ref": "$.operator.methods[173].inputSchema.properties.metadata.additionalProperties"
|
|
42533
42953
|
}
|
|
42534
42954
|
},
|
|
42535
42955
|
{
|
|
42536
42956
|
"type": "array",
|
|
42537
42957
|
"items": {
|
|
42538
|
-
"$ref": "$.operator.methods[
|
|
42958
|
+
"$ref": "$.operator.methods[173].inputSchema.properties.metadata.additionalProperties"
|
|
42539
42959
|
}
|
|
42540
42960
|
}
|
|
42541
42961
|
]
|
|
@@ -42656,13 +43076,13 @@
|
|
|
42656
43076
|
{
|
|
42657
43077
|
"type": "object",
|
|
42658
43078
|
"additionalProperties": {
|
|
42659
|
-
"$ref": "$.operator.methods[
|
|
43079
|
+
"$ref": "$.operator.methods[173].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
42660
43080
|
}
|
|
42661
43081
|
},
|
|
42662
43082
|
{
|
|
42663
43083
|
"type": "array",
|
|
42664
43084
|
"items": {
|
|
42665
|
-
"$ref": "$.operator.methods[
|
|
43085
|
+
"$ref": "$.operator.methods[173].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
42666
43086
|
}
|
|
42667
43087
|
}
|
|
42668
43088
|
]
|
|
@@ -42875,13 +43295,13 @@
|
|
|
42875
43295
|
{
|
|
42876
43296
|
"type": "object",
|
|
42877
43297
|
"additionalProperties": {
|
|
42878
|
-
"$ref": "$.operator.methods[
|
|
43298
|
+
"$ref": "$.operator.methods[174].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
42879
43299
|
}
|
|
42880
43300
|
},
|
|
42881
43301
|
{
|
|
42882
43302
|
"type": "array",
|
|
42883
43303
|
"items": {
|
|
42884
|
-
"$ref": "$.operator.methods[
|
|
43304
|
+
"$ref": "$.operator.methods[174].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
42885
43305
|
}
|
|
42886
43306
|
}
|
|
42887
43307
|
]
|
|
@@ -42954,13 +43374,13 @@
|
|
|
42954
43374
|
{
|
|
42955
43375
|
"type": "object",
|
|
42956
43376
|
"additionalProperties": {
|
|
42957
|
-
"$ref": "$.operator.methods[
|
|
43377
|
+
"$ref": "$.operator.methods[175].inputSchema.properties.payload"
|
|
42958
43378
|
}
|
|
42959
43379
|
},
|
|
42960
43380
|
{
|
|
42961
43381
|
"type": "array",
|
|
42962
43382
|
"items": {
|
|
42963
|
-
"$ref": "$.operator.methods[
|
|
43383
|
+
"$ref": "$.operator.methods[175].inputSchema.properties.payload"
|
|
42964
43384
|
}
|
|
42965
43385
|
}
|
|
42966
43386
|
]
|
|
@@ -43013,13 +43433,13 @@
|
|
|
43013
43433
|
{
|
|
43014
43434
|
"type": "object",
|
|
43015
43435
|
"additionalProperties": {
|
|
43016
|
-
"$ref": "$.operator.methods[
|
|
43436
|
+
"$ref": "$.operator.methods[175].inputSchema.properties.metadata.additionalProperties"
|
|
43017
43437
|
}
|
|
43018
43438
|
},
|
|
43019
43439
|
{
|
|
43020
43440
|
"type": "array",
|
|
43021
43441
|
"items": {
|
|
43022
|
-
"$ref": "$.operator.methods[
|
|
43442
|
+
"$ref": "$.operator.methods[175].inputSchema.properties.metadata.additionalProperties"
|
|
43023
43443
|
}
|
|
43024
43444
|
}
|
|
43025
43445
|
]
|
|
@@ -43100,13 +43520,13 @@
|
|
|
43100
43520
|
{
|
|
43101
43521
|
"type": "object",
|
|
43102
43522
|
"additionalProperties": {
|
|
43103
|
-
"$ref": "$.operator.methods[
|
|
43523
|
+
"$ref": "$.operator.methods[175].outputSchema.properties.work.properties.payload"
|
|
43104
43524
|
}
|
|
43105
43525
|
},
|
|
43106
43526
|
{
|
|
43107
43527
|
"type": "array",
|
|
43108
43528
|
"items": {
|
|
43109
|
-
"$ref": "$.operator.methods[
|
|
43529
|
+
"$ref": "$.operator.methods[175].outputSchema.properties.work.properties.payload"
|
|
43110
43530
|
}
|
|
43111
43531
|
}
|
|
43112
43532
|
]
|
|
@@ -43167,13 +43587,13 @@
|
|
|
43167
43587
|
{
|
|
43168
43588
|
"type": "object",
|
|
43169
43589
|
"additionalProperties": {
|
|
43170
|
-
"$ref": "$.operator.methods[
|
|
43590
|
+
"$ref": "$.operator.methods[175].outputSchema.properties.work.properties.result"
|
|
43171
43591
|
}
|
|
43172
43592
|
},
|
|
43173
43593
|
{
|
|
43174
43594
|
"type": "array",
|
|
43175
43595
|
"items": {
|
|
43176
|
-
"$ref": "$.operator.methods[
|
|
43596
|
+
"$ref": "$.operator.methods[175].outputSchema.properties.work.properties.result"
|
|
43177
43597
|
}
|
|
43178
43598
|
}
|
|
43179
43599
|
]
|
|
@@ -43263,13 +43683,13 @@
|
|
|
43263
43683
|
{
|
|
43264
43684
|
"type": "object",
|
|
43265
43685
|
"additionalProperties": {
|
|
43266
|
-
"$ref": "$.operator.methods[
|
|
43686
|
+
"$ref": "$.operator.methods[175].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
43267
43687
|
}
|
|
43268
43688
|
},
|
|
43269
43689
|
{
|
|
43270
43690
|
"type": "array",
|
|
43271
43691
|
"items": {
|
|
43272
|
-
"$ref": "$.operator.methods[
|
|
43692
|
+
"$ref": "$.operator.methods[175].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
43273
43693
|
}
|
|
43274
43694
|
}
|
|
43275
43695
|
]
|
|
@@ -43473,13 +43893,13 @@
|
|
|
43473
43893
|
{
|
|
43474
43894
|
"type": "object",
|
|
43475
43895
|
"additionalProperties": {
|
|
43476
|
-
"$ref": "$.operator.methods[
|
|
43896
|
+
"$ref": "$.operator.methods[176].outputSchema.properties.peers.items.properties.metadata.additionalProperties"
|
|
43477
43897
|
}
|
|
43478
43898
|
},
|
|
43479
43899
|
{
|
|
43480
43900
|
"type": "array",
|
|
43481
43901
|
"items": {
|
|
43482
|
-
"$ref": "$.operator.methods[
|
|
43902
|
+
"$ref": "$.operator.methods[176].outputSchema.properties.peers.items.properties.metadata.additionalProperties"
|
|
43483
43903
|
}
|
|
43484
43904
|
}
|
|
43485
43905
|
]
|
|
@@ -43690,13 +44110,13 @@
|
|
|
43690
44110
|
{
|
|
43691
44111
|
"type": "object",
|
|
43692
44112
|
"additionalProperties": {
|
|
43693
|
-
"$ref": "$.operator.methods[
|
|
44113
|
+
"$ref": "$.operator.methods[177].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
43694
44114
|
}
|
|
43695
44115
|
},
|
|
43696
44116
|
{
|
|
43697
44117
|
"type": "array",
|
|
43698
44118
|
"items": {
|
|
43699
|
-
"$ref": "$.operator.methods[
|
|
44119
|
+
"$ref": "$.operator.methods[177].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
43700
44120
|
}
|
|
43701
44121
|
}
|
|
43702
44122
|
]
|
|
@@ -43909,13 +44329,13 @@
|
|
|
43909
44329
|
{
|
|
43910
44330
|
"type": "object",
|
|
43911
44331
|
"additionalProperties": {
|
|
43912
|
-
"$ref": "$.operator.methods[
|
|
44332
|
+
"$ref": "$.operator.methods[178].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
43913
44333
|
}
|
|
43914
44334
|
},
|
|
43915
44335
|
{
|
|
43916
44336
|
"type": "array",
|
|
43917
44337
|
"items": {
|
|
43918
|
-
"$ref": "$.operator.methods[
|
|
44338
|
+
"$ref": "$.operator.methods[178].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
43919
44339
|
}
|
|
43920
44340
|
}
|
|
43921
44341
|
]
|
|
@@ -44392,13 +44812,13 @@
|
|
|
44392
44812
|
{
|
|
44393
44813
|
"type": "object",
|
|
44394
44814
|
"additionalProperties": {
|
|
44395
|
-
"$ref": "$.operator.methods[
|
|
44815
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
|
|
44396
44816
|
}
|
|
44397
44817
|
},
|
|
44398
44818
|
{
|
|
44399
44819
|
"type": "array",
|
|
44400
44820
|
"items": {
|
|
44401
|
-
"$ref": "$.operator.methods[
|
|
44821
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
|
|
44402
44822
|
}
|
|
44403
44823
|
}
|
|
44404
44824
|
]
|
|
@@ -44567,13 +44987,13 @@
|
|
|
44567
44987
|
{
|
|
44568
44988
|
"type": "object",
|
|
44569
44989
|
"additionalProperties": {
|
|
44570
|
-
"$ref": "$.operator.methods[
|
|
44990
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
|
|
44571
44991
|
}
|
|
44572
44992
|
},
|
|
44573
44993
|
{
|
|
44574
44994
|
"type": "array",
|
|
44575
44995
|
"items": {
|
|
44576
|
-
"$ref": "$.operator.methods[
|
|
44996
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
|
|
44577
44997
|
}
|
|
44578
44998
|
}
|
|
44579
44999
|
]
|
|
@@ -44662,13 +45082,13 @@
|
|
|
44662
45082
|
{
|
|
44663
45083
|
"type": "object",
|
|
44664
45084
|
"additionalProperties": {
|
|
44665
|
-
"$ref": "$.operator.methods[
|
|
45085
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.work.items.properties.payload"
|
|
44666
45086
|
}
|
|
44667
45087
|
},
|
|
44668
45088
|
{
|
|
44669
45089
|
"type": "array",
|
|
44670
45090
|
"items": {
|
|
44671
|
-
"$ref": "$.operator.methods[
|
|
45091
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.work.items.properties.payload"
|
|
44672
45092
|
}
|
|
44673
45093
|
}
|
|
44674
45094
|
]
|
|
@@ -44729,13 +45149,13 @@
|
|
|
44729
45149
|
{
|
|
44730
45150
|
"type": "object",
|
|
44731
45151
|
"additionalProperties": {
|
|
44732
|
-
"$ref": "$.operator.methods[
|
|
45152
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.work.items.properties.result"
|
|
44733
45153
|
}
|
|
44734
45154
|
},
|
|
44735
45155
|
{
|
|
44736
45156
|
"type": "array",
|
|
44737
45157
|
"items": {
|
|
44738
|
-
"$ref": "$.operator.methods[
|
|
45158
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.work.items.properties.result"
|
|
44739
45159
|
}
|
|
44740
45160
|
}
|
|
44741
45161
|
]
|
|
@@ -44825,13 +45245,13 @@
|
|
|
44825
45245
|
{
|
|
44826
45246
|
"type": "object",
|
|
44827
45247
|
"additionalProperties": {
|
|
44828
|
-
"$ref": "$.operator.methods[
|
|
45248
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
|
|
44829
45249
|
}
|
|
44830
45250
|
},
|
|
44831
45251
|
{
|
|
44832
45252
|
"type": "array",
|
|
44833
45253
|
"items": {
|
|
44834
|
-
"$ref": "$.operator.methods[
|
|
45254
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
|
|
44835
45255
|
}
|
|
44836
45256
|
}
|
|
44837
45257
|
]
|
|
@@ -44919,13 +45339,13 @@
|
|
|
44919
45339
|
{
|
|
44920
45340
|
"type": "object",
|
|
44921
45341
|
"additionalProperties": {
|
|
44922
|
-
"$ref": "$.operator.methods[
|
|
45342
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
|
|
44923
45343
|
}
|
|
44924
45344
|
},
|
|
44925
45345
|
{
|
|
44926
45346
|
"type": "array",
|
|
44927
45347
|
"items": {
|
|
44928
|
-
"$ref": "$.operator.methods[
|
|
45348
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
|
|
44929
45349
|
}
|
|
44930
45350
|
}
|
|
44931
45351
|
]
|
|
@@ -45064,13 +45484,13 @@
|
|
|
45064
45484
|
{
|
|
45065
45485
|
"type": "object",
|
|
45066
45486
|
"additionalProperties": {
|
|
45067
|
-
"$ref": "$.operator.methods[
|
|
45487
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.work.properties.payload"
|
|
45068
45488
|
}
|
|
45069
45489
|
},
|
|
45070
45490
|
{
|
|
45071
45491
|
"type": "array",
|
|
45072
45492
|
"items": {
|
|
45073
|
-
"$ref": "$.operator.methods[
|
|
45493
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.work.properties.payload"
|
|
45074
45494
|
}
|
|
45075
45495
|
}
|
|
45076
45496
|
]
|
|
@@ -45131,13 +45551,13 @@
|
|
|
45131
45551
|
{
|
|
45132
45552
|
"type": "object",
|
|
45133
45553
|
"additionalProperties": {
|
|
45134
|
-
"$ref": "$.operator.methods[
|
|
45554
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.work.properties.result"
|
|
45135
45555
|
}
|
|
45136
45556
|
},
|
|
45137
45557
|
{
|
|
45138
45558
|
"type": "array",
|
|
45139
45559
|
"items": {
|
|
45140
|
-
"$ref": "$.operator.methods[
|
|
45560
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.work.properties.result"
|
|
45141
45561
|
}
|
|
45142
45562
|
}
|
|
45143
45563
|
]
|
|
@@ -45227,13 +45647,13 @@
|
|
|
45227
45647
|
{
|
|
45228
45648
|
"type": "object",
|
|
45229
45649
|
"additionalProperties": {
|
|
45230
|
-
"$ref": "$.operator.methods[
|
|
45650
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
45231
45651
|
}
|
|
45232
45652
|
},
|
|
45233
45653
|
{
|
|
45234
45654
|
"type": "array",
|
|
45235
45655
|
"items": {
|
|
45236
|
-
"$ref": "$.operator.methods[
|
|
45656
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
45237
45657
|
}
|
|
45238
45658
|
}
|
|
45239
45659
|
]
|
|
@@ -45356,13 +45776,13 @@
|
|
|
45356
45776
|
{
|
|
45357
45777
|
"type": "object",
|
|
45358
45778
|
"additionalProperties": {
|
|
45359
|
-
"$ref": "$.operator.methods[
|
|
45779
|
+
"$ref": "$.operator.methods[181].outputSchema.properties.work.items.properties.payload"
|
|
45360
45780
|
}
|
|
45361
45781
|
},
|
|
45362
45782
|
{
|
|
45363
45783
|
"type": "array",
|
|
45364
45784
|
"items": {
|
|
45365
|
-
"$ref": "$.operator.methods[
|
|
45785
|
+
"$ref": "$.operator.methods[181].outputSchema.properties.work.items.properties.payload"
|
|
45366
45786
|
}
|
|
45367
45787
|
}
|
|
45368
45788
|
]
|
|
@@ -45423,13 +45843,13 @@
|
|
|
45423
45843
|
{
|
|
45424
45844
|
"type": "object",
|
|
45425
45845
|
"additionalProperties": {
|
|
45426
|
-
"$ref": "$.operator.methods[
|
|
45846
|
+
"$ref": "$.operator.methods[181].outputSchema.properties.work.items.properties.result"
|
|
45427
45847
|
}
|
|
45428
45848
|
},
|
|
45429
45849
|
{
|
|
45430
45850
|
"type": "array",
|
|
45431
45851
|
"items": {
|
|
45432
|
-
"$ref": "$.operator.methods[
|
|
45852
|
+
"$ref": "$.operator.methods[181].outputSchema.properties.work.items.properties.result"
|
|
45433
45853
|
}
|
|
45434
45854
|
}
|
|
45435
45855
|
]
|
|
@@ -45519,13 +45939,13 @@
|
|
|
45519
45939
|
{
|
|
45520
45940
|
"type": "object",
|
|
45521
45941
|
"additionalProperties": {
|
|
45522
|
-
"$ref": "$.operator.methods[
|
|
45942
|
+
"$ref": "$.operator.methods[181].outputSchema.properties.work.items.properties.metadata.additionalProperties"
|
|
45523
45943
|
}
|
|
45524
45944
|
},
|
|
45525
45945
|
{
|
|
45526
45946
|
"type": "array",
|
|
45527
45947
|
"items": {
|
|
45528
|
-
"$ref": "$.operator.methods[
|
|
45948
|
+
"$ref": "$.operator.methods[181].outputSchema.properties.work.items.properties.metadata.additionalProperties"
|
|
45529
45949
|
}
|
|
45530
45950
|
}
|
|
45531
45951
|
]
|
|
@@ -45708,13 +46128,13 @@
|
|
|
45708
46128
|
{
|
|
45709
46129
|
"type": "object",
|
|
45710
46130
|
"additionalProperties": {
|
|
45711
|
-
"$ref": "$.operator.methods[
|
|
46131
|
+
"$ref": "$.operator.methods[183].inputSchema.properties.metadata.additionalProperties"
|
|
45712
46132
|
}
|
|
45713
46133
|
},
|
|
45714
46134
|
{
|
|
45715
46135
|
"type": "array",
|
|
45716
46136
|
"items": {
|
|
45717
|
-
"$ref": "$.operator.methods[
|
|
46137
|
+
"$ref": "$.operator.methods[183].inputSchema.properties.metadata.additionalProperties"
|
|
45718
46138
|
}
|
|
45719
46139
|
}
|
|
45720
46140
|
]
|
|
@@ -45841,13 +46261,13 @@
|
|
|
45841
46261
|
{
|
|
45842
46262
|
"type": "object",
|
|
45843
46263
|
"additionalProperties": {
|
|
45844
|
-
"$ref": "$.operator.methods[
|
|
46264
|
+
"$ref": "$.operator.methods[183].outputSchema.properties.metadata.additionalProperties"
|
|
45845
46265
|
}
|
|
45846
46266
|
},
|
|
45847
46267
|
{
|
|
45848
46268
|
"type": "array",
|
|
45849
46269
|
"items": {
|
|
45850
|
-
"$ref": "$.operator.methods[
|
|
46270
|
+
"$ref": "$.operator.methods[183].outputSchema.properties.metadata.additionalProperties"
|
|
45851
46271
|
}
|
|
45852
46272
|
}
|
|
45853
46273
|
]
|
|
@@ -46063,13 +46483,13 @@
|
|
|
46063
46483
|
{
|
|
46064
46484
|
"type": "object",
|
|
46065
46485
|
"additionalProperties": {
|
|
46066
|
-
"$ref": "$.operator.methods[
|
|
46486
|
+
"$ref": "$.operator.methods[185].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
46067
46487
|
}
|
|
46068
46488
|
},
|
|
46069
46489
|
{
|
|
46070
46490
|
"type": "array",
|
|
46071
46491
|
"items": {
|
|
46072
|
-
"$ref": "$.operator.methods[
|
|
46492
|
+
"$ref": "$.operator.methods[185].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
46073
46493
|
}
|
|
46074
46494
|
}
|
|
46075
46495
|
]
|
|
@@ -46171,13 +46591,13 @@
|
|
|
46171
46591
|
{
|
|
46172
46592
|
"type": "object",
|
|
46173
46593
|
"additionalProperties": {
|
|
46174
|
-
"$ref": "$.operator.methods[
|
|
46594
|
+
"$ref": "$.operator.methods[186].inputSchema.properties.metadata.additionalProperties"
|
|
46175
46595
|
}
|
|
46176
46596
|
},
|
|
46177
46597
|
{
|
|
46178
46598
|
"type": "array",
|
|
46179
46599
|
"items": {
|
|
46180
|
-
"$ref": "$.operator.methods[
|
|
46600
|
+
"$ref": "$.operator.methods[186].inputSchema.properties.metadata.additionalProperties"
|
|
46181
46601
|
}
|
|
46182
46602
|
}
|
|
46183
46603
|
]
|
|
@@ -46298,13 +46718,13 @@
|
|
|
46298
46718
|
{
|
|
46299
46719
|
"type": "object",
|
|
46300
46720
|
"additionalProperties": {
|
|
46301
|
-
"$ref": "$.operator.methods[
|
|
46721
|
+
"$ref": "$.operator.methods[186].outputSchema.properties.metadata.additionalProperties"
|
|
46302
46722
|
}
|
|
46303
46723
|
},
|
|
46304
46724
|
{
|
|
46305
46725
|
"type": "array",
|
|
46306
46726
|
"items": {
|
|
46307
|
-
"$ref": "$.operator.methods[
|
|
46727
|
+
"$ref": "$.operator.methods[186].outputSchema.properties.metadata.additionalProperties"
|
|
46308
46728
|
}
|
|
46309
46729
|
}
|
|
46310
46730
|
]
|
|
@@ -46478,13 +46898,13 @@
|
|
|
46478
46898
|
{
|
|
46479
46899
|
"type": "object",
|
|
46480
46900
|
"additionalProperties": {
|
|
46481
|
-
"$ref": "$.operator.methods[
|
|
46901
|
+
"$ref": "$.operator.methods[187].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
46482
46902
|
}
|
|
46483
46903
|
},
|
|
46484
46904
|
{
|
|
46485
46905
|
"type": "array",
|
|
46486
46906
|
"items": {
|
|
46487
|
-
"$ref": "$.operator.methods[
|
|
46907
|
+
"$ref": "$.operator.methods[187].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
46488
46908
|
}
|
|
46489
46909
|
}
|
|
46490
46910
|
]
|
|
@@ -46602,13 +47022,13 @@
|
|
|
46602
47022
|
{
|
|
46603
47023
|
"type": "object",
|
|
46604
47024
|
"additionalProperties": {
|
|
46605
|
-
"$ref": "$.operator.methods[
|
|
47025
|
+
"$ref": "$.operator.methods[188].outputSchema.properties.surfaces.items.properties.metadata.additionalProperties"
|
|
46606
47026
|
}
|
|
46607
47027
|
},
|
|
46608
47028
|
{
|
|
46609
47029
|
"type": "array",
|
|
46610
47030
|
"items": {
|
|
46611
|
-
"$ref": "$.operator.methods[
|
|
47031
|
+
"$ref": "$.operator.methods[188].outputSchema.properties.surfaces.items.properties.metadata.additionalProperties"
|
|
46612
47032
|
}
|
|
46613
47033
|
}
|
|
46614
47034
|
]
|
|
@@ -48665,13 +49085,13 @@
|
|
|
48665
49085
|
{
|
|
48666
49086
|
"type": "object",
|
|
48667
49087
|
"additionalProperties": {
|
|
48668
|
-
"$ref": "$.operator.methods[
|
|
49088
|
+
"$ref": "$.operator.methods[196].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
48669
49089
|
}
|
|
48670
49090
|
},
|
|
48671
49091
|
{
|
|
48672
49092
|
"type": "array",
|
|
48673
49093
|
"items": {
|
|
48674
|
-
"$ref": "$.operator.methods[
|
|
49094
|
+
"$ref": "$.operator.methods[196].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
48675
49095
|
}
|
|
48676
49096
|
}
|
|
48677
49097
|
]
|
|
@@ -48846,13 +49266,13 @@
|
|
|
48846
49266
|
{
|
|
48847
49267
|
"type": "object",
|
|
48848
49268
|
"additionalProperties": {
|
|
48849
|
-
"$ref": "$.operator.methods[
|
|
49269
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
48850
49270
|
}
|
|
48851
49271
|
},
|
|
48852
49272
|
{
|
|
48853
49273
|
"type": "array",
|
|
48854
49274
|
"items": {
|
|
48855
|
-
"$ref": "$.operator.methods[
|
|
49275
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
48856
49276
|
}
|
|
48857
49277
|
}
|
|
48858
49278
|
]
|
|
@@ -49138,13 +49558,13 @@
|
|
|
49138
49558
|
{
|
|
49139
49559
|
"type": "object",
|
|
49140
49560
|
"additionalProperties": {
|
|
49141
|
-
"$ref": "$.operator.methods[
|
|
49561
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
49142
49562
|
}
|
|
49143
49563
|
},
|
|
49144
49564
|
{
|
|
49145
49565
|
"type": "array",
|
|
49146
49566
|
"items": {
|
|
49147
|
-
"$ref": "$.operator.methods[
|
|
49567
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
49148
49568
|
}
|
|
49149
49569
|
}
|
|
49150
49570
|
]
|
|
@@ -49231,13 +49651,13 @@
|
|
|
49231
49651
|
{
|
|
49232
49652
|
"type": "object",
|
|
49233
49653
|
"additionalProperties": {
|
|
49234
|
-
"$ref": "$.operator.methods[
|
|
49654
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
49235
49655
|
}
|
|
49236
49656
|
},
|
|
49237
49657
|
{
|
|
49238
49658
|
"type": "array",
|
|
49239
49659
|
"items": {
|
|
49240
|
-
"$ref": "$.operator.methods[
|
|
49660
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
49241
49661
|
}
|
|
49242
49662
|
}
|
|
49243
49663
|
]
|
|
@@ -49341,13 +49761,13 @@
|
|
|
49341
49761
|
{
|
|
49342
49762
|
"type": "object",
|
|
49343
49763
|
"additionalProperties": {
|
|
49344
|
-
"$ref": "$.operator.methods[
|
|
49764
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
49345
49765
|
}
|
|
49346
49766
|
},
|
|
49347
49767
|
{
|
|
49348
49768
|
"type": "array",
|
|
49349
49769
|
"items": {
|
|
49350
|
-
"$ref": "$.operator.methods[
|
|
49770
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
49351
49771
|
}
|
|
49352
49772
|
}
|
|
49353
49773
|
]
|
|
@@ -49649,13 +50069,13 @@
|
|
|
49649
50069
|
{
|
|
49650
50070
|
"type": "object",
|
|
49651
50071
|
"additionalProperties": {
|
|
49652
|
-
"$ref": "$.operator.methods[
|
|
50072
|
+
"$ref": "$.operator.methods[199].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
49653
50073
|
}
|
|
49654
50074
|
},
|
|
49655
50075
|
{
|
|
49656
50076
|
"type": "array",
|
|
49657
50077
|
"items": {
|
|
49658
|
-
"$ref": "$.operator.methods[
|
|
50078
|
+
"$ref": "$.operator.methods[199].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
49659
50079
|
}
|
|
49660
50080
|
}
|
|
49661
50081
|
]
|
|
@@ -49739,13 +50159,13 @@
|
|
|
49739
50159
|
{
|
|
49740
50160
|
"type": "object",
|
|
49741
50161
|
"additionalProperties": {
|
|
49742
|
-
"$ref": "$.operator.methods[
|
|
50162
|
+
"$ref": "$.operator.methods[199].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
49743
50163
|
}
|
|
49744
50164
|
},
|
|
49745
50165
|
{
|
|
49746
50166
|
"type": "array",
|
|
49747
50167
|
"items": {
|
|
49748
|
-
"$ref": "$.operator.methods[
|
|
50168
|
+
"$ref": "$.operator.methods[199].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
49749
50169
|
}
|
|
49750
50170
|
}
|
|
49751
50171
|
]
|
|
@@ -49896,13 +50316,13 @@
|
|
|
49896
50316
|
{
|
|
49897
50317
|
"type": "object",
|
|
49898
50318
|
"additionalProperties": {
|
|
49899
|
-
"$ref": "$.operator.methods[
|
|
50319
|
+
"$ref": "$.operator.methods[200].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
49900
50320
|
}
|
|
49901
50321
|
},
|
|
49902
50322
|
{
|
|
49903
50323
|
"type": "array",
|
|
49904
50324
|
"items": {
|
|
49905
|
-
"$ref": "$.operator.methods[
|
|
50325
|
+
"$ref": "$.operator.methods[200].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
49906
50326
|
}
|
|
49907
50327
|
}
|
|
49908
50328
|
]
|
|
@@ -50301,13 +50721,13 @@
|
|
|
50301
50721
|
{
|
|
50302
50722
|
"type": "object",
|
|
50303
50723
|
"additionalProperties": {
|
|
50304
|
-
"$ref": "$.operator.methods[
|
|
50724
|
+
"$ref": "$.operator.methods[201].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
50305
50725
|
}
|
|
50306
50726
|
},
|
|
50307
50727
|
{
|
|
50308
50728
|
"type": "array",
|
|
50309
50729
|
"items": {
|
|
50310
|
-
"$ref": "$.operator.methods[
|
|
50730
|
+
"$ref": "$.operator.methods[201].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
50311
50731
|
}
|
|
50312
50732
|
}
|
|
50313
50733
|
]
|
|
@@ -50394,13 +50814,13 @@
|
|
|
50394
50814
|
{
|
|
50395
50815
|
"type": "object",
|
|
50396
50816
|
"additionalProperties": {
|
|
50397
|
-
"$ref": "$.operator.methods[
|
|
50817
|
+
"$ref": "$.operator.methods[201].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
50398
50818
|
}
|
|
50399
50819
|
},
|
|
50400
50820
|
{
|
|
50401
50821
|
"type": "array",
|
|
50402
50822
|
"items": {
|
|
50403
|
-
"$ref": "$.operator.methods[
|
|
50823
|
+
"$ref": "$.operator.methods[201].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
50404
50824
|
}
|
|
50405
50825
|
}
|
|
50406
50826
|
]
|
|
@@ -50504,13 +50924,13 @@
|
|
|
50504
50924
|
{
|
|
50505
50925
|
"type": "object",
|
|
50506
50926
|
"additionalProperties": {
|
|
50507
|
-
"$ref": "$.operator.methods[
|
|
50927
|
+
"$ref": "$.operator.methods[201].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
50508
50928
|
}
|
|
50509
50929
|
},
|
|
50510
50930
|
{
|
|
50511
50931
|
"type": "array",
|
|
50512
50932
|
"items": {
|
|
50513
|
-
"$ref": "$.operator.methods[
|
|
50933
|
+
"$ref": "$.operator.methods[201].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
50514
50934
|
}
|
|
50515
50935
|
}
|
|
50516
50936
|
]
|
|
@@ -50815,13 +51235,13 @@
|
|
|
50815
51235
|
{
|
|
50816
51236
|
"type": "object",
|
|
50817
51237
|
"additionalProperties": {
|
|
50818
|
-
"$ref": "$.operator.methods[
|
|
51238
|
+
"$ref": "$.operator.methods[202].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
50819
51239
|
}
|
|
50820
51240
|
},
|
|
50821
51241
|
{
|
|
50822
51242
|
"type": "array",
|
|
50823
51243
|
"items": {
|
|
50824
|
-
"$ref": "$.operator.methods[
|
|
51244
|
+
"$ref": "$.operator.methods[202].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
50825
51245
|
}
|
|
50826
51246
|
}
|
|
50827
51247
|
]
|
|
@@ -50932,13 +51352,13 @@
|
|
|
50932
51352
|
{
|
|
50933
51353
|
"type": "object",
|
|
50934
51354
|
"additionalProperties": {
|
|
50935
|
-
"$ref": "$.operator.methods[
|
|
51355
|
+
"$ref": "$.operator.methods[202].outputSchema.properties.inputs.items.properties.metadata.additionalProperties"
|
|
50936
51356
|
}
|
|
50937
51357
|
},
|
|
50938
51358
|
{
|
|
50939
51359
|
"type": "array",
|
|
50940
51360
|
"items": {
|
|
50941
|
-
"$ref": "$.operator.methods[
|
|
51361
|
+
"$ref": "$.operator.methods[202].outputSchema.properties.inputs.items.properties.metadata.additionalProperties"
|
|
50942
51362
|
}
|
|
50943
51363
|
}
|
|
50944
51364
|
]
|
|
@@ -51311,13 +51731,13 @@
|
|
|
51311
51731
|
{
|
|
51312
51732
|
"type": "object",
|
|
51313
51733
|
"additionalProperties": {
|
|
51314
|
-
"$ref": "$.operator.methods[
|
|
51734
|
+
"$ref": "$.operator.methods[204].outputSchema.properties.sessions.items.properties.metadata.additionalProperties"
|
|
51315
51735
|
}
|
|
51316
51736
|
},
|
|
51317
51737
|
{
|
|
51318
51738
|
"type": "array",
|
|
51319
51739
|
"items": {
|
|
51320
|
-
"$ref": "$.operator.methods[
|
|
51740
|
+
"$ref": "$.operator.methods[204].outputSchema.properties.sessions.items.properties.metadata.additionalProperties"
|
|
51321
51741
|
}
|
|
51322
51742
|
}
|
|
51323
51743
|
]
|
|
@@ -51630,13 +52050,13 @@
|
|
|
51630
52050
|
{
|
|
51631
52051
|
"type": "object",
|
|
51632
52052
|
"additionalProperties": {
|
|
51633
|
-
"$ref": "$.operator.methods[
|
|
52053
|
+
"$ref": "$.operator.methods[205].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
51634
52054
|
}
|
|
51635
52055
|
},
|
|
51636
52056
|
{
|
|
51637
52057
|
"type": "array",
|
|
51638
52058
|
"items": {
|
|
51639
|
-
"$ref": "$.operator.methods[
|
|
52059
|
+
"$ref": "$.operator.methods[205].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
51640
52060
|
}
|
|
51641
52061
|
}
|
|
51642
52062
|
]
|
|
@@ -51723,13 +52143,13 @@
|
|
|
51723
52143
|
{
|
|
51724
52144
|
"type": "object",
|
|
51725
52145
|
"additionalProperties": {
|
|
51726
|
-
"$ref": "$.operator.methods[
|
|
52146
|
+
"$ref": "$.operator.methods[205].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
|
|
51727
52147
|
}
|
|
51728
52148
|
},
|
|
51729
52149
|
{
|
|
51730
52150
|
"type": "array",
|
|
51731
52151
|
"items": {
|
|
51732
|
-
"$ref": "$.operator.methods[
|
|
52152
|
+
"$ref": "$.operator.methods[205].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
|
|
51733
52153
|
}
|
|
51734
52154
|
}
|
|
51735
52155
|
]
|
|
@@ -51833,13 +52253,13 @@
|
|
|
51833
52253
|
{
|
|
51834
52254
|
"type": "object",
|
|
51835
52255
|
"additionalProperties": {
|
|
51836
|
-
"$ref": "$.operator.methods[
|
|
52256
|
+
"$ref": "$.operator.methods[205].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
|
|
51837
52257
|
}
|
|
51838
52258
|
},
|
|
51839
52259
|
{
|
|
51840
52260
|
"type": "array",
|
|
51841
52261
|
"items": {
|
|
51842
|
-
"$ref": "$.operator.methods[
|
|
52262
|
+
"$ref": "$.operator.methods[205].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
|
|
51843
52263
|
}
|
|
51844
52264
|
}
|
|
51845
52265
|
]
|
|
@@ -52149,13 +52569,13 @@
|
|
|
52149
52569
|
{
|
|
52150
52570
|
"type": "object",
|
|
52151
52571
|
"additionalProperties": {
|
|
52152
|
-
"$ref": "$.operator.methods[
|
|
52572
|
+
"$ref": "$.operator.methods[206].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
52153
52573
|
}
|
|
52154
52574
|
},
|
|
52155
52575
|
{
|
|
52156
52576
|
"type": "array",
|
|
52157
52577
|
"items": {
|
|
52158
|
-
"$ref": "$.operator.methods[
|
|
52578
|
+
"$ref": "$.operator.methods[206].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
52159
52579
|
}
|
|
52160
52580
|
}
|
|
52161
52581
|
]
|
|
@@ -52239,13 +52659,13 @@
|
|
|
52239
52659
|
{
|
|
52240
52660
|
"type": "object",
|
|
52241
52661
|
"additionalProperties": {
|
|
52242
|
-
"$ref": "$.operator.methods[
|
|
52662
|
+
"$ref": "$.operator.methods[206].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
52243
52663
|
}
|
|
52244
52664
|
},
|
|
52245
52665
|
{
|
|
52246
52666
|
"type": "array",
|
|
52247
52667
|
"items": {
|
|
52248
|
-
"$ref": "$.operator.methods[
|
|
52668
|
+
"$ref": "$.operator.methods[206].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
52249
52669
|
}
|
|
52250
52670
|
}
|
|
52251
52671
|
]
|
|
@@ -52414,13 +52834,13 @@
|
|
|
52414
52834
|
{
|
|
52415
52835
|
"type": "object",
|
|
52416
52836
|
"additionalProperties": {
|
|
52417
|
-
"$ref": "$.operator.methods[
|
|
52837
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
52418
52838
|
}
|
|
52419
52839
|
},
|
|
52420
52840
|
{
|
|
52421
52841
|
"type": "array",
|
|
52422
52842
|
"items": {
|
|
52423
|
-
"$ref": "$.operator.methods[
|
|
52843
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
52424
52844
|
}
|
|
52425
52845
|
}
|
|
52426
52846
|
]
|
|
@@ -52709,13 +53129,13 @@
|
|
|
52709
53129
|
{
|
|
52710
53130
|
"type": "object",
|
|
52711
53131
|
"additionalProperties": {
|
|
52712
|
-
"$ref": "$.operator.methods[
|
|
53132
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
52713
53133
|
}
|
|
52714
53134
|
},
|
|
52715
53135
|
{
|
|
52716
53136
|
"type": "array",
|
|
52717
53137
|
"items": {
|
|
52718
|
-
"$ref": "$.operator.methods[
|
|
53138
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
52719
53139
|
}
|
|
52720
53140
|
}
|
|
52721
53141
|
]
|
|
@@ -52802,13 +53222,13 @@
|
|
|
52802
53222
|
{
|
|
52803
53223
|
"type": "object",
|
|
52804
53224
|
"additionalProperties": {
|
|
52805
|
-
"$ref": "$.operator.methods[
|
|
53225
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
52806
53226
|
}
|
|
52807
53227
|
},
|
|
52808
53228
|
{
|
|
52809
53229
|
"type": "array",
|
|
52810
53230
|
"items": {
|
|
52811
|
-
"$ref": "$.operator.methods[
|
|
53231
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
52812
53232
|
}
|
|
52813
53233
|
}
|
|
52814
53234
|
]
|
|
@@ -52912,13 +53332,13 @@
|
|
|
52912
53332
|
{
|
|
52913
53333
|
"type": "object",
|
|
52914
53334
|
"additionalProperties": {
|
|
52915
|
-
"$ref": "$.operator.methods[
|
|
53335
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
52916
53336
|
}
|
|
52917
53337
|
},
|
|
52918
53338
|
{
|
|
52919
53339
|
"type": "array",
|
|
52920
53340
|
"items": {
|
|
52921
|
-
"$ref": "$.operator.methods[
|
|
53341
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
52922
53342
|
}
|
|
52923
53343
|
}
|
|
52924
53344
|
]
|
|
@@ -53260,13 +53680,13 @@
|
|
|
53260
53680
|
{
|
|
53261
53681
|
"type": "object",
|
|
53262
53682
|
"additionalProperties": {
|
|
53263
|
-
"$ref": "$.operator.methods[
|
|
53683
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.conflicts.items.properties.localValue"
|
|
53264
53684
|
}
|
|
53265
53685
|
},
|
|
53266
53686
|
{
|
|
53267
53687
|
"type": "array",
|
|
53268
53688
|
"items": {
|
|
53269
|
-
"$ref": "$.operator.methods[
|
|
53689
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.conflicts.items.properties.localValue"
|
|
53270
53690
|
}
|
|
53271
53691
|
}
|
|
53272
53692
|
]
|
|
@@ -53288,13 +53708,13 @@
|
|
|
53288
53708
|
{
|
|
53289
53709
|
"type": "object",
|
|
53290
53710
|
"additionalProperties": {
|
|
53291
|
-
"$ref": "$.operator.methods[
|
|
53711
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.conflicts.items.properties.incomingValue"
|
|
53292
53712
|
}
|
|
53293
53713
|
},
|
|
53294
53714
|
{
|
|
53295
53715
|
"type": "array",
|
|
53296
53716
|
"items": {
|
|
53297
|
-
"$ref": "$.operator.methods[
|
|
53717
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.conflicts.items.properties.incomingValue"
|
|
53298
53718
|
}
|
|
53299
53719
|
}
|
|
53300
53720
|
]
|
|
@@ -53397,13 +53817,13 @@
|
|
|
53397
53817
|
{
|
|
53398
53818
|
"type": "object",
|
|
53399
53819
|
"additionalProperties": {
|
|
53400
|
-
"$ref": "$.operator.methods[
|
|
53820
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.previousValue"
|
|
53401
53821
|
}
|
|
53402
53822
|
},
|
|
53403
53823
|
{
|
|
53404
53824
|
"type": "array",
|
|
53405
53825
|
"items": {
|
|
53406
|
-
"$ref": "$.operator.methods[
|
|
53826
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.previousValue"
|
|
53407
53827
|
}
|
|
53408
53828
|
}
|
|
53409
53829
|
]
|
|
@@ -53425,13 +53845,13 @@
|
|
|
53425
53845
|
{
|
|
53426
53846
|
"type": "object",
|
|
53427
53847
|
"additionalProperties": {
|
|
53428
|
-
"$ref": "$.operator.methods[
|
|
53848
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.nextValue"
|
|
53429
53849
|
}
|
|
53430
53850
|
},
|
|
53431
53851
|
{
|
|
53432
53852
|
"type": "array",
|
|
53433
53853
|
"items": {
|
|
53434
|
-
"$ref": "$.operator.methods[
|
|
53854
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.nextValue"
|
|
53435
53855
|
}
|
|
53436
53856
|
}
|
|
53437
53857
|
]
|
|
@@ -53515,13 +53935,13 @@
|
|
|
53515
53935
|
{
|
|
53516
53936
|
"type": "object",
|
|
53517
53937
|
"additionalProperties": {
|
|
53518
|
-
"$ref": "$.operator.methods[
|
|
53938
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.rollbackHistory.items.properties.previousValues.additionalProperties"
|
|
53519
53939
|
}
|
|
53520
53940
|
},
|
|
53521
53941
|
{
|
|
53522
53942
|
"type": "array",
|
|
53523
53943
|
"items": {
|
|
53524
|
-
"$ref": "$.operator.methods[
|
|
53944
|
+
"$ref": "$.operator.methods[210].outputSchema.anyOf[1].properties.rollbackHistory.items.properties.previousValues.additionalProperties"
|
|
53525
53945
|
}
|
|
53526
53946
|
}
|
|
53527
53947
|
]
|
|
@@ -53722,13 +54142,13 @@
|
|
|
53722
54142
|
{
|
|
53723
54143
|
"type": "object",
|
|
53724
54144
|
"additionalProperties": {
|
|
53725
|
-
"$ref": "$.operator.methods[
|
|
54145
|
+
"$ref": "$.operator.methods[211].outputSchema.properties.task.properties.result"
|
|
53726
54146
|
}
|
|
53727
54147
|
},
|
|
53728
54148
|
{
|
|
53729
54149
|
"type": "array",
|
|
53730
54150
|
"items": {
|
|
53731
|
-
"$ref": "$.operator.methods[
|
|
54151
|
+
"$ref": "$.operator.methods[211].outputSchema.properties.task.properties.result"
|
|
53732
54152
|
}
|
|
53733
54153
|
}
|
|
53734
54154
|
]
|
|
@@ -53954,13 +54374,13 @@
|
|
|
53954
54374
|
{
|
|
53955
54375
|
"type": "object",
|
|
53956
54376
|
"additionalProperties": {
|
|
53957
|
-
"$ref": "$.operator.methods[
|
|
54377
|
+
"$ref": "$.operator.methods[212].inputSchema.properties.metadata.additionalProperties"
|
|
53958
54378
|
}
|
|
53959
54379
|
},
|
|
53960
54380
|
{
|
|
53961
54381
|
"type": "array",
|
|
53962
54382
|
"items": {
|
|
53963
|
-
"$ref": "$.operator.methods[
|
|
54383
|
+
"$ref": "$.operator.methods[212].inputSchema.properties.metadata.additionalProperties"
|
|
53964
54384
|
}
|
|
53965
54385
|
}
|
|
53966
54386
|
]
|
|
@@ -54187,13 +54607,13 @@
|
|
|
54187
54607
|
{
|
|
54188
54608
|
"type": "object",
|
|
54189
54609
|
"additionalProperties": {
|
|
54190
|
-
"$ref": "$.operator.methods[
|
|
54610
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.task.properties.result"
|
|
54191
54611
|
}
|
|
54192
54612
|
},
|
|
54193
54613
|
{
|
|
54194
54614
|
"type": "array",
|
|
54195
54615
|
"items": {
|
|
54196
|
-
"$ref": "$.operator.methods[
|
|
54616
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.task.properties.result"
|
|
54197
54617
|
}
|
|
54198
54618
|
}
|
|
54199
54619
|
]
|
|
@@ -54527,13 +54947,13 @@
|
|
|
54527
54947
|
{
|
|
54528
54948
|
"type": "object",
|
|
54529
54949
|
"additionalProperties": {
|
|
54530
|
-
"$ref": "$.operator.methods[
|
|
54950
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.task.properties.result"
|
|
54531
54951
|
}
|
|
54532
54952
|
},
|
|
54533
54953
|
{
|
|
54534
54954
|
"type": "array",
|
|
54535
54955
|
"items": {
|
|
54536
|
-
"$ref": "$.operator.methods[
|
|
54956
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.task.properties.result"
|
|
54537
54957
|
}
|
|
54538
54958
|
}
|
|
54539
54959
|
]
|
|
@@ -54821,13 +55241,13 @@
|
|
|
54821
55241
|
{
|
|
54822
55242
|
"type": "object",
|
|
54823
55243
|
"additionalProperties": {
|
|
54824
|
-
"$ref": "$.operator.methods[
|
|
55244
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.items.items.properties.payload"
|
|
54825
55245
|
}
|
|
54826
55246
|
},
|
|
54827
55247
|
{
|
|
54828
55248
|
"type": "array",
|
|
54829
55249
|
"items": {
|
|
54830
|
-
"$ref": "$.operator.methods[
|
|
55250
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.items.items.properties.payload"
|
|
54831
55251
|
}
|
|
54832
55252
|
}
|
|
54833
55253
|
]
|
|
@@ -54851,13 +55271,13 @@
|
|
|
54851
55271
|
{
|
|
54852
55272
|
"type": "object",
|
|
54853
55273
|
"additionalProperties": {
|
|
54854
|
-
"$ref": "$.operator.methods[
|
|
55274
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
54855
55275
|
}
|
|
54856
55276
|
},
|
|
54857
55277
|
{
|
|
54858
55278
|
"type": "array",
|
|
54859
55279
|
"items": {
|
|
54860
|
-
"$ref": "$.operator.methods[
|
|
55280
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
54861
55281
|
}
|
|
54862
55282
|
}
|
|
54863
55283
|
]
|
|
@@ -55166,13 +55586,13 @@
|
|
|
55166
55586
|
{
|
|
55167
55587
|
"type": "object",
|
|
55168
55588
|
"additionalProperties": {
|
|
55169
|
-
"$ref": "$.operator.methods[
|
|
55589
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.items.items.properties.payload"
|
|
55170
55590
|
}
|
|
55171
55591
|
},
|
|
55172
55592
|
{
|
|
55173
55593
|
"type": "array",
|
|
55174
55594
|
"items": {
|
|
55175
|
-
"$ref": "$.operator.methods[
|
|
55595
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.items.items.properties.payload"
|
|
55176
55596
|
}
|
|
55177
55597
|
}
|
|
55178
55598
|
]
|
|
@@ -55196,13 +55616,13 @@
|
|
|
55196
55616
|
{
|
|
55197
55617
|
"type": "object",
|
|
55198
55618
|
"additionalProperties": {
|
|
55199
|
-
"$ref": "$.operator.methods[
|
|
55619
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
55200
55620
|
}
|
|
55201
55621
|
},
|
|
55202
55622
|
{
|
|
55203
55623
|
"type": "array",
|
|
55204
55624
|
"items": {
|
|
55205
|
-
"$ref": "$.operator.methods[
|
|
55625
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
55206
55626
|
}
|
|
55207
55627
|
}
|
|
55208
55628
|
]
|
|
@@ -55769,12 +56189,12 @@
|
|
|
55769
56189
|
"type": "null"
|
|
55770
56190
|
},
|
|
55771
56191
|
{
|
|
55772
|
-
"$ref": "$.operator.methods[
|
|
56192
|
+
"$ref": "$.operator.methods[220].outputSchema.properties.resourceLogs.items"
|
|
55773
56193
|
},
|
|
55774
56194
|
{
|
|
55775
56195
|
"type": "array",
|
|
55776
56196
|
"items": {
|
|
55777
|
-
"$ref": "$.operator.methods[
|
|
56197
|
+
"$ref": "$.operator.methods[220].outputSchema.properties.resourceLogs.items.additionalProperties"
|
|
55778
56198
|
}
|
|
55779
56199
|
}
|
|
55780
56200
|
]
|
|
@@ -55889,12 +56309,12 @@
|
|
|
55889
56309
|
"type": "null"
|
|
55890
56310
|
},
|
|
55891
56311
|
{
|
|
55892
|
-
"$ref": "$.operator.methods[
|
|
56312
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.resourceMetrics.items"
|
|
55893
56313
|
},
|
|
55894
56314
|
{
|
|
55895
56315
|
"type": "array",
|
|
55896
56316
|
"items": {
|
|
55897
|
-
"$ref": "$.operator.methods[
|
|
56317
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.resourceMetrics.items.additionalProperties"
|
|
55898
56318
|
}
|
|
55899
56319
|
}
|
|
55900
56320
|
]
|
|
@@ -56009,12 +56429,12 @@
|
|
|
56009
56429
|
"type": "null"
|
|
56010
56430
|
},
|
|
56011
56431
|
{
|
|
56012
|
-
"$ref": "$.operator.methods[
|
|
56432
|
+
"$ref": "$.operator.methods[222].outputSchema.properties.resourceSpans.items"
|
|
56013
56433
|
},
|
|
56014
56434
|
{
|
|
56015
56435
|
"type": "array",
|
|
56016
56436
|
"items": {
|
|
56017
|
-
"$ref": "$.operator.methods[
|
|
56437
|
+
"$ref": "$.operator.methods[222].outputSchema.properties.resourceSpans.items.additionalProperties"
|
|
56018
56438
|
}
|
|
56019
56439
|
}
|
|
56020
56440
|
]
|
|
@@ -56501,13 +56921,13 @@
|
|
|
56501
56921
|
{
|
|
56502
56922
|
"type": "object",
|
|
56503
56923
|
"additionalProperties": {
|
|
56504
|
-
"$ref": "$.operator.methods[
|
|
56924
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.events.properties.items.items.properties.payload"
|
|
56505
56925
|
}
|
|
56506
56926
|
},
|
|
56507
56927
|
{
|
|
56508
56928
|
"type": "array",
|
|
56509
56929
|
"items": {
|
|
56510
|
-
"$ref": "$.operator.methods[
|
|
56930
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.events.properties.items.items.properties.payload"
|
|
56511
56931
|
}
|
|
56512
56932
|
}
|
|
56513
56933
|
]
|
|
@@ -56531,13 +56951,13 @@
|
|
|
56531
56951
|
{
|
|
56532
56952
|
"type": "object",
|
|
56533
56953
|
"additionalProperties": {
|
|
56534
|
-
"$ref": "$.operator.methods[
|
|
56954
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.events.properties.items.items.properties.attributes.additionalProperties"
|
|
56535
56955
|
}
|
|
56536
56956
|
},
|
|
56537
56957
|
{
|
|
56538
56958
|
"type": "array",
|
|
56539
56959
|
"items": {
|
|
56540
|
-
"$ref": "$.operator.methods[
|
|
56960
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.events.properties.items.items.properties.attributes.additionalProperties"
|
|
56541
56961
|
}
|
|
56542
56962
|
}
|
|
56543
56963
|
]
|
|
@@ -56766,13 +57186,13 @@
|
|
|
56766
57186
|
{
|
|
56767
57187
|
"type": "object",
|
|
56768
57188
|
"additionalProperties": {
|
|
56769
|
-
"$ref": "$.operator.methods[
|
|
57189
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.errors.properties.items.items.properties.payload"
|
|
56770
57190
|
}
|
|
56771
57191
|
},
|
|
56772
57192
|
{
|
|
56773
57193
|
"type": "array",
|
|
56774
57194
|
"items": {
|
|
56775
|
-
"$ref": "$.operator.methods[
|
|
57195
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.errors.properties.items.items.properties.payload"
|
|
56776
57196
|
}
|
|
56777
57197
|
}
|
|
56778
57198
|
]
|
|
@@ -56796,13 +57216,13 @@
|
|
|
56796
57216
|
{
|
|
56797
57217
|
"type": "object",
|
|
56798
57218
|
"additionalProperties": {
|
|
56799
|
-
"$ref": "$.operator.methods[
|
|
57219
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.errors.properties.items.items.properties.attributes.additionalProperties"
|
|
56800
57220
|
}
|
|
56801
57221
|
},
|
|
56802
57222
|
{
|
|
56803
57223
|
"type": "array",
|
|
56804
57224
|
"items": {
|
|
56805
|
-
"$ref": "$.operator.methods[
|
|
57225
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.errors.properties.items.items.properties.attributes.additionalProperties"
|
|
56806
57226
|
}
|
|
56807
57227
|
}
|
|
56808
57228
|
]
|
|
@@ -57029,13 +57449,13 @@
|
|
|
57029
57449
|
{
|
|
57030
57450
|
"type": "object",
|
|
57031
57451
|
"additionalProperties": {
|
|
57032
|
-
"$ref": "$.operator.methods[
|
|
57452
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.spans.properties.items.items.properties.attributes.additionalProperties"
|
|
57033
57453
|
}
|
|
57034
57454
|
},
|
|
57035
57455
|
{
|
|
57036
57456
|
"type": "array",
|
|
57037
57457
|
"items": {
|
|
57038
|
-
"$ref": "$.operator.methods[
|
|
57458
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.spans.properties.items.items.properties.attributes.additionalProperties"
|
|
57039
57459
|
}
|
|
57040
57460
|
}
|
|
57041
57461
|
]
|
|
@@ -57071,13 +57491,13 @@
|
|
|
57071
57491
|
{
|
|
57072
57492
|
"type": "object",
|
|
57073
57493
|
"additionalProperties": {
|
|
57074
|
-
"$ref": "$.operator.methods[
|
|
57494
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.spans.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
57075
57495
|
}
|
|
57076
57496
|
},
|
|
57077
57497
|
{
|
|
57078
57498
|
"type": "array",
|
|
57079
57499
|
"items": {
|
|
57080
|
-
"$ref": "$.operator.methods[
|
|
57500
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.recent.properties.spans.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
57081
57501
|
}
|
|
57082
57502
|
}
|
|
57083
57503
|
]
|
|
@@ -57523,13 +57943,13 @@
|
|
|
57523
57943
|
{
|
|
57524
57944
|
"type": "object",
|
|
57525
57945
|
"additionalProperties": {
|
|
57526
|
-
"$ref": "$.operator.methods[
|
|
57946
|
+
"$ref": "$.operator.methods[225].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
57527
57947
|
}
|
|
57528
57948
|
},
|
|
57529
57949
|
{
|
|
57530
57950
|
"type": "array",
|
|
57531
57951
|
"items": {
|
|
57532
|
-
"$ref": "$.operator.methods[
|
|
57952
|
+
"$ref": "$.operator.methods[225].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
57533
57953
|
}
|
|
57534
57954
|
}
|
|
57535
57955
|
]
|
|
@@ -57565,13 +57985,13 @@
|
|
|
57565
57985
|
{
|
|
57566
57986
|
"type": "object",
|
|
57567
57987
|
"additionalProperties": {
|
|
57568
|
-
"$ref": "$.operator.methods[
|
|
57988
|
+
"$ref": "$.operator.methods[225].outputSchema.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
57569
57989
|
}
|
|
57570
57990
|
},
|
|
57571
57991
|
{
|
|
57572
57992
|
"type": "array",
|
|
57573
57993
|
"items": {
|
|
57574
|
-
"$ref": "$.operator.methods[
|
|
57994
|
+
"$ref": "$.operator.methods[225].outputSchema.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
57575
57995
|
}
|
|
57576
57996
|
}
|
|
57577
57997
|
]
|
|
@@ -57780,13 +58200,13 @@
|
|
|
57780
58200
|
{
|
|
57781
58201
|
"type": "object",
|
|
57782
58202
|
"additionalProperties": {
|
|
57783
|
-
"$ref": "$.operator.methods[
|
|
58203
|
+
"$ref": "$.operator.methods[227].inputSchema.properties.metadata.additionalProperties"
|
|
57784
58204
|
}
|
|
57785
58205
|
},
|
|
57786
58206
|
{
|
|
57787
58207
|
"type": "array",
|
|
57788
58208
|
"items": {
|
|
57789
|
-
"$ref": "$.operator.methods[
|
|
58209
|
+
"$ref": "$.operator.methods[227].inputSchema.properties.metadata.additionalProperties"
|
|
57790
58210
|
}
|
|
57791
58211
|
}
|
|
57792
58212
|
]
|
|
@@ -57838,13 +58258,13 @@
|
|
|
57838
58258
|
{
|
|
57839
58259
|
"type": "object",
|
|
57840
58260
|
"additionalProperties": {
|
|
57841
|
-
"$ref": "$.operator.methods[
|
|
58261
|
+
"$ref": "$.operator.methods[227].outputSchema.properties.metadata.additionalProperties"
|
|
57842
58262
|
}
|
|
57843
58263
|
},
|
|
57844
58264
|
{
|
|
57845
58265
|
"type": "array",
|
|
57846
58266
|
"items": {
|
|
57847
|
-
"$ref": "$.operator.methods[
|
|
58267
|
+
"$ref": "$.operator.methods[227].outputSchema.properties.metadata.additionalProperties"
|
|
57848
58268
|
}
|
|
57849
58269
|
}
|
|
57850
58270
|
]
|
|
@@ -57938,13 +58358,13 @@
|
|
|
57938
58358
|
{
|
|
57939
58359
|
"type": "object",
|
|
57940
58360
|
"additionalProperties": {
|
|
57941
|
-
"$ref": "$.operator.methods[
|
|
58361
|
+
"$ref": "$.operator.methods[228].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
57942
58362
|
}
|
|
57943
58363
|
},
|
|
57944
58364
|
{
|
|
57945
58365
|
"type": "array",
|
|
57946
58366
|
"items": {
|
|
57947
|
-
"$ref": "$.operator.methods[
|
|
58367
|
+
"$ref": "$.operator.methods[228].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
57948
58368
|
}
|
|
57949
58369
|
}
|
|
57950
58370
|
]
|
|
@@ -58040,13 +58460,13 @@
|
|
|
58040
58460
|
{
|
|
58041
58461
|
"type": "object",
|
|
58042
58462
|
"additionalProperties": {
|
|
58043
|
-
"$ref": "$.operator.methods[
|
|
58463
|
+
"$ref": "$.operator.methods[229].inputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
58044
58464
|
}
|
|
58045
58465
|
},
|
|
58046
58466
|
{
|
|
58047
58467
|
"type": "array",
|
|
58048
58468
|
"items": {
|
|
58049
|
-
"$ref": "$.operator.methods[
|
|
58469
|
+
"$ref": "$.operator.methods[229].inputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
58050
58470
|
}
|
|
58051
58471
|
}
|
|
58052
58472
|
]
|
|
@@ -58088,13 +58508,13 @@
|
|
|
58088
58508
|
{
|
|
58089
58509
|
"type": "object",
|
|
58090
58510
|
"additionalProperties": {
|
|
58091
|
-
"$ref": "$.operator.methods[
|
|
58511
|
+
"$ref": "$.operator.methods[229].inputSchema.properties.metadata.additionalProperties"
|
|
58092
58512
|
}
|
|
58093
58513
|
},
|
|
58094
58514
|
{
|
|
58095
58515
|
"type": "array",
|
|
58096
58516
|
"items": {
|
|
58097
|
-
"$ref": "$.operator.methods[
|
|
58517
|
+
"$ref": "$.operator.methods[229].inputSchema.properties.metadata.additionalProperties"
|
|
58098
58518
|
}
|
|
58099
58519
|
}
|
|
58100
58520
|
]
|
|
@@ -58161,13 +58581,13 @@
|
|
|
58161
58581
|
{
|
|
58162
58582
|
"type": "object",
|
|
58163
58583
|
"additionalProperties": {
|
|
58164
|
-
"$ref": "$.operator.methods[
|
|
58584
|
+
"$ref": "$.operator.methods[229].outputSchema.properties.metadata.additionalProperties"
|
|
58165
58585
|
}
|
|
58166
58586
|
},
|
|
58167
58587
|
{
|
|
58168
58588
|
"type": "array",
|
|
58169
58589
|
"items": {
|
|
58170
|
-
"$ref": "$.operator.methods[
|
|
58590
|
+
"$ref": "$.operator.methods[229].outputSchema.properties.metadata.additionalProperties"
|
|
58171
58591
|
}
|
|
58172
58592
|
}
|
|
58173
58593
|
]
|
|
@@ -58241,13 +58661,13 @@
|
|
|
58241
58661
|
{
|
|
58242
58662
|
"type": "object",
|
|
58243
58663
|
"additionalProperties": {
|
|
58244
|
-
"$ref": "$.operator.methods[
|
|
58664
|
+
"$ref": "$.operator.methods[230].inputSchema.properties.metadata.additionalProperties"
|
|
58245
58665
|
}
|
|
58246
58666
|
},
|
|
58247
58667
|
{
|
|
58248
58668
|
"type": "array",
|
|
58249
58669
|
"items": {
|
|
58250
|
-
"$ref": "$.operator.methods[
|
|
58670
|
+
"$ref": "$.operator.methods[230].inputSchema.properties.metadata.additionalProperties"
|
|
58251
58671
|
}
|
|
58252
58672
|
}
|
|
58253
58673
|
]
|
|
@@ -58305,13 +58725,13 @@
|
|
|
58305
58725
|
{
|
|
58306
58726
|
"type": "object",
|
|
58307
58727
|
"additionalProperties": {
|
|
58308
|
-
"$ref": "$.operator.methods[
|
|
58728
|
+
"$ref": "$.operator.methods[230].outputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
58309
58729
|
}
|
|
58310
58730
|
},
|
|
58311
58731
|
{
|
|
58312
58732
|
"type": "array",
|
|
58313
58733
|
"items": {
|
|
58314
|
-
"$ref": "$.operator.methods[
|
|
58734
|
+
"$ref": "$.operator.methods[230].outputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
58315
58735
|
}
|
|
58316
58736
|
}
|
|
58317
58737
|
]
|
|
@@ -58344,13 +58764,13 @@
|
|
|
58344
58764
|
{
|
|
58345
58765
|
"type": "object",
|
|
58346
58766
|
"additionalProperties": {
|
|
58347
|
-
"$ref": "$.operator.methods[
|
|
58767
|
+
"$ref": "$.operator.methods[230].outputSchema.properties.metadata.additionalProperties"
|
|
58348
58768
|
}
|
|
58349
58769
|
},
|
|
58350
58770
|
{
|
|
58351
58771
|
"type": "array",
|
|
58352
58772
|
"items": {
|
|
58353
|
-
"$ref": "$.operator.methods[
|
|
58773
|
+
"$ref": "$.operator.methods[230].outputSchema.properties.metadata.additionalProperties"
|
|
58354
58774
|
}
|
|
58355
58775
|
}
|
|
58356
58776
|
]
|
|
@@ -58423,13 +58843,13 @@
|
|
|
58423
58843
|
{
|
|
58424
58844
|
"type": "object",
|
|
58425
58845
|
"additionalProperties": {
|
|
58426
|
-
"$ref": "$.operator.methods[
|
|
58846
|
+
"$ref": "$.operator.methods[231].inputSchema.properties.metadata.additionalProperties"
|
|
58427
58847
|
}
|
|
58428
58848
|
},
|
|
58429
58849
|
{
|
|
58430
58850
|
"type": "array",
|
|
58431
58851
|
"items": {
|
|
58432
|
-
"$ref": "$.operator.methods[
|
|
58852
|
+
"$ref": "$.operator.methods[231].inputSchema.properties.metadata.additionalProperties"
|
|
58433
58853
|
}
|
|
58434
58854
|
}
|
|
58435
58855
|
]
|
|
@@ -58532,13 +58952,13 @@
|
|
|
58532
58952
|
{
|
|
58533
58953
|
"type": "object",
|
|
58534
58954
|
"additionalProperties": {
|
|
58535
|
-
"$ref": "$.operator.methods[
|
|
58955
|
+
"$ref": "$.operator.methods[232].outputSchema.properties.voices.items.properties.metadata.additionalProperties"
|
|
58536
58956
|
}
|
|
58537
58957
|
},
|
|
58538
58958
|
{
|
|
58539
58959
|
"type": "array",
|
|
58540
58960
|
"items": {
|
|
58541
|
-
"$ref": "$.operator.methods[
|
|
58961
|
+
"$ref": "$.operator.methods[232].outputSchema.properties.voices.items.properties.metadata.additionalProperties"
|
|
58542
58962
|
}
|
|
58543
58963
|
}
|
|
58544
58964
|
]
|
|
@@ -58622,13 +59042,13 @@
|
|
|
58622
59042
|
{
|
|
58623
59043
|
"type": "object",
|
|
58624
59044
|
"additionalProperties": {
|
|
58625
|
-
"$ref": "$.operator.methods[
|
|
59045
|
+
"$ref": "$.operator.methods[233].inputSchema.properties.metadata.additionalProperties"
|
|
58626
59046
|
}
|
|
58627
59047
|
},
|
|
58628
59048
|
{
|
|
58629
59049
|
"type": "array",
|
|
58630
59050
|
"items": {
|
|
58631
|
-
"$ref": "$.operator.methods[
|
|
59051
|
+
"$ref": "$.operator.methods[233].inputSchema.properties.metadata.additionalProperties"
|
|
58632
59052
|
}
|
|
58633
59053
|
}
|
|
58634
59054
|
]
|
|
@@ -58719,13 +59139,13 @@
|
|
|
58719
59139
|
{
|
|
58720
59140
|
"type": "object",
|
|
58721
59141
|
"additionalProperties": {
|
|
58722
|
-
"$ref": "$.operator.methods[
|
|
59142
|
+
"$ref": "$.operator.methods[233].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
58723
59143
|
}
|
|
58724
59144
|
},
|
|
58725
59145
|
{
|
|
58726
59146
|
"type": "array",
|
|
58727
59147
|
"items": {
|
|
58728
|
-
"$ref": "$.operator.methods[
|
|
59148
|
+
"$ref": "$.operator.methods[233].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
58729
59149
|
}
|
|
58730
59150
|
}
|
|
58731
59151
|
]
|
|
@@ -58783,13 +59203,13 @@
|
|
|
58783
59203
|
{
|
|
58784
59204
|
"type": "object",
|
|
58785
59205
|
"additionalProperties": {
|
|
58786
|
-
"$ref": "$.operator.methods[
|
|
59206
|
+
"$ref": "$.operator.methods[233].outputSchema.properties.metadata.additionalProperties"
|
|
58787
59207
|
}
|
|
58788
59208
|
},
|
|
58789
59209
|
{
|
|
58790
59210
|
"type": "array",
|
|
58791
59211
|
"items": {
|
|
58792
|
-
"$ref": "$.operator.methods[
|
|
59212
|
+
"$ref": "$.operator.methods[233].outputSchema.properties.metadata.additionalProperties"
|
|
58793
59213
|
}
|
|
58794
59214
|
}
|
|
58795
59215
|
]
|
|
@@ -58945,13 +59365,13 @@
|
|
|
58945
59365
|
{
|
|
58946
59366
|
"type": "object",
|
|
58947
59367
|
"additionalProperties": {
|
|
58948
|
-
"$ref": "$.operator.methods[
|
|
59368
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.watchers.items.properties.source.properties.metadata.additionalProperties"
|
|
58949
59369
|
}
|
|
58950
59370
|
},
|
|
58951
59371
|
{
|
|
58952
59372
|
"type": "array",
|
|
58953
59373
|
"items": {
|
|
58954
|
-
"$ref": "$.operator.methods[
|
|
59374
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.watchers.items.properties.source.properties.metadata.additionalProperties"
|
|
58955
59375
|
}
|
|
58956
59376
|
}
|
|
58957
59377
|
]
|
|
@@ -59009,13 +59429,13 @@
|
|
|
59009
59429
|
{
|
|
59010
59430
|
"type": "object",
|
|
59011
59431
|
"additionalProperties": {
|
|
59012
|
-
"$ref": "$.operator.methods[
|
|
59432
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.watchers.items.properties.metadata.additionalProperties"
|
|
59013
59433
|
}
|
|
59014
59434
|
},
|
|
59015
59435
|
{
|
|
59016
59436
|
"type": "array",
|
|
59017
59437
|
"items": {
|
|
59018
|
-
"$ref": "$.operator.methods[
|
|
59438
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.watchers.items.properties.metadata.additionalProperties"
|
|
59019
59439
|
}
|
|
59020
59440
|
}
|
|
59021
59441
|
]
|
|
@@ -59105,13 +59525,13 @@
|
|
|
59105
59525
|
{
|
|
59106
59526
|
"type": "object",
|
|
59107
59527
|
"additionalProperties": {
|
|
59108
|
-
"$ref": "$.operator.methods[
|
|
59528
|
+
"$ref": "$.operator.methods[236].inputSchema.properties.metadata.additionalProperties"
|
|
59109
59529
|
}
|
|
59110
59530
|
},
|
|
59111
59531
|
{
|
|
59112
59532
|
"type": "array",
|
|
59113
59533
|
"items": {
|
|
59114
|
-
"$ref": "$.operator.methods[
|
|
59534
|
+
"$ref": "$.operator.methods[236].inputSchema.properties.metadata.additionalProperties"
|
|
59115
59535
|
}
|
|
59116
59536
|
}
|
|
59117
59537
|
]
|
|
@@ -59199,13 +59619,13 @@
|
|
|
59199
59619
|
{
|
|
59200
59620
|
"type": "object",
|
|
59201
59621
|
"additionalProperties": {
|
|
59202
|
-
"$ref": "$.operator.methods[
|
|
59622
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
59203
59623
|
}
|
|
59204
59624
|
},
|
|
59205
59625
|
{
|
|
59206
59626
|
"type": "array",
|
|
59207
59627
|
"items": {
|
|
59208
|
-
"$ref": "$.operator.methods[
|
|
59628
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
59209
59629
|
}
|
|
59210
59630
|
}
|
|
59211
59631
|
]
|
|
@@ -59263,13 +59683,13 @@
|
|
|
59263
59683
|
{
|
|
59264
59684
|
"type": "object",
|
|
59265
59685
|
"additionalProperties": {
|
|
59266
|
-
"$ref": "$.operator.methods[
|
|
59686
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.metadata.additionalProperties"
|
|
59267
59687
|
}
|
|
59268
59688
|
},
|
|
59269
59689
|
{
|
|
59270
59690
|
"type": "array",
|
|
59271
59691
|
"items": {
|
|
59272
|
-
"$ref": "$.operator.methods[
|
|
59692
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.metadata.additionalProperties"
|
|
59273
59693
|
}
|
|
59274
59694
|
}
|
|
59275
59695
|
]
|
|
@@ -59376,13 +59796,13 @@
|
|
|
59376
59796
|
{
|
|
59377
59797
|
"type": "object",
|
|
59378
59798
|
"additionalProperties": {
|
|
59379
|
-
"$ref": "$.operator.methods[
|
|
59799
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
59380
59800
|
}
|
|
59381
59801
|
},
|
|
59382
59802
|
{
|
|
59383
59803
|
"type": "array",
|
|
59384
59804
|
"items": {
|
|
59385
|
-
"$ref": "$.operator.methods[
|
|
59805
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
59386
59806
|
}
|
|
59387
59807
|
}
|
|
59388
59808
|
]
|
|
@@ -59440,13 +59860,13 @@
|
|
|
59440
59860
|
{
|
|
59441
59861
|
"type": "object",
|
|
59442
59862
|
"additionalProperties": {
|
|
59443
|
-
"$ref": "$.operator.methods[
|
|
59863
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.metadata.additionalProperties"
|
|
59444
59864
|
}
|
|
59445
59865
|
},
|
|
59446
59866
|
{
|
|
59447
59867
|
"type": "array",
|
|
59448
59868
|
"items": {
|
|
59449
|
-
"$ref": "$.operator.methods[
|
|
59869
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.metadata.additionalProperties"
|
|
59450
59870
|
}
|
|
59451
59871
|
}
|
|
59452
59872
|
]
|
|
@@ -59553,13 +59973,13 @@
|
|
|
59553
59973
|
{
|
|
59554
59974
|
"type": "object",
|
|
59555
59975
|
"additionalProperties": {
|
|
59556
|
-
"$ref": "$.operator.methods[
|
|
59976
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
59557
59977
|
}
|
|
59558
59978
|
},
|
|
59559
59979
|
{
|
|
59560
59980
|
"type": "array",
|
|
59561
59981
|
"items": {
|
|
59562
|
-
"$ref": "$.operator.methods[
|
|
59982
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
59563
59983
|
}
|
|
59564
59984
|
}
|
|
59565
59985
|
]
|
|
@@ -59617,13 +60037,13 @@
|
|
|
59617
60037
|
{
|
|
59618
60038
|
"type": "object",
|
|
59619
60039
|
"additionalProperties": {
|
|
59620
|
-
"$ref": "$.operator.methods[
|
|
60040
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.metadata.additionalProperties"
|
|
59621
60041
|
}
|
|
59622
60042
|
},
|
|
59623
60043
|
{
|
|
59624
60044
|
"type": "array",
|
|
59625
60045
|
"items": {
|
|
59626
|
-
"$ref": "$.operator.methods[
|
|
60046
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.metadata.additionalProperties"
|
|
59627
60047
|
}
|
|
59628
60048
|
}
|
|
59629
60049
|
]
|
|
@@ -59730,13 +60150,13 @@
|
|
|
59730
60150
|
{
|
|
59731
60151
|
"type": "object",
|
|
59732
60152
|
"additionalProperties": {
|
|
59733
|
-
"$ref": "$.operator.methods[
|
|
60153
|
+
"$ref": "$.operator.methods[239].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
59734
60154
|
}
|
|
59735
60155
|
},
|
|
59736
60156
|
{
|
|
59737
60157
|
"type": "array",
|
|
59738
60158
|
"items": {
|
|
59739
|
-
"$ref": "$.operator.methods[
|
|
60159
|
+
"$ref": "$.operator.methods[239].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
59740
60160
|
}
|
|
59741
60161
|
}
|
|
59742
60162
|
]
|
|
@@ -59794,13 +60214,13 @@
|
|
|
59794
60214
|
{
|
|
59795
60215
|
"type": "object",
|
|
59796
60216
|
"additionalProperties": {
|
|
59797
|
-
"$ref": "$.operator.methods[
|
|
60217
|
+
"$ref": "$.operator.methods[239].outputSchema.properties.metadata.additionalProperties"
|
|
59798
60218
|
}
|
|
59799
60219
|
},
|
|
59800
60220
|
{
|
|
59801
60221
|
"type": "array",
|
|
59802
60222
|
"items": {
|
|
59803
|
-
"$ref": "$.operator.methods[
|
|
60223
|
+
"$ref": "$.operator.methods[239].outputSchema.properties.metadata.additionalProperties"
|
|
59804
60224
|
}
|
|
59805
60225
|
}
|
|
59806
60226
|
]
|
|
@@ -60013,13 +60433,13 @@
|
|
|
60013
60433
|
{
|
|
60014
60434
|
"type": "object",
|
|
60015
60435
|
"additionalProperties": {
|
|
60016
|
-
"$ref": "$.operator.methods[
|
|
60436
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.results.items.properties.metadata.additionalProperties"
|
|
60017
60437
|
}
|
|
60018
60438
|
},
|
|
60019
60439
|
{
|
|
60020
60440
|
"type": "array",
|
|
60021
60441
|
"items": {
|
|
60022
|
-
"$ref": "$.operator.methods[
|
|
60442
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.results.items.properties.metadata.additionalProperties"
|
|
60023
60443
|
}
|
|
60024
60444
|
}
|
|
60025
60445
|
]
|
|
@@ -60070,13 +60490,13 @@
|
|
|
60070
60490
|
{
|
|
60071
60491
|
"type": "object",
|
|
60072
60492
|
"additionalProperties": {
|
|
60073
|
-
"$ref": "$.operator.methods[
|
|
60493
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.results.items.properties.evidence.items.properties.metadata.additionalProperties"
|
|
60074
60494
|
}
|
|
60075
60495
|
},
|
|
60076
60496
|
{
|
|
60077
60497
|
"type": "array",
|
|
60078
60498
|
"items": {
|
|
60079
|
-
"$ref": "$.operator.methods[
|
|
60499
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.results.items.properties.evidence.items.properties.metadata.additionalProperties"
|
|
60080
60500
|
}
|
|
60081
60501
|
}
|
|
60082
60502
|
]
|
|
@@ -60166,13 +60586,13 @@
|
|
|
60166
60586
|
{
|
|
60167
60587
|
"type": "object",
|
|
60168
60588
|
"additionalProperties": {
|
|
60169
|
-
"$ref": "$.operator.methods[
|
|
60589
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.instantAnswer.properties.metadata.additionalProperties"
|
|
60170
60590
|
}
|
|
60171
60591
|
},
|
|
60172
60592
|
{
|
|
60173
60593
|
"type": "array",
|
|
60174
60594
|
"items": {
|
|
60175
|
-
"$ref": "$.operator.methods[
|
|
60595
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.instantAnswer.properties.metadata.additionalProperties"
|
|
60176
60596
|
}
|
|
60177
60597
|
}
|
|
60178
60598
|
]
|
|
@@ -60205,13 +60625,13 @@
|
|
|
60205
60625
|
{
|
|
60206
60626
|
"type": "object",
|
|
60207
60627
|
"additionalProperties": {
|
|
60208
|
-
"$ref": "$.operator.methods[
|
|
60628
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.metadata.additionalProperties"
|
|
60209
60629
|
}
|
|
60210
60630
|
},
|
|
60211
60631
|
{
|
|
60212
60632
|
"type": "array",
|
|
60213
60633
|
"items": {
|
|
60214
|
-
"$ref": "$.operator.methods[
|
|
60634
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.metadata.additionalProperties"
|
|
60215
60635
|
}
|
|
60216
60636
|
}
|
|
60217
60637
|
]
|
|
@@ -61931,10 +62351,10 @@
|
|
|
61931
62351
|
}
|
|
61932
62352
|
],
|
|
61933
62353
|
"schemaCoverage": {
|
|
61934
|
-
"methods":
|
|
61935
|
-
"typedInputs":
|
|
62354
|
+
"methods": 243,
|
|
62355
|
+
"typedInputs": 243,
|
|
61936
62356
|
"genericInputs": 0,
|
|
61937
|
-
"typedOutputs":
|
|
62357
|
+
"typedOutputs": 243,
|
|
61938
62358
|
"genericOutputs": 0
|
|
61939
62359
|
},
|
|
61940
62360
|
"eventCoverage": {
|