@pellux/goodvibes-tui 0.19.30 → 0.19.32
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 +24 -0
- package/README.md +12 -3
- package/docs/foundation-artifacts/operator-contract.json +778 -494
- package/package.json +2 -2
- package/src/audio/player.ts +156 -0
- package/src/audio/spoken-turn-controller.ts +200 -0
- package/src/audio/spoken-turn-wiring.ts +44 -0
- package/src/audio/text-chunker.ts +110 -0
- package/src/cli/management.ts +26 -3
- package/src/cli/provider-auth-routes.ts +22 -0
- package/src/input/command-registry.ts +5 -0
- package/src/input/commands/services-runtime.ts +1 -0
- package/src/input/commands/tts-runtime.ts +136 -0
- package/src/input/commands.ts +2 -0
- package/src/input/handler-onboarding.ts +12 -0
- package/src/input/onboarding/onboarding-wizard-steps.ts +25 -2
- package/src/input/onboarding/onboarding-wizard-types.ts +2 -0
- package/src/main.ts +19 -29
- package/src/panels/services-panel.ts +2 -0
- package/src/renderer/onboarding/onboarding-wizard.ts +38 -14
- package/src/renderer/ui-factory.ts +1 -1
- package/src/runtime/bootstrap-command-context.ts +6 -1
- package/src/runtime/bootstrap-command-parts.ts +6 -1
- package/src/runtime/bootstrap-shell.ts +2 -0
- package/src/runtime/onboarding/derivation.ts +1 -1
- package/src/runtime/onboarding/snapshot.ts +2 -0
- package/src/runtime/onboarding/types.ts +1 -0
- package/src/runtime/services.ts +1 -0
- package/src/version.ts +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.25.
|
|
6
|
+
"version": "0.25.8"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -21280,6 +21280,190 @@
|
|
|
21280
21280
|
},
|
|
21281
21281
|
"invokable": true
|
|
21282
21282
|
},
|
|
21283
|
+
{
|
|
21284
|
+
"id": "companion.chat.sessions.update",
|
|
21285
|
+
"title": "Update Companion Chat Session",
|
|
21286
|
+
"description": "Update companion-chat session metadata, including session-local `provider` and `model`, without changing the daemon/TUI current model.",
|
|
21287
|
+
"category": "companion",
|
|
21288
|
+
"source": "builtin",
|
|
21289
|
+
"access": "authenticated",
|
|
21290
|
+
"transport": [
|
|
21291
|
+
"http",
|
|
21292
|
+
"ws"
|
|
21293
|
+
],
|
|
21294
|
+
"scopes": [
|
|
21295
|
+
"write:sessions"
|
|
21296
|
+
],
|
|
21297
|
+
"http": {
|
|
21298
|
+
"method": "PATCH",
|
|
21299
|
+
"path": "/api/companion/chat/sessions/{sessionId}"
|
|
21300
|
+
},
|
|
21301
|
+
"inputSchema": {
|
|
21302
|
+
"type": "object",
|
|
21303
|
+
"properties": {
|
|
21304
|
+
"title": {
|
|
21305
|
+
"type": "string"
|
|
21306
|
+
},
|
|
21307
|
+
"model": {
|
|
21308
|
+
"type": "string"
|
|
21309
|
+
},
|
|
21310
|
+
"provider": {
|
|
21311
|
+
"type": "string"
|
|
21312
|
+
},
|
|
21313
|
+
"systemPrompt": {
|
|
21314
|
+
"type": "string"
|
|
21315
|
+
}
|
|
21316
|
+
},
|
|
21317
|
+
"additionalProperties": true
|
|
21318
|
+
},
|
|
21319
|
+
"outputSchema": {
|
|
21320
|
+
"type": "object",
|
|
21321
|
+
"properties": {
|
|
21322
|
+
"session": {
|
|
21323
|
+
"type": "object",
|
|
21324
|
+
"properties": {
|
|
21325
|
+
"id": {
|
|
21326
|
+
"type": "string"
|
|
21327
|
+
},
|
|
21328
|
+
"title": {
|
|
21329
|
+
"type": "string"
|
|
21330
|
+
},
|
|
21331
|
+
"status": {
|
|
21332
|
+
"type": "string",
|
|
21333
|
+
"enum": [
|
|
21334
|
+
"active",
|
|
21335
|
+
"closed"
|
|
21336
|
+
]
|
|
21337
|
+
},
|
|
21338
|
+
"createdAt": {
|
|
21339
|
+
"type": "number"
|
|
21340
|
+
},
|
|
21341
|
+
"updatedAt": {
|
|
21342
|
+
"type": "number"
|
|
21343
|
+
},
|
|
21344
|
+
"lastMessageAt": {
|
|
21345
|
+
"type": "number"
|
|
21346
|
+
},
|
|
21347
|
+
"closedAt": {
|
|
21348
|
+
"type": "number"
|
|
21349
|
+
},
|
|
21350
|
+
"messageCount": {
|
|
21351
|
+
"type": "number"
|
|
21352
|
+
},
|
|
21353
|
+
"pendingInputCount": {
|
|
21354
|
+
"type": "number"
|
|
21355
|
+
},
|
|
21356
|
+
"routeIds": {
|
|
21357
|
+
"type": "array",
|
|
21358
|
+
"items": {
|
|
21359
|
+
"type": "string"
|
|
21360
|
+
}
|
|
21361
|
+
},
|
|
21362
|
+
"surfaceKinds": {
|
|
21363
|
+
"type": "array",
|
|
21364
|
+
"items": {
|
|
21365
|
+
"type": "string"
|
|
21366
|
+
}
|
|
21367
|
+
},
|
|
21368
|
+
"participants": {
|
|
21369
|
+
"type": "array",
|
|
21370
|
+
"items": {
|
|
21371
|
+
"type": "object",
|
|
21372
|
+
"properties": {
|
|
21373
|
+
"surfaceKind": {
|
|
21374
|
+
"type": "string"
|
|
21375
|
+
},
|
|
21376
|
+
"surfaceId": {
|
|
21377
|
+
"type": "string"
|
|
21378
|
+
},
|
|
21379
|
+
"externalId": {
|
|
21380
|
+
"type": "string"
|
|
21381
|
+
},
|
|
21382
|
+
"userId": {
|
|
21383
|
+
"type": "string"
|
|
21384
|
+
},
|
|
21385
|
+
"displayName": {
|
|
21386
|
+
"type": "string"
|
|
21387
|
+
},
|
|
21388
|
+
"routeId": {
|
|
21389
|
+
"type": "string"
|
|
21390
|
+
},
|
|
21391
|
+
"lastSeenAt": {
|
|
21392
|
+
"type": "number"
|
|
21393
|
+
}
|
|
21394
|
+
},
|
|
21395
|
+
"required": [
|
|
21396
|
+
"surfaceKind",
|
|
21397
|
+
"surfaceId",
|
|
21398
|
+
"lastSeenAt"
|
|
21399
|
+
],
|
|
21400
|
+
"additionalProperties": false
|
|
21401
|
+
}
|
|
21402
|
+
},
|
|
21403
|
+
"activeAgentId": {
|
|
21404
|
+
"type": "string"
|
|
21405
|
+
},
|
|
21406
|
+
"lastAgentId": {
|
|
21407
|
+
"type": "string"
|
|
21408
|
+
},
|
|
21409
|
+
"lastError": {
|
|
21410
|
+
"type": "string"
|
|
21411
|
+
},
|
|
21412
|
+
"metadata": {
|
|
21413
|
+
"type": "object",
|
|
21414
|
+
"additionalProperties": {
|
|
21415
|
+
"anyOf": [
|
|
21416
|
+
{
|
|
21417
|
+
"type": "string"
|
|
21418
|
+
},
|
|
21419
|
+
{
|
|
21420
|
+
"type": "number"
|
|
21421
|
+
},
|
|
21422
|
+
{
|
|
21423
|
+
"type": "boolean"
|
|
21424
|
+
},
|
|
21425
|
+
{
|
|
21426
|
+
"type": "null"
|
|
21427
|
+
},
|
|
21428
|
+
{
|
|
21429
|
+
"type": "object",
|
|
21430
|
+
"additionalProperties": {
|
|
21431
|
+
"$ref": "$.operator.methods[73].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
21432
|
+
}
|
|
21433
|
+
},
|
|
21434
|
+
{
|
|
21435
|
+
"type": "array",
|
|
21436
|
+
"items": {
|
|
21437
|
+
"$ref": "$.operator.methods[73].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
21438
|
+
}
|
|
21439
|
+
}
|
|
21440
|
+
]
|
|
21441
|
+
}
|
|
21442
|
+
}
|
|
21443
|
+
},
|
|
21444
|
+
"required": [
|
|
21445
|
+
"id",
|
|
21446
|
+
"title",
|
|
21447
|
+
"status",
|
|
21448
|
+
"createdAt",
|
|
21449
|
+
"updatedAt",
|
|
21450
|
+
"messageCount",
|
|
21451
|
+
"pendingInputCount",
|
|
21452
|
+
"routeIds",
|
|
21453
|
+
"surfaceKinds",
|
|
21454
|
+
"participants",
|
|
21455
|
+
"metadata"
|
|
21456
|
+
],
|
|
21457
|
+
"additionalProperties": false
|
|
21458
|
+
}
|
|
21459
|
+
},
|
|
21460
|
+
"required": [
|
|
21461
|
+
"session"
|
|
21462
|
+
],
|
|
21463
|
+
"additionalProperties": false
|
|
21464
|
+
},
|
|
21465
|
+
"invokable": true
|
|
21466
|
+
},
|
|
21283
21467
|
{
|
|
21284
21468
|
"id": "config.get",
|
|
21285
21469
|
"title": "Get Config",
|
|
@@ -21325,13 +21509,13 @@
|
|
|
21325
21509
|
{
|
|
21326
21510
|
"type": "object",
|
|
21327
21511
|
"additionalProperties": {
|
|
21328
|
-
"$ref": "$.operator.methods[
|
|
21512
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.danger.additionalProperties"
|
|
21329
21513
|
}
|
|
21330
21514
|
},
|
|
21331
21515
|
{
|
|
21332
21516
|
"type": "array",
|
|
21333
21517
|
"items": {
|
|
21334
|
-
"$ref": "$.operator.methods[
|
|
21518
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.danger.additionalProperties"
|
|
21335
21519
|
}
|
|
21336
21520
|
}
|
|
21337
21521
|
]
|
|
@@ -21356,13 +21540,13 @@
|
|
|
21356
21540
|
{
|
|
21357
21541
|
"type": "object",
|
|
21358
21542
|
"additionalProperties": {
|
|
21359
|
-
"$ref": "$.operator.methods[
|
|
21543
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.controlPlane.additionalProperties"
|
|
21360
21544
|
}
|
|
21361
21545
|
},
|
|
21362
21546
|
{
|
|
21363
21547
|
"type": "array",
|
|
21364
21548
|
"items": {
|
|
21365
|
-
"$ref": "$.operator.methods[
|
|
21549
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.controlPlane.additionalProperties"
|
|
21366
21550
|
}
|
|
21367
21551
|
}
|
|
21368
21552
|
]
|
|
@@ -21387,13 +21571,13 @@
|
|
|
21387
21571
|
{
|
|
21388
21572
|
"type": "object",
|
|
21389
21573
|
"additionalProperties": {
|
|
21390
|
-
"$ref": "$.operator.methods[
|
|
21574
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.web.additionalProperties"
|
|
21391
21575
|
}
|
|
21392
21576
|
},
|
|
21393
21577
|
{
|
|
21394
21578
|
"type": "array",
|
|
21395
21579
|
"items": {
|
|
21396
|
-
"$ref": "$.operator.methods[
|
|
21580
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.web.additionalProperties"
|
|
21397
21581
|
}
|
|
21398
21582
|
}
|
|
21399
21583
|
]
|
|
@@ -21418,13 +21602,13 @@
|
|
|
21418
21602
|
{
|
|
21419
21603
|
"type": "object",
|
|
21420
21604
|
"additionalProperties": {
|
|
21421
|
-
"$ref": "$.operator.methods[
|
|
21605
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.network.additionalProperties"
|
|
21422
21606
|
}
|
|
21423
21607
|
},
|
|
21424
21608
|
{
|
|
21425
21609
|
"type": "array",
|
|
21426
21610
|
"items": {
|
|
21427
|
-
"$ref": "$.operator.methods[
|
|
21611
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.network.additionalProperties"
|
|
21428
21612
|
}
|
|
21429
21613
|
}
|
|
21430
21614
|
]
|
|
@@ -21449,13 +21633,13 @@
|
|
|
21449
21633
|
{
|
|
21450
21634
|
"type": "object",
|
|
21451
21635
|
"additionalProperties": {
|
|
21452
|
-
"$ref": "$.operator.methods[
|
|
21636
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.service.additionalProperties"
|
|
21453
21637
|
}
|
|
21454
21638
|
},
|
|
21455
21639
|
{
|
|
21456
21640
|
"type": "array",
|
|
21457
21641
|
"items": {
|
|
21458
|
-
"$ref": "$.operator.methods[
|
|
21642
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.service.additionalProperties"
|
|
21459
21643
|
}
|
|
21460
21644
|
}
|
|
21461
21645
|
]
|
|
@@ -21480,13 +21664,13 @@
|
|
|
21480
21664
|
{
|
|
21481
21665
|
"type": "object",
|
|
21482
21666
|
"additionalProperties": {
|
|
21483
|
-
"$ref": "$.operator.methods[
|
|
21667
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.providers.additionalProperties"
|
|
21484
21668
|
}
|
|
21485
21669
|
},
|
|
21486
21670
|
{
|
|
21487
21671
|
"type": "array",
|
|
21488
21672
|
"items": {
|
|
21489
|
-
"$ref": "$.operator.methods[
|
|
21673
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.providers.additionalProperties"
|
|
21490
21674
|
}
|
|
21491
21675
|
}
|
|
21492
21676
|
]
|
|
@@ -21511,13 +21695,13 @@
|
|
|
21511
21695
|
{
|
|
21512
21696
|
"type": "object",
|
|
21513
21697
|
"additionalProperties": {
|
|
21514
|
-
"$ref": "$.operator.methods[
|
|
21698
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.ui.additionalProperties"
|
|
21515
21699
|
}
|
|
21516
21700
|
},
|
|
21517
21701
|
{
|
|
21518
21702
|
"type": "array",
|
|
21519
21703
|
"items": {
|
|
21520
|
-
"$ref": "$.operator.methods[
|
|
21704
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.ui.additionalProperties"
|
|
21521
21705
|
}
|
|
21522
21706
|
}
|
|
21523
21707
|
]
|
|
@@ -21542,13 +21726,13 @@
|
|
|
21542
21726
|
{
|
|
21543
21727
|
"type": "object",
|
|
21544
21728
|
"additionalProperties": {
|
|
21545
|
-
"$ref": "$.operator.methods[
|
|
21729
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.channels.additionalProperties"
|
|
21546
21730
|
}
|
|
21547
21731
|
},
|
|
21548
21732
|
{
|
|
21549
21733
|
"type": "array",
|
|
21550
21734
|
"items": {
|
|
21551
|
-
"$ref": "$.operator.methods[
|
|
21735
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.channels.additionalProperties"
|
|
21552
21736
|
}
|
|
21553
21737
|
}
|
|
21554
21738
|
]
|
|
@@ -21573,13 +21757,13 @@
|
|
|
21573
21757
|
{
|
|
21574
21758
|
"type": "object",
|
|
21575
21759
|
"additionalProperties": {
|
|
21576
|
-
"$ref": "$.operator.methods[
|
|
21760
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.watchers.additionalProperties"
|
|
21577
21761
|
}
|
|
21578
21762
|
},
|
|
21579
21763
|
{
|
|
21580
21764
|
"type": "array",
|
|
21581
21765
|
"items": {
|
|
21582
|
-
"$ref": "$.operator.methods[
|
|
21766
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.watchers.additionalProperties"
|
|
21583
21767
|
}
|
|
21584
21768
|
}
|
|
21585
21769
|
]
|
|
@@ -21604,13 +21788,13 @@
|
|
|
21604
21788
|
{
|
|
21605
21789
|
"type": "object",
|
|
21606
21790
|
"additionalProperties": {
|
|
21607
|
-
"$ref": "$.operator.methods[
|
|
21791
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.memory.additionalProperties"
|
|
21608
21792
|
}
|
|
21609
21793
|
},
|
|
21610
21794
|
{
|
|
21611
21795
|
"type": "array",
|
|
21612
21796
|
"items": {
|
|
21613
|
-
"$ref": "$.operator.methods[
|
|
21797
|
+
"$ref": "$.operator.methods[74].outputSchema.properties.memory.additionalProperties"
|
|
21614
21798
|
}
|
|
21615
21799
|
}
|
|
21616
21800
|
]
|
|
@@ -21677,13 +21861,13 @@
|
|
|
21677
21861
|
{
|
|
21678
21862
|
"type": "object",
|
|
21679
21863
|
"additionalProperties": {
|
|
21680
|
-
"$ref": "$.operator.methods[
|
|
21864
|
+
"$ref": "$.operator.methods[75].outputSchema.properties.value"
|
|
21681
21865
|
}
|
|
21682
21866
|
},
|
|
21683
21867
|
{
|
|
21684
21868
|
"type": "array",
|
|
21685
21869
|
"items": {
|
|
21686
|
-
"$ref": "$.operator.methods[
|
|
21870
|
+
"$ref": "$.operator.methods[75].outputSchema.properties.value"
|
|
21687
21871
|
}
|
|
21688
21872
|
}
|
|
21689
21873
|
]
|
|
@@ -22568,12 +22752,12 @@
|
|
|
22568
22752
|
"type": "null"
|
|
22569
22753
|
},
|
|
22570
22754
|
{
|
|
22571
|
-
"$ref": "$.operator.methods[
|
|
22755
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.methods.items.properties.inputSchema"
|
|
22572
22756
|
},
|
|
22573
22757
|
{
|
|
22574
22758
|
"type": "array",
|
|
22575
22759
|
"items": {
|
|
22576
|
-
"$ref": "$.operator.methods[
|
|
22760
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.methods.items.properties.inputSchema.additionalProperties"
|
|
22577
22761
|
}
|
|
22578
22762
|
}
|
|
22579
22763
|
]
|
|
@@ -22596,12 +22780,12 @@
|
|
|
22596
22780
|
"type": "null"
|
|
22597
22781
|
},
|
|
22598
22782
|
{
|
|
22599
|
-
"$ref": "$.operator.methods[
|
|
22783
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.methods.items.properties.outputSchema"
|
|
22600
22784
|
},
|
|
22601
22785
|
{
|
|
22602
22786
|
"type": "array",
|
|
22603
22787
|
"items": {
|
|
22604
|
-
"$ref": "$.operator.methods[
|
|
22788
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.methods.items.properties.outputSchema.additionalProperties"
|
|
22605
22789
|
}
|
|
22606
22790
|
}
|
|
22607
22791
|
]
|
|
@@ -22633,12 +22817,12 @@
|
|
|
22633
22817
|
"type": "null"
|
|
22634
22818
|
},
|
|
22635
22819
|
{
|
|
22636
|
-
"$ref": "$.operator.methods[
|
|
22820
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.methods.items.properties.metadata"
|
|
22637
22821
|
},
|
|
22638
22822
|
{
|
|
22639
22823
|
"type": "array",
|
|
22640
22824
|
"items": {
|
|
22641
|
-
"$ref": "$.operator.methods[
|
|
22825
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.methods.items.properties.metadata.additionalProperties"
|
|
22642
22826
|
}
|
|
22643
22827
|
}
|
|
22644
22828
|
]
|
|
@@ -22719,12 +22903,12 @@
|
|
|
22719
22903
|
"type": "null"
|
|
22720
22904
|
},
|
|
22721
22905
|
{
|
|
22722
|
-
"$ref": "$.operator.methods[
|
|
22906
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.events.items.properties.outputSchema"
|
|
22723
22907
|
},
|
|
22724
22908
|
{
|
|
22725
22909
|
"type": "array",
|
|
22726
22910
|
"items": {
|
|
22727
|
-
"$ref": "$.operator.methods[
|
|
22911
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.events.items.properties.outputSchema.additionalProperties"
|
|
22728
22912
|
}
|
|
22729
22913
|
}
|
|
22730
22914
|
]
|
|
@@ -22750,12 +22934,12 @@
|
|
|
22750
22934
|
"type": "null"
|
|
22751
22935
|
},
|
|
22752
22936
|
{
|
|
22753
|
-
"$ref": "$.operator.methods[
|
|
22937
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.events.items.properties.metadata"
|
|
22754
22938
|
},
|
|
22755
22939
|
{
|
|
22756
22940
|
"type": "array",
|
|
22757
22941
|
"items": {
|
|
22758
|
-
"$ref": "$.operator.methods[
|
|
22942
|
+
"$ref": "$.operator.methods[80].outputSchema.properties.contract.properties.operator.properties.events.items.properties.metadata.additionalProperties"
|
|
22759
22943
|
}
|
|
22760
22944
|
}
|
|
22761
22945
|
]
|
|
@@ -22968,12 +23152,12 @@
|
|
|
22968
23152
|
"type": "null"
|
|
22969
23153
|
},
|
|
22970
23154
|
{
|
|
22971
|
-
"$ref": "$.operator.methods[
|
|
23155
|
+
"$ref": "$.operator.methods[81].outputSchema.properties.events.items.properties.outputSchema"
|
|
22972
23156
|
},
|
|
22973
23157
|
{
|
|
22974
23158
|
"type": "array",
|
|
22975
23159
|
"items": {
|
|
22976
|
-
"$ref": "$.operator.methods[
|
|
23160
|
+
"$ref": "$.operator.methods[81].outputSchema.properties.events.items.properties.outputSchema.additionalProperties"
|
|
22977
23161
|
}
|
|
22978
23162
|
}
|
|
22979
23163
|
]
|
|
@@ -22999,12 +23183,12 @@
|
|
|
22999
23183
|
"type": "null"
|
|
23000
23184
|
},
|
|
23001
23185
|
{
|
|
23002
|
-
"$ref": "$.operator.methods[
|
|
23186
|
+
"$ref": "$.operator.methods[81].outputSchema.properties.events.items.properties.metadata"
|
|
23003
23187
|
},
|
|
23004
23188
|
{
|
|
23005
23189
|
"type": "array",
|
|
23006
23190
|
"items": {
|
|
23007
|
-
"$ref": "$.operator.methods[
|
|
23191
|
+
"$ref": "$.operator.methods[81].outputSchema.properties.events.items.properties.metadata.additionalProperties"
|
|
23008
23192
|
}
|
|
23009
23193
|
}
|
|
23010
23194
|
]
|
|
@@ -23215,13 +23399,13 @@
|
|
|
23215
23399
|
{
|
|
23216
23400
|
"type": "object",
|
|
23217
23401
|
"additionalProperties": {
|
|
23218
|
-
"$ref": "$.operator.methods[
|
|
23402
|
+
"$ref": "$.operator.methods[83].outputSchema.properties.messages.items.properties.attachments.items.properties.metadata.additionalProperties"
|
|
23219
23403
|
}
|
|
23220
23404
|
},
|
|
23221
23405
|
{
|
|
23222
23406
|
"type": "array",
|
|
23223
23407
|
"items": {
|
|
23224
|
-
"$ref": "$.operator.methods[
|
|
23408
|
+
"$ref": "$.operator.methods[83].outputSchema.properties.messages.items.properties.attachments.items.properties.metadata.additionalProperties"
|
|
23225
23409
|
}
|
|
23226
23410
|
}
|
|
23227
23411
|
]
|
|
@@ -23261,13 +23445,13 @@
|
|
|
23261
23445
|
{
|
|
23262
23446
|
"type": "object",
|
|
23263
23447
|
"additionalProperties": {
|
|
23264
|
-
"$ref": "$.operator.methods[
|
|
23448
|
+
"$ref": "$.operator.methods[83].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
23265
23449
|
}
|
|
23266
23450
|
},
|
|
23267
23451
|
{
|
|
23268
23452
|
"type": "array",
|
|
23269
23453
|
"items": {
|
|
23270
|
-
"$ref": "$.operator.methods[
|
|
23454
|
+
"$ref": "$.operator.methods[83].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
23271
23455
|
}
|
|
23272
23456
|
}
|
|
23273
23457
|
]
|
|
@@ -23397,12 +23581,12 @@
|
|
|
23397
23581
|
"type": "null"
|
|
23398
23582
|
},
|
|
23399
23583
|
{
|
|
23400
|
-
"$ref": "$.operator.methods[
|
|
23584
|
+
"$ref": "$.operator.methods[84].outputSchema.properties.method.properties.inputSchema"
|
|
23401
23585
|
},
|
|
23402
23586
|
{
|
|
23403
23587
|
"type": "array",
|
|
23404
23588
|
"items": {
|
|
23405
|
-
"$ref": "$.operator.methods[
|
|
23589
|
+
"$ref": "$.operator.methods[84].outputSchema.properties.method.properties.inputSchema.additionalProperties"
|
|
23406
23590
|
}
|
|
23407
23591
|
}
|
|
23408
23592
|
]
|
|
@@ -23425,12 +23609,12 @@
|
|
|
23425
23609
|
"type": "null"
|
|
23426
23610
|
},
|
|
23427
23611
|
{
|
|
23428
|
-
"$ref": "$.operator.methods[
|
|
23612
|
+
"$ref": "$.operator.methods[84].outputSchema.properties.method.properties.outputSchema"
|
|
23429
23613
|
},
|
|
23430
23614
|
{
|
|
23431
23615
|
"type": "array",
|
|
23432
23616
|
"items": {
|
|
23433
|
-
"$ref": "$.operator.methods[
|
|
23617
|
+
"$ref": "$.operator.methods[84].outputSchema.properties.method.properties.outputSchema.additionalProperties"
|
|
23434
23618
|
}
|
|
23435
23619
|
}
|
|
23436
23620
|
]
|
|
@@ -23462,12 +23646,12 @@
|
|
|
23462
23646
|
"type": "null"
|
|
23463
23647
|
},
|
|
23464
23648
|
{
|
|
23465
|
-
"$ref": "$.operator.methods[
|
|
23649
|
+
"$ref": "$.operator.methods[84].outputSchema.properties.method.properties.metadata"
|
|
23466
23650
|
},
|
|
23467
23651
|
{
|
|
23468
23652
|
"type": "array",
|
|
23469
23653
|
"items": {
|
|
23470
|
-
"$ref": "$.operator.methods[
|
|
23654
|
+
"$ref": "$.operator.methods[84].outputSchema.properties.method.properties.metadata.additionalProperties"
|
|
23471
23655
|
}
|
|
23472
23656
|
}
|
|
23473
23657
|
]
|
|
@@ -23601,12 +23785,12 @@
|
|
|
23601
23785
|
"type": "null"
|
|
23602
23786
|
},
|
|
23603
23787
|
{
|
|
23604
|
-
"$ref": "$.operator.methods[
|
|
23788
|
+
"$ref": "$.operator.methods[85].outputSchema.properties.methods.items.properties.inputSchema"
|
|
23605
23789
|
},
|
|
23606
23790
|
{
|
|
23607
23791
|
"type": "array",
|
|
23608
23792
|
"items": {
|
|
23609
|
-
"$ref": "$.operator.methods[
|
|
23793
|
+
"$ref": "$.operator.methods[85].outputSchema.properties.methods.items.properties.inputSchema.additionalProperties"
|
|
23610
23794
|
}
|
|
23611
23795
|
}
|
|
23612
23796
|
]
|
|
@@ -23629,12 +23813,12 @@
|
|
|
23629
23813
|
"type": "null"
|
|
23630
23814
|
},
|
|
23631
23815
|
{
|
|
23632
|
-
"$ref": "$.operator.methods[
|
|
23816
|
+
"$ref": "$.operator.methods[85].outputSchema.properties.methods.items.properties.outputSchema"
|
|
23633
23817
|
},
|
|
23634
23818
|
{
|
|
23635
23819
|
"type": "array",
|
|
23636
23820
|
"items": {
|
|
23637
|
-
"$ref": "$.operator.methods[
|
|
23821
|
+
"$ref": "$.operator.methods[85].outputSchema.properties.methods.items.properties.outputSchema.additionalProperties"
|
|
23638
23822
|
}
|
|
23639
23823
|
}
|
|
23640
23824
|
]
|
|
@@ -23666,12 +23850,12 @@
|
|
|
23666
23850
|
"type": "null"
|
|
23667
23851
|
},
|
|
23668
23852
|
{
|
|
23669
|
-
"$ref": "$.operator.methods[
|
|
23853
|
+
"$ref": "$.operator.methods[85].outputSchema.properties.methods.items.properties.metadata"
|
|
23670
23854
|
},
|
|
23671
23855
|
{
|
|
23672
23856
|
"type": "array",
|
|
23673
23857
|
"items": {
|
|
23674
|
-
"$ref": "$.operator.methods[
|
|
23858
|
+
"$ref": "$.operator.methods[85].outputSchema.properties.methods.items.properties.metadata.additionalProperties"
|
|
23675
23859
|
}
|
|
23676
23860
|
}
|
|
23677
23861
|
]
|
|
@@ -23940,13 +24124,13 @@
|
|
|
23940
24124
|
{
|
|
23941
24125
|
"type": "object",
|
|
23942
24126
|
"additionalProperties": {
|
|
23943
|
-
"$ref": "$.operator.methods[
|
|
24127
|
+
"$ref": "$.operator.methods[86].outputSchema.properties.messages.items.properties.attachments.items.properties.metadata.additionalProperties"
|
|
23944
24128
|
}
|
|
23945
24129
|
},
|
|
23946
24130
|
{
|
|
23947
24131
|
"type": "array",
|
|
23948
24132
|
"items": {
|
|
23949
|
-
"$ref": "$.operator.methods[
|
|
24133
|
+
"$ref": "$.operator.methods[86].outputSchema.properties.messages.items.properties.attachments.items.properties.metadata.additionalProperties"
|
|
23950
24134
|
}
|
|
23951
24135
|
}
|
|
23952
24136
|
]
|
|
@@ -23986,13 +24170,13 @@
|
|
|
23986
24170
|
{
|
|
23987
24171
|
"type": "object",
|
|
23988
24172
|
"additionalProperties": {
|
|
23989
|
-
"$ref": "$.operator.methods[
|
|
24173
|
+
"$ref": "$.operator.methods[86].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
23990
24174
|
}
|
|
23991
24175
|
},
|
|
23992
24176
|
{
|
|
23993
24177
|
"type": "array",
|
|
23994
24178
|
"items": {
|
|
23995
|
-
"$ref": "$.operator.methods[
|
|
24179
|
+
"$ref": "$.operator.methods[86].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
23996
24180
|
}
|
|
23997
24181
|
}
|
|
23998
24182
|
]
|
|
@@ -24040,13 +24224,13 @@
|
|
|
24040
24224
|
{
|
|
24041
24225
|
"type": "object",
|
|
24042
24226
|
"additionalProperties": {
|
|
24043
|
-
"$ref": "$.operator.methods[
|
|
24227
|
+
"$ref": "$.operator.methods[86].outputSchema.properties.recentEvents.items.properties.payload"
|
|
24044
24228
|
}
|
|
24045
24229
|
},
|
|
24046
24230
|
{
|
|
24047
24231
|
"type": "array",
|
|
24048
24232
|
"items": {
|
|
24049
|
-
"$ref": "$.operator.methods[
|
|
24233
|
+
"$ref": "$.operator.methods[86].outputSchema.properties.recentEvents.items.properties.payload"
|
|
24050
24234
|
}
|
|
24051
24235
|
}
|
|
24052
24236
|
]
|
|
@@ -24879,13 +25063,13 @@
|
|
|
24879
25063
|
{
|
|
24880
25064
|
"type": "object",
|
|
24881
25065
|
"additionalProperties": {
|
|
24882
|
-
"$ref": "$.operator.methods[
|
|
25066
|
+
"$ref": "$.operator.methods[93].inputSchema.properties.metadata.additionalProperties"
|
|
24883
25067
|
}
|
|
24884
25068
|
},
|
|
24885
25069
|
{
|
|
24886
25070
|
"type": "array",
|
|
24887
25071
|
"items": {
|
|
24888
|
-
"$ref": "$.operator.methods[
|
|
25072
|
+
"$ref": "$.operator.methods[93].inputSchema.properties.metadata.additionalProperties"
|
|
24889
25073
|
}
|
|
24890
25074
|
}
|
|
24891
25075
|
]
|
|
@@ -24964,13 +25148,13 @@
|
|
|
24964
25148
|
{
|
|
24965
25149
|
"type": "object",
|
|
24966
25150
|
"additionalProperties": {
|
|
24967
|
-
"$ref": "$.operator.methods[
|
|
25151
|
+
"$ref": "$.operator.methods[93].outputSchema.properties.candidate.properties.metadata.additionalProperties"
|
|
24968
25152
|
}
|
|
24969
25153
|
},
|
|
24970
25154
|
{
|
|
24971
25155
|
"type": "array",
|
|
24972
25156
|
"items": {
|
|
24973
|
-
"$ref": "$.operator.methods[
|
|
25157
|
+
"$ref": "$.operator.methods[93].outputSchema.properties.candidate.properties.metadata.additionalProperties"
|
|
24974
25158
|
}
|
|
24975
25159
|
}
|
|
24976
25160
|
]
|
|
@@ -25103,13 +25287,13 @@
|
|
|
25103
25287
|
{
|
|
25104
25288
|
"type": "object",
|
|
25105
25289
|
"additionalProperties": {
|
|
25106
|
-
"$ref": "$.operator.methods[
|
|
25290
|
+
"$ref": "$.operator.methods[94].outputSchema.properties.candidate.properties.metadata.additionalProperties"
|
|
25107
25291
|
}
|
|
25108
25292
|
},
|
|
25109
25293
|
{
|
|
25110
25294
|
"type": "array",
|
|
25111
25295
|
"items": {
|
|
25112
|
-
"$ref": "$.operator.methods[
|
|
25296
|
+
"$ref": "$.operator.methods[94].outputSchema.properties.candidate.properties.metadata.additionalProperties"
|
|
25113
25297
|
}
|
|
25114
25298
|
}
|
|
25115
25299
|
]
|
|
@@ -25250,13 +25434,13 @@
|
|
|
25250
25434
|
{
|
|
25251
25435
|
"type": "object",
|
|
25252
25436
|
"additionalProperties": {
|
|
25253
|
-
"$ref": "$.operator.methods[
|
|
25437
|
+
"$ref": "$.operator.methods[95].outputSchema.properties.candidates.items.properties.metadata.additionalProperties"
|
|
25254
25438
|
}
|
|
25255
25439
|
},
|
|
25256
25440
|
{
|
|
25257
25441
|
"type": "array",
|
|
25258
25442
|
"items": {
|
|
25259
|
-
"$ref": "$.operator.methods[
|
|
25443
|
+
"$ref": "$.operator.methods[95].outputSchema.properties.candidates.items.properties.metadata.additionalProperties"
|
|
25260
25444
|
}
|
|
25261
25445
|
}
|
|
25262
25446
|
]
|
|
@@ -25379,13 +25563,13 @@
|
|
|
25379
25563
|
{
|
|
25380
25564
|
"type": "object",
|
|
25381
25565
|
"additionalProperties": {
|
|
25382
|
-
"$ref": "$.operator.methods[
|
|
25566
|
+
"$ref": "$.operator.methods[96].outputSchema.properties.report.properties.checks.items.properties.metadata.additionalProperties"
|
|
25383
25567
|
}
|
|
25384
25568
|
},
|
|
25385
25569
|
{
|
|
25386
25570
|
"type": "array",
|
|
25387
25571
|
"items": {
|
|
25388
|
-
"$ref": "$.operator.methods[
|
|
25572
|
+
"$ref": "$.operator.methods[96].outputSchema.properties.report.properties.checks.items.properties.metadata.additionalProperties"
|
|
25389
25573
|
}
|
|
25390
25574
|
}
|
|
25391
25575
|
]
|
|
@@ -25426,13 +25610,13 @@
|
|
|
25426
25610
|
{
|
|
25427
25611
|
"type": "object",
|
|
25428
25612
|
"additionalProperties": {
|
|
25429
|
-
"$ref": "$.operator.methods[
|
|
25613
|
+
"$ref": "$.operator.methods[96].outputSchema.properties.report.properties.metadata.additionalProperties"
|
|
25430
25614
|
}
|
|
25431
25615
|
},
|
|
25432
25616
|
{
|
|
25433
25617
|
"type": "array",
|
|
25434
25618
|
"items": {
|
|
25435
|
-
"$ref": "$.operator.methods[
|
|
25619
|
+
"$ref": "$.operator.methods[96].outputSchema.properties.report.properties.metadata.additionalProperties"
|
|
25436
25620
|
}
|
|
25437
25621
|
}
|
|
25438
25622
|
]
|
|
@@ -25538,13 +25722,13 @@
|
|
|
25538
25722
|
{
|
|
25539
25723
|
"type": "object",
|
|
25540
25724
|
"additionalProperties": {
|
|
25541
|
-
"$ref": "$.operator.methods[
|
|
25725
|
+
"$ref": "$.operator.methods[97].outputSchema.properties.connector.properties.inputSchema.additionalProperties"
|
|
25542
25726
|
}
|
|
25543
25727
|
},
|
|
25544
25728
|
{
|
|
25545
25729
|
"type": "array",
|
|
25546
25730
|
"items": {
|
|
25547
|
-
"$ref": "$.operator.methods[
|
|
25731
|
+
"$ref": "$.operator.methods[97].outputSchema.properties.connector.properties.inputSchema.additionalProperties"
|
|
25548
25732
|
}
|
|
25549
25733
|
}
|
|
25550
25734
|
]
|
|
@@ -25569,11 +25753,11 @@
|
|
|
25569
25753
|
{
|
|
25570
25754
|
"type": "object",
|
|
25571
25755
|
"additionalProperties": {
|
|
25572
|
-
"$ref": "$.operator.methods[
|
|
25756
|
+
"$ref": "$.operator.methods[97].outputSchema.properties.connector.properties.examples.items"
|
|
25573
25757
|
}
|
|
25574
25758
|
},
|
|
25575
25759
|
{
|
|
25576
|
-
"$ref": "$.operator.methods[
|
|
25760
|
+
"$ref": "$.operator.methods[97].outputSchema.properties.connector.properties.examples"
|
|
25577
25761
|
}
|
|
25578
25762
|
]
|
|
25579
25763
|
}
|
|
@@ -25673,13 +25857,13 @@
|
|
|
25673
25857
|
{
|
|
25674
25858
|
"type": "object",
|
|
25675
25859
|
"additionalProperties": {
|
|
25676
|
-
"$ref": "$.operator.methods[
|
|
25860
|
+
"$ref": "$.operator.methods[97].outputSchema.properties.connector.properties.setup.properties.metadata.additionalProperties"
|
|
25677
25861
|
}
|
|
25678
25862
|
},
|
|
25679
25863
|
{
|
|
25680
25864
|
"type": "array",
|
|
25681
25865
|
"items": {
|
|
25682
|
-
"$ref": "$.operator.methods[
|
|
25866
|
+
"$ref": "$.operator.methods[97].outputSchema.properties.connector.properties.setup.properties.metadata.additionalProperties"
|
|
25683
25867
|
}
|
|
25684
25868
|
}
|
|
25685
25869
|
]
|
|
@@ -25711,13 +25895,13 @@
|
|
|
25711
25895
|
{
|
|
25712
25896
|
"type": "object",
|
|
25713
25897
|
"additionalProperties": {
|
|
25714
|
-
"$ref": "$.operator.methods[
|
|
25898
|
+
"$ref": "$.operator.methods[97].outputSchema.properties.connector.properties.metadata.additionalProperties"
|
|
25715
25899
|
}
|
|
25716
25900
|
},
|
|
25717
25901
|
{
|
|
25718
25902
|
"type": "array",
|
|
25719
25903
|
"items": {
|
|
25720
|
-
"$ref": "$.operator.methods[
|
|
25904
|
+
"$ref": "$.operator.methods[97].outputSchema.properties.connector.properties.metadata.additionalProperties"
|
|
25721
25905
|
}
|
|
25722
25906
|
}
|
|
25723
25907
|
]
|
|
@@ -25815,13 +25999,13 @@
|
|
|
25815
25999
|
{
|
|
25816
26000
|
"type": "object",
|
|
25817
26001
|
"additionalProperties": {
|
|
25818
|
-
"$ref": "$.operator.methods[
|
|
26002
|
+
"$ref": "$.operator.methods[98].outputSchema.properties.connectors.items.properties.inputSchema.additionalProperties"
|
|
25819
26003
|
}
|
|
25820
26004
|
},
|
|
25821
26005
|
{
|
|
25822
26006
|
"type": "array",
|
|
25823
26007
|
"items": {
|
|
25824
|
-
"$ref": "$.operator.methods[
|
|
26008
|
+
"$ref": "$.operator.methods[98].outputSchema.properties.connectors.items.properties.inputSchema.additionalProperties"
|
|
25825
26009
|
}
|
|
25826
26010
|
}
|
|
25827
26011
|
]
|
|
@@ -25846,11 +26030,11 @@
|
|
|
25846
26030
|
{
|
|
25847
26031
|
"type": "object",
|
|
25848
26032
|
"additionalProperties": {
|
|
25849
|
-
"$ref": "$.operator.methods[
|
|
26033
|
+
"$ref": "$.operator.methods[98].outputSchema.properties.connectors.items.properties.examples.items"
|
|
25850
26034
|
}
|
|
25851
26035
|
},
|
|
25852
26036
|
{
|
|
25853
|
-
"$ref": "$.operator.methods[
|
|
26037
|
+
"$ref": "$.operator.methods[98].outputSchema.properties.connectors.items.properties.examples"
|
|
25854
26038
|
}
|
|
25855
26039
|
]
|
|
25856
26040
|
}
|
|
@@ -25950,13 +26134,13 @@
|
|
|
25950
26134
|
{
|
|
25951
26135
|
"type": "object",
|
|
25952
26136
|
"additionalProperties": {
|
|
25953
|
-
"$ref": "$.operator.methods[
|
|
26137
|
+
"$ref": "$.operator.methods[98].outputSchema.properties.connectors.items.properties.setup.properties.metadata.additionalProperties"
|
|
25954
26138
|
}
|
|
25955
26139
|
},
|
|
25956
26140
|
{
|
|
25957
26141
|
"type": "array",
|
|
25958
26142
|
"items": {
|
|
25959
|
-
"$ref": "$.operator.methods[
|
|
26143
|
+
"$ref": "$.operator.methods[98].outputSchema.properties.connectors.items.properties.setup.properties.metadata.additionalProperties"
|
|
25960
26144
|
}
|
|
25961
26145
|
}
|
|
25962
26146
|
]
|
|
@@ -25988,13 +26172,13 @@
|
|
|
25988
26172
|
{
|
|
25989
26173
|
"type": "object",
|
|
25990
26174
|
"additionalProperties": {
|
|
25991
|
-
"$ref": "$.operator.methods[
|
|
26175
|
+
"$ref": "$.operator.methods[98].outputSchema.properties.connectors.items.properties.metadata.additionalProperties"
|
|
25992
26176
|
}
|
|
25993
26177
|
},
|
|
25994
26178
|
{
|
|
25995
26179
|
"type": "array",
|
|
25996
26180
|
"items": {
|
|
25997
|
-
"$ref": "$.operator.methods[
|
|
26181
|
+
"$ref": "$.operator.methods[98].outputSchema.properties.connectors.items.properties.metadata.additionalProperties"
|
|
25998
26182
|
}
|
|
25999
26183
|
}
|
|
26000
26184
|
]
|
|
@@ -26111,13 +26295,13 @@
|
|
|
26111
26295
|
{
|
|
26112
26296
|
"type": "object",
|
|
26113
26297
|
"additionalProperties": {
|
|
26114
|
-
"$ref": "$.operator.methods[
|
|
26298
|
+
"$ref": "$.operator.methods[99].outputSchema.properties.extraction.properties.structure.additionalProperties"
|
|
26115
26299
|
}
|
|
26116
26300
|
},
|
|
26117
26301
|
{
|
|
26118
26302
|
"type": "array",
|
|
26119
26303
|
"items": {
|
|
26120
|
-
"$ref": "$.operator.methods[
|
|
26304
|
+
"$ref": "$.operator.methods[99].outputSchema.properties.extraction.properties.structure.additionalProperties"
|
|
26121
26305
|
}
|
|
26122
26306
|
}
|
|
26123
26307
|
]
|
|
@@ -26142,13 +26326,13 @@
|
|
|
26142
26326
|
{
|
|
26143
26327
|
"type": "object",
|
|
26144
26328
|
"additionalProperties": {
|
|
26145
|
-
"$ref": "$.operator.methods[
|
|
26329
|
+
"$ref": "$.operator.methods[99].outputSchema.properties.extraction.properties.metadata.additionalProperties"
|
|
26146
26330
|
}
|
|
26147
26331
|
},
|
|
26148
26332
|
{
|
|
26149
26333
|
"type": "array",
|
|
26150
26334
|
"items": {
|
|
26151
|
-
"$ref": "$.operator.methods[
|
|
26335
|
+
"$ref": "$.operator.methods[99].outputSchema.properties.extraction.properties.metadata.additionalProperties"
|
|
26152
26336
|
}
|
|
26153
26337
|
}
|
|
26154
26338
|
]
|
|
@@ -26280,13 +26464,13 @@
|
|
|
26280
26464
|
{
|
|
26281
26465
|
"type": "object",
|
|
26282
26466
|
"additionalProperties": {
|
|
26283
|
-
"$ref": "$.operator.methods[
|
|
26467
|
+
"$ref": "$.operator.methods[100].outputSchema.properties.extractions.items.properties.structure.additionalProperties"
|
|
26284
26468
|
}
|
|
26285
26469
|
},
|
|
26286
26470
|
{
|
|
26287
26471
|
"type": "array",
|
|
26288
26472
|
"items": {
|
|
26289
|
-
"$ref": "$.operator.methods[
|
|
26473
|
+
"$ref": "$.operator.methods[100].outputSchema.properties.extractions.items.properties.structure.additionalProperties"
|
|
26290
26474
|
}
|
|
26291
26475
|
}
|
|
26292
26476
|
]
|
|
@@ -26311,13 +26495,13 @@
|
|
|
26311
26495
|
{
|
|
26312
26496
|
"type": "object",
|
|
26313
26497
|
"additionalProperties": {
|
|
26314
|
-
"$ref": "$.operator.methods[
|
|
26498
|
+
"$ref": "$.operator.methods[100].outputSchema.properties.extractions.items.properties.metadata.additionalProperties"
|
|
26315
26499
|
}
|
|
26316
26500
|
},
|
|
26317
26501
|
{
|
|
26318
26502
|
"type": "array",
|
|
26319
26503
|
"items": {
|
|
26320
|
-
"$ref": "$.operator.methods[
|
|
26504
|
+
"$ref": "$.operator.methods[100].outputSchema.properties.extractions.items.properties.metadata.additionalProperties"
|
|
26321
26505
|
}
|
|
26322
26506
|
}
|
|
26323
26507
|
]
|
|
@@ -26400,13 +26584,13 @@
|
|
|
26400
26584
|
{
|
|
26401
26585
|
"type": "object",
|
|
26402
26586
|
"additionalProperties": {
|
|
26403
|
-
"$ref": "$.operator.methods[
|
|
26587
|
+
"$ref": "$.operator.methods[101].inputSchema.properties.variables.additionalProperties"
|
|
26404
26588
|
}
|
|
26405
26589
|
},
|
|
26406
26590
|
{
|
|
26407
26591
|
"type": "array",
|
|
26408
26592
|
"items": {
|
|
26409
|
-
"$ref": "$.operator.methods[
|
|
26593
|
+
"$ref": "$.operator.methods[101].inputSchema.properties.variables.additionalProperties"
|
|
26410
26594
|
}
|
|
26411
26595
|
}
|
|
26412
26596
|
]
|
|
@@ -26440,13 +26624,13 @@
|
|
|
26440
26624
|
{
|
|
26441
26625
|
"type": "object",
|
|
26442
26626
|
"additionalProperties": {
|
|
26443
|
-
"$ref": "$.operator.methods[
|
|
26627
|
+
"$ref": "$.operator.methods[101].outputSchema.properties.data.additionalProperties"
|
|
26444
26628
|
}
|
|
26445
26629
|
},
|
|
26446
26630
|
{
|
|
26447
26631
|
"type": "array",
|
|
26448
26632
|
"items": {
|
|
26449
|
-
"$ref": "$.operator.methods[
|
|
26633
|
+
"$ref": "$.operator.methods[101].outputSchema.properties.data.additionalProperties"
|
|
26450
26634
|
}
|
|
26451
26635
|
}
|
|
26452
26636
|
]
|
|
@@ -26471,11 +26655,11 @@
|
|
|
26471
26655
|
{
|
|
26472
26656
|
"type": "object",
|
|
26473
26657
|
"additionalProperties": {
|
|
26474
|
-
"$ref": "$.operator.methods[
|
|
26658
|
+
"$ref": "$.operator.methods[101].outputSchema.properties.errors.items"
|
|
26475
26659
|
}
|
|
26476
26660
|
},
|
|
26477
26661
|
{
|
|
26478
|
-
"$ref": "$.operator.methods[
|
|
26662
|
+
"$ref": "$.operator.methods[101].outputSchema.properties.errors"
|
|
26479
26663
|
}
|
|
26480
26664
|
]
|
|
26481
26665
|
}
|
|
@@ -26499,13 +26683,13 @@
|
|
|
26499
26683
|
{
|
|
26500
26684
|
"type": "object",
|
|
26501
26685
|
"additionalProperties": {
|
|
26502
|
-
"$ref": "$.operator.methods[
|
|
26686
|
+
"$ref": "$.operator.methods[101].outputSchema.properties.extensions.additionalProperties"
|
|
26503
26687
|
}
|
|
26504
26688
|
},
|
|
26505
26689
|
{
|
|
26506
26690
|
"type": "array",
|
|
26507
26691
|
"items": {
|
|
26508
|
-
"$ref": "$.operator.methods[
|
|
26692
|
+
"$ref": "$.operator.methods[101].outputSchema.properties.extensions.additionalProperties"
|
|
26509
26693
|
}
|
|
26510
26694
|
}
|
|
26511
26695
|
]
|
|
@@ -26645,13 +26829,13 @@
|
|
|
26645
26829
|
{
|
|
26646
26830
|
"type": "object",
|
|
26647
26831
|
"additionalProperties": {
|
|
26648
|
-
"$ref": "$.operator.methods[
|
|
26832
|
+
"$ref": "$.operator.methods[103].inputSchema.properties.metadata.additionalProperties"
|
|
26649
26833
|
}
|
|
26650
26834
|
},
|
|
26651
26835
|
{
|
|
26652
26836
|
"type": "array",
|
|
26653
26837
|
"items": {
|
|
26654
|
-
"$ref": "$.operator.methods[
|
|
26838
|
+
"$ref": "$.operator.methods[103].inputSchema.properties.metadata.additionalProperties"
|
|
26655
26839
|
}
|
|
26656
26840
|
}
|
|
26657
26841
|
]
|
|
@@ -26747,13 +26931,13 @@
|
|
|
26747
26931
|
{
|
|
26748
26932
|
"type": "object",
|
|
26749
26933
|
"additionalProperties": {
|
|
26750
|
-
"$ref": "$.operator.methods[
|
|
26934
|
+
"$ref": "$.operator.methods[103].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
26751
26935
|
}
|
|
26752
26936
|
},
|
|
26753
26937
|
{
|
|
26754
26938
|
"type": "array",
|
|
26755
26939
|
"items": {
|
|
26756
|
-
"$ref": "$.operator.methods[
|
|
26940
|
+
"$ref": "$.operator.methods[103].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
26757
26941
|
}
|
|
26758
26942
|
}
|
|
26759
26943
|
]
|
|
@@ -26826,13 +27010,13 @@
|
|
|
26826
27010
|
{
|
|
26827
27011
|
"type": "object",
|
|
26828
27012
|
"additionalProperties": {
|
|
26829
|
-
"$ref": "$.operator.methods[
|
|
27013
|
+
"$ref": "$.operator.methods[103].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
26830
27014
|
}
|
|
26831
27015
|
},
|
|
26832
27016
|
{
|
|
26833
27017
|
"type": "array",
|
|
26834
27018
|
"items": {
|
|
26835
|
-
"$ref": "$.operator.methods[
|
|
27019
|
+
"$ref": "$.operator.methods[103].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
26836
27020
|
}
|
|
26837
27021
|
}
|
|
26838
27022
|
]
|
|
@@ -26916,13 +27100,13 @@
|
|
|
26916
27100
|
{
|
|
26917
27101
|
"type": "object",
|
|
26918
27102
|
"additionalProperties": {
|
|
26919
|
-
"$ref": "$.operator.methods[
|
|
27103
|
+
"$ref": "$.operator.methods[104].inputSchema.properties.metadata.additionalProperties"
|
|
26920
27104
|
}
|
|
26921
27105
|
},
|
|
26922
27106
|
{
|
|
26923
27107
|
"type": "array",
|
|
26924
27108
|
"items": {
|
|
26925
|
-
"$ref": "$.operator.methods[
|
|
27109
|
+
"$ref": "$.operator.methods[104].inputSchema.properties.metadata.additionalProperties"
|
|
26926
27110
|
}
|
|
26927
27111
|
}
|
|
26928
27112
|
]
|
|
@@ -27029,13 +27213,13 @@
|
|
|
27029
27213
|
{
|
|
27030
27214
|
"type": "object",
|
|
27031
27215
|
"additionalProperties": {
|
|
27032
|
-
"$ref": "$.operator.methods[
|
|
27216
|
+
"$ref": "$.operator.methods[104].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
27033
27217
|
}
|
|
27034
27218
|
},
|
|
27035
27219
|
{
|
|
27036
27220
|
"type": "array",
|
|
27037
27221
|
"items": {
|
|
27038
|
-
"$ref": "$.operator.methods[
|
|
27222
|
+
"$ref": "$.operator.methods[104].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
27039
27223
|
}
|
|
27040
27224
|
}
|
|
27041
27225
|
]
|
|
@@ -27119,13 +27303,13 @@
|
|
|
27119
27303
|
{
|
|
27120
27304
|
"type": "object",
|
|
27121
27305
|
"additionalProperties": {
|
|
27122
|
-
"$ref": "$.operator.methods[
|
|
27306
|
+
"$ref": "$.operator.methods[105].inputSchema.properties.input"
|
|
27123
27307
|
}
|
|
27124
27308
|
},
|
|
27125
27309
|
{
|
|
27126
27310
|
"type": "array",
|
|
27127
27311
|
"items": {
|
|
27128
|
-
"$ref": "$.operator.methods[
|
|
27312
|
+
"$ref": "$.operator.methods[105].inputSchema.properties.input"
|
|
27129
27313
|
}
|
|
27130
27314
|
}
|
|
27131
27315
|
]
|
|
@@ -27260,13 +27444,13 @@
|
|
|
27260
27444
|
{
|
|
27261
27445
|
"type": "object",
|
|
27262
27446
|
"additionalProperties": {
|
|
27263
|
-
"$ref": "$.operator.methods[
|
|
27447
|
+
"$ref": "$.operator.methods[105].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
27264
27448
|
}
|
|
27265
27449
|
},
|
|
27266
27450
|
{
|
|
27267
27451
|
"type": "array",
|
|
27268
27452
|
"items": {
|
|
27269
|
-
"$ref": "$.operator.methods[
|
|
27453
|
+
"$ref": "$.operator.methods[105].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
27270
27454
|
}
|
|
27271
27455
|
}
|
|
27272
27456
|
]
|
|
@@ -27384,13 +27568,13 @@
|
|
|
27384
27568
|
{
|
|
27385
27569
|
"type": "object",
|
|
27386
27570
|
"additionalProperties": {
|
|
27387
|
-
"$ref": "$.operator.methods[
|
|
27571
|
+
"$ref": "$.operator.methods[106].inputSchema.properties.metadata.additionalProperties"
|
|
27388
27572
|
}
|
|
27389
27573
|
},
|
|
27390
27574
|
{
|
|
27391
27575
|
"type": "array",
|
|
27392
27576
|
"items": {
|
|
27393
|
-
"$ref": "$.operator.methods[
|
|
27577
|
+
"$ref": "$.operator.methods[106].inputSchema.properties.metadata.additionalProperties"
|
|
27394
27578
|
}
|
|
27395
27579
|
}
|
|
27396
27580
|
]
|
|
@@ -27489,13 +27673,13 @@
|
|
|
27489
27673
|
{
|
|
27490
27674
|
"type": "object",
|
|
27491
27675
|
"additionalProperties": {
|
|
27492
|
-
"$ref": "$.operator.methods[
|
|
27676
|
+
"$ref": "$.operator.methods[106].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
27493
27677
|
}
|
|
27494
27678
|
},
|
|
27495
27679
|
{
|
|
27496
27680
|
"type": "array",
|
|
27497
27681
|
"items": {
|
|
27498
|
-
"$ref": "$.operator.methods[
|
|
27682
|
+
"$ref": "$.operator.methods[106].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
27499
27683
|
}
|
|
27500
27684
|
}
|
|
27501
27685
|
]
|
|
@@ -27568,13 +27752,13 @@
|
|
|
27568
27752
|
{
|
|
27569
27753
|
"type": "object",
|
|
27570
27754
|
"additionalProperties": {
|
|
27571
|
-
"$ref": "$.operator.methods[
|
|
27755
|
+
"$ref": "$.operator.methods[106].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
27572
27756
|
}
|
|
27573
27757
|
},
|
|
27574
27758
|
{
|
|
27575
27759
|
"type": "array",
|
|
27576
27760
|
"items": {
|
|
27577
|
-
"$ref": "$.operator.methods[
|
|
27761
|
+
"$ref": "$.operator.methods[106].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
27578
27762
|
}
|
|
27579
27763
|
}
|
|
27580
27764
|
]
|
|
@@ -27658,13 +27842,13 @@
|
|
|
27658
27842
|
{
|
|
27659
27843
|
"type": "object",
|
|
27660
27844
|
"additionalProperties": {
|
|
27661
|
-
"$ref": "$.operator.methods[
|
|
27845
|
+
"$ref": "$.operator.methods[107].inputSchema.properties.metadata.additionalProperties"
|
|
27662
27846
|
}
|
|
27663
27847
|
},
|
|
27664
27848
|
{
|
|
27665
27849
|
"type": "array",
|
|
27666
27850
|
"items": {
|
|
27667
|
-
"$ref": "$.operator.methods[
|
|
27851
|
+
"$ref": "$.operator.methods[107].inputSchema.properties.metadata.additionalProperties"
|
|
27668
27852
|
}
|
|
27669
27853
|
}
|
|
27670
27854
|
]
|
|
@@ -27771,13 +27955,13 @@
|
|
|
27771
27955
|
{
|
|
27772
27956
|
"type": "object",
|
|
27773
27957
|
"additionalProperties": {
|
|
27774
|
-
"$ref": "$.operator.methods[
|
|
27958
|
+
"$ref": "$.operator.methods[107].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
27775
27959
|
}
|
|
27776
27960
|
},
|
|
27777
27961
|
{
|
|
27778
27962
|
"type": "array",
|
|
27779
27963
|
"items": {
|
|
27780
|
-
"$ref": "$.operator.methods[
|
|
27964
|
+
"$ref": "$.operator.methods[107].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
27781
27965
|
}
|
|
27782
27966
|
}
|
|
27783
27967
|
]
|
|
@@ -27895,13 +28079,13 @@
|
|
|
27895
28079
|
{
|
|
27896
28080
|
"type": "object",
|
|
27897
28081
|
"additionalProperties": {
|
|
27898
|
-
"$ref": "$.operator.methods[
|
|
28082
|
+
"$ref": "$.operator.methods[108].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
27899
28083
|
}
|
|
27900
28084
|
},
|
|
27901
28085
|
{
|
|
27902
28086
|
"type": "array",
|
|
27903
28087
|
"items": {
|
|
27904
|
-
"$ref": "$.operator.methods[
|
|
28088
|
+
"$ref": "$.operator.methods[108].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
27905
28089
|
}
|
|
27906
28090
|
}
|
|
27907
28091
|
]
|
|
@@ -28052,13 +28236,13 @@
|
|
|
28052
28236
|
{
|
|
28053
28237
|
"type": "object",
|
|
28054
28238
|
"additionalProperties": {
|
|
28055
|
-
"$ref": "$.operator.methods[
|
|
28239
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
28056
28240
|
}
|
|
28057
28241
|
},
|
|
28058
28242
|
{
|
|
28059
28243
|
"type": "array",
|
|
28060
28244
|
"items": {
|
|
28061
|
-
"$ref": "$.operator.methods[
|
|
28245
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
28062
28246
|
}
|
|
28063
28247
|
}
|
|
28064
28248
|
]
|
|
@@ -28135,13 +28319,13 @@
|
|
|
28135
28319
|
{
|
|
28136
28320
|
"type": "object",
|
|
28137
28321
|
"additionalProperties": {
|
|
28138
|
-
"$ref": "$.operator.methods[
|
|
28322
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.node.properties.metadata.additionalProperties"
|
|
28139
28323
|
}
|
|
28140
28324
|
},
|
|
28141
28325
|
{
|
|
28142
28326
|
"type": "array",
|
|
28143
28327
|
"items": {
|
|
28144
|
-
"$ref": "$.operator.methods[
|
|
28328
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.node.properties.metadata.additionalProperties"
|
|
28145
28329
|
}
|
|
28146
28330
|
}
|
|
28147
28331
|
]
|
|
@@ -28211,13 +28395,13 @@
|
|
|
28211
28395
|
{
|
|
28212
28396
|
"type": "object",
|
|
28213
28397
|
"additionalProperties": {
|
|
28214
|
-
"$ref": "$.operator.methods[
|
|
28398
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.issue.properties.metadata.additionalProperties"
|
|
28215
28399
|
}
|
|
28216
28400
|
},
|
|
28217
28401
|
{
|
|
28218
28402
|
"type": "array",
|
|
28219
28403
|
"items": {
|
|
28220
|
-
"$ref": "$.operator.methods[
|
|
28404
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.issue.properties.metadata.additionalProperties"
|
|
28221
28405
|
}
|
|
28222
28406
|
}
|
|
28223
28407
|
]
|
|
@@ -28287,13 +28471,13 @@
|
|
|
28287
28471
|
{
|
|
28288
28472
|
"type": "object",
|
|
28289
28473
|
"additionalProperties": {
|
|
28290
|
-
"$ref": "$.operator.methods[
|
|
28474
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.relatedEdges.items.properties.metadata.additionalProperties"
|
|
28291
28475
|
}
|
|
28292
28476
|
},
|
|
28293
28477
|
{
|
|
28294
28478
|
"type": "array",
|
|
28295
28479
|
"items": {
|
|
28296
|
-
"$ref": "$.operator.methods[
|
|
28480
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.relatedEdges.items.properties.metadata.additionalProperties"
|
|
28297
28481
|
}
|
|
28298
28482
|
}
|
|
28299
28483
|
]
|
|
@@ -28407,13 +28591,13 @@
|
|
|
28407
28591
|
{
|
|
28408
28592
|
"type": "object",
|
|
28409
28593
|
"additionalProperties": {
|
|
28410
|
-
"$ref": "$.operator.methods[
|
|
28594
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.linkedSources.items.properties.metadata.additionalProperties"
|
|
28411
28595
|
}
|
|
28412
28596
|
},
|
|
28413
28597
|
{
|
|
28414
28598
|
"type": "array",
|
|
28415
28599
|
"items": {
|
|
28416
|
-
"$ref": "$.operator.methods[
|
|
28600
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.linkedSources.items.properties.metadata.additionalProperties"
|
|
28417
28601
|
}
|
|
28418
28602
|
}
|
|
28419
28603
|
]
|
|
@@ -28493,13 +28677,13 @@
|
|
|
28493
28677
|
{
|
|
28494
28678
|
"type": "object",
|
|
28495
28679
|
"additionalProperties": {
|
|
28496
|
-
"$ref": "$.operator.methods[
|
|
28680
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.linkedNodes.items.properties.metadata.additionalProperties"
|
|
28497
28681
|
}
|
|
28498
28682
|
},
|
|
28499
28683
|
{
|
|
28500
28684
|
"type": "array",
|
|
28501
28685
|
"items": {
|
|
28502
|
-
"$ref": "$.operator.methods[
|
|
28686
|
+
"$ref": "$.operator.methods[109].outputSchema.properties.linkedNodes.items.properties.metadata.additionalProperties"
|
|
28503
28687
|
}
|
|
28504
28688
|
}
|
|
28505
28689
|
]
|
|
@@ -28719,13 +28903,13 @@
|
|
|
28719
28903
|
{
|
|
28720
28904
|
"type": "object",
|
|
28721
28905
|
"additionalProperties": {
|
|
28722
|
-
"$ref": "$.operator.methods[
|
|
28906
|
+
"$ref": "$.operator.methods[110].outputSchema.properties.runs.items.properties.metadata.additionalProperties"
|
|
28723
28907
|
}
|
|
28724
28908
|
},
|
|
28725
28909
|
{
|
|
28726
28910
|
"type": "array",
|
|
28727
28911
|
"items": {
|
|
28728
|
-
"$ref": "$.operator.methods[
|
|
28912
|
+
"$ref": "$.operator.methods[110].outputSchema.properties.runs.items.properties.metadata.additionalProperties"
|
|
28729
28913
|
}
|
|
28730
28914
|
}
|
|
28731
28915
|
]
|
|
@@ -28843,13 +29027,13 @@
|
|
|
28843
29027
|
{
|
|
28844
29028
|
"type": "object",
|
|
28845
29029
|
"additionalProperties": {
|
|
28846
|
-
"$ref": "$.operator.methods[
|
|
29030
|
+
"$ref": "$.operator.methods[111].outputSchema.properties.job.properties.metadata.additionalProperties"
|
|
28847
29031
|
}
|
|
28848
29032
|
},
|
|
28849
29033
|
{
|
|
28850
29034
|
"type": "array",
|
|
28851
29035
|
"items": {
|
|
28852
|
-
"$ref": "$.operator.methods[
|
|
29036
|
+
"$ref": "$.operator.methods[111].outputSchema.properties.job.properties.metadata.additionalProperties"
|
|
28853
29037
|
}
|
|
28854
29038
|
}
|
|
28855
29039
|
]
|
|
@@ -29072,13 +29256,13 @@
|
|
|
29072
29256
|
{
|
|
29073
29257
|
"type": "object",
|
|
29074
29258
|
"additionalProperties": {
|
|
29075
|
-
"$ref": "$.operator.methods[
|
|
29259
|
+
"$ref": "$.operator.methods[112].outputSchema.properties.run.properties.metadata.additionalProperties"
|
|
29076
29260
|
}
|
|
29077
29261
|
},
|
|
29078
29262
|
{
|
|
29079
29263
|
"type": "array",
|
|
29080
29264
|
"items": {
|
|
29081
|
-
"$ref": "$.operator.methods[
|
|
29265
|
+
"$ref": "$.operator.methods[112].outputSchema.properties.run.properties.metadata.additionalProperties"
|
|
29082
29266
|
}
|
|
29083
29267
|
}
|
|
29084
29268
|
]
|
|
@@ -29190,13 +29374,13 @@
|
|
|
29190
29374
|
{
|
|
29191
29375
|
"type": "object",
|
|
29192
29376
|
"additionalProperties": {
|
|
29193
|
-
"$ref": "$.operator.methods[
|
|
29377
|
+
"$ref": "$.operator.methods[113].outputSchema.properties.jobs.items.properties.metadata.additionalProperties"
|
|
29194
29378
|
}
|
|
29195
29379
|
},
|
|
29196
29380
|
{
|
|
29197
29381
|
"type": "array",
|
|
29198
29382
|
"items": {
|
|
29199
|
-
"$ref": "$.operator.methods[
|
|
29383
|
+
"$ref": "$.operator.methods[113].outputSchema.properties.jobs.items.properties.metadata.additionalProperties"
|
|
29200
29384
|
}
|
|
29201
29385
|
}
|
|
29202
29386
|
]
|
|
@@ -29293,13 +29477,13 @@
|
|
|
29293
29477
|
{
|
|
29294
29478
|
"type": "object",
|
|
29295
29479
|
"additionalProperties": {
|
|
29296
|
-
"$ref": "$.operator.methods[
|
|
29480
|
+
"$ref": "$.operator.methods[114].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
29297
29481
|
}
|
|
29298
29482
|
},
|
|
29299
29483
|
{
|
|
29300
29484
|
"type": "array",
|
|
29301
29485
|
"items": {
|
|
29302
|
-
"$ref": "$.operator.methods[
|
|
29486
|
+
"$ref": "$.operator.methods[114].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
29303
29487
|
}
|
|
29304
29488
|
}
|
|
29305
29489
|
]
|
|
@@ -29417,13 +29601,13 @@
|
|
|
29417
29601
|
{
|
|
29418
29602
|
"type": "object",
|
|
29419
29603
|
"additionalProperties": {
|
|
29420
|
-
"$ref": "$.operator.methods[
|
|
29604
|
+
"$ref": "$.operator.methods[115].outputSchema.properties.nodes.items.properties.metadata.additionalProperties"
|
|
29421
29605
|
}
|
|
29422
29606
|
},
|
|
29423
29607
|
{
|
|
29424
29608
|
"type": "array",
|
|
29425
29609
|
"items": {
|
|
29426
|
-
"$ref": "$.operator.methods[
|
|
29610
|
+
"$ref": "$.operator.methods[115].outputSchema.properties.nodes.items.properties.metadata.additionalProperties"
|
|
29427
29611
|
}
|
|
29428
29612
|
}
|
|
29429
29613
|
]
|
|
@@ -29598,13 +29782,13 @@
|
|
|
29598
29782
|
{
|
|
29599
29783
|
"type": "object",
|
|
29600
29784
|
"additionalProperties": {
|
|
29601
|
-
"$ref": "$.operator.methods[
|
|
29785
|
+
"$ref": "$.operator.methods[116].outputSchema.properties.items.items.properties.metadata.additionalProperties"
|
|
29602
29786
|
}
|
|
29603
29787
|
},
|
|
29604
29788
|
{
|
|
29605
29789
|
"type": "array",
|
|
29606
29790
|
"items": {
|
|
29607
|
-
"$ref": "$.operator.methods[
|
|
29791
|
+
"$ref": "$.operator.methods[116].outputSchema.properties.items.items.properties.metadata.additionalProperties"
|
|
29608
29792
|
}
|
|
29609
29793
|
}
|
|
29610
29794
|
]
|
|
@@ -29728,13 +29912,13 @@
|
|
|
29728
29912
|
{
|
|
29729
29913
|
"type": "object",
|
|
29730
29914
|
"additionalProperties": {
|
|
29731
|
-
"$ref": "$.operator.methods[
|
|
29915
|
+
"$ref": "$.operator.methods[117].outputSchema.properties.bundle.properties.target.properties.metadata.additionalProperties"
|
|
29732
29916
|
}
|
|
29733
29917
|
},
|
|
29734
29918
|
{
|
|
29735
29919
|
"type": "array",
|
|
29736
29920
|
"items": {
|
|
29737
|
-
"$ref": "$.operator.methods[
|
|
29921
|
+
"$ref": "$.operator.methods[117].outputSchema.properties.bundle.properties.target.properties.metadata.additionalProperties"
|
|
29738
29922
|
}
|
|
29739
29923
|
}
|
|
29740
29924
|
]
|
|
@@ -29800,13 +29984,13 @@
|
|
|
29800
29984
|
{
|
|
29801
29985
|
"type": "object",
|
|
29802
29986
|
"additionalProperties": {
|
|
29803
|
-
"$ref": "$.operator.methods[
|
|
29987
|
+
"$ref": "$.operator.methods[117].outputSchema.properties.bundle.properties.pages.items.properties.metadata.additionalProperties"
|
|
29804
29988
|
}
|
|
29805
29989
|
},
|
|
29806
29990
|
{
|
|
29807
29991
|
"type": "array",
|
|
29808
29992
|
"items": {
|
|
29809
|
-
"$ref": "$.operator.methods[
|
|
29993
|
+
"$ref": "$.operator.methods[117].outputSchema.properties.bundle.properties.pages.items.properties.metadata.additionalProperties"
|
|
29810
29994
|
}
|
|
29811
29995
|
}
|
|
29812
29996
|
]
|
|
@@ -29843,13 +30027,13 @@
|
|
|
29843
30027
|
{
|
|
29844
30028
|
"type": "object",
|
|
29845
30029
|
"additionalProperties": {
|
|
29846
|
-
"$ref": "$.operator.methods[
|
|
30030
|
+
"$ref": "$.operator.methods[117].outputSchema.properties.bundle.properties.metadata.additionalProperties"
|
|
29847
30031
|
}
|
|
29848
30032
|
},
|
|
29849
30033
|
{
|
|
29850
30034
|
"type": "array",
|
|
29851
30035
|
"items": {
|
|
29852
|
-
"$ref": "$.operator.methods[
|
|
30036
|
+
"$ref": "$.operator.methods[117].outputSchema.properties.bundle.properties.metadata.additionalProperties"
|
|
29853
30037
|
}
|
|
29854
30038
|
}
|
|
29855
30039
|
]
|
|
@@ -29921,13 +30105,13 @@
|
|
|
29921
30105
|
{
|
|
29922
30106
|
"type": "object",
|
|
29923
30107
|
"additionalProperties": {
|
|
29924
|
-
"$ref": "$.operator.methods[
|
|
30108
|
+
"$ref": "$.operator.methods[117].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
29925
30109
|
}
|
|
29926
30110
|
},
|
|
29927
30111
|
{
|
|
29928
30112
|
"type": "array",
|
|
29929
30113
|
"items": {
|
|
29930
|
-
"$ref": "$.operator.methods[
|
|
30114
|
+
"$ref": "$.operator.methods[117].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
29931
30115
|
}
|
|
29932
30116
|
}
|
|
29933
30117
|
]
|
|
@@ -30039,13 +30223,13 @@
|
|
|
30039
30223
|
{
|
|
30040
30224
|
"type": "object",
|
|
30041
30225
|
"additionalProperties": {
|
|
30042
|
-
"$ref": "$.operator.methods[
|
|
30226
|
+
"$ref": "$.operator.methods[118].outputSchema.properties.target.properties.metadata.additionalProperties"
|
|
30043
30227
|
}
|
|
30044
30228
|
},
|
|
30045
30229
|
{
|
|
30046
30230
|
"type": "array",
|
|
30047
30231
|
"items": {
|
|
30048
|
-
"$ref": "$.operator.methods[
|
|
30232
|
+
"$ref": "$.operator.methods[118].outputSchema.properties.target.properties.metadata.additionalProperties"
|
|
30049
30233
|
}
|
|
30050
30234
|
}
|
|
30051
30235
|
]
|
|
@@ -30111,13 +30295,13 @@
|
|
|
30111
30295
|
{
|
|
30112
30296
|
"type": "object",
|
|
30113
30297
|
"additionalProperties": {
|
|
30114
|
-
"$ref": "$.operator.methods[
|
|
30298
|
+
"$ref": "$.operator.methods[118].outputSchema.properties.pages.items.properties.metadata.additionalProperties"
|
|
30115
30299
|
}
|
|
30116
30300
|
},
|
|
30117
30301
|
{
|
|
30118
30302
|
"type": "array",
|
|
30119
30303
|
"items": {
|
|
30120
|
-
"$ref": "$.operator.methods[
|
|
30304
|
+
"$ref": "$.operator.methods[118].outputSchema.properties.pages.items.properties.metadata.additionalProperties"
|
|
30121
30305
|
}
|
|
30122
30306
|
}
|
|
30123
30307
|
]
|
|
@@ -30154,13 +30338,13 @@
|
|
|
30154
30338
|
{
|
|
30155
30339
|
"type": "object",
|
|
30156
30340
|
"additionalProperties": {
|
|
30157
|
-
"$ref": "$.operator.methods[
|
|
30341
|
+
"$ref": "$.operator.methods[118].outputSchema.properties.metadata.additionalProperties"
|
|
30158
30342
|
}
|
|
30159
30343
|
},
|
|
30160
30344
|
{
|
|
30161
30345
|
"type": "array",
|
|
30162
30346
|
"items": {
|
|
30163
|
-
"$ref": "$.operator.methods[
|
|
30347
|
+
"$ref": "$.operator.methods[118].outputSchema.properties.metadata.additionalProperties"
|
|
30164
30348
|
}
|
|
30165
30349
|
}
|
|
30166
30350
|
]
|
|
@@ -30254,13 +30438,13 @@
|
|
|
30254
30438
|
{
|
|
30255
30439
|
"type": "object",
|
|
30256
30440
|
"additionalProperties": {
|
|
30257
|
-
"$ref": "$.operator.methods[
|
|
30441
|
+
"$ref": "$.operator.methods[119].outputSchema.properties.targets.items.properties.metadata.additionalProperties"
|
|
30258
30442
|
}
|
|
30259
30443
|
},
|
|
30260
30444
|
{
|
|
30261
30445
|
"type": "array",
|
|
30262
30446
|
"items": {
|
|
30263
|
-
"$ref": "$.operator.methods[
|
|
30447
|
+
"$ref": "$.operator.methods[119].outputSchema.properties.targets.items.properties.metadata.additionalProperties"
|
|
30264
30448
|
}
|
|
30265
30449
|
}
|
|
30266
30450
|
]
|
|
@@ -30414,13 +30598,13 @@
|
|
|
30414
30598
|
{
|
|
30415
30599
|
"type": "object",
|
|
30416
30600
|
"additionalProperties": {
|
|
30417
|
-
"$ref": "$.operator.methods[
|
|
30601
|
+
"$ref": "$.operator.methods[120].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
30418
30602
|
}
|
|
30419
30603
|
},
|
|
30420
30604
|
{
|
|
30421
30605
|
"type": "array",
|
|
30422
30606
|
"items": {
|
|
30423
|
-
"$ref": "$.operator.methods[
|
|
30607
|
+
"$ref": "$.operator.methods[120].outputSchema.properties.issues.items.properties.metadata.additionalProperties"
|
|
30424
30608
|
}
|
|
30425
30609
|
}
|
|
30426
30610
|
]
|
|
@@ -30534,13 +30718,13 @@
|
|
|
30534
30718
|
{
|
|
30535
30719
|
"type": "object",
|
|
30536
30720
|
"additionalProperties": {
|
|
30537
|
-
"$ref": "$.operator.methods[
|
|
30721
|
+
"$ref": "$.operator.methods[121].outputSchema.properties.report.properties.metadata.additionalProperties"
|
|
30538
30722
|
}
|
|
30539
30723
|
},
|
|
30540
30724
|
{
|
|
30541
30725
|
"type": "array",
|
|
30542
30726
|
"items": {
|
|
30543
|
-
"$ref": "$.operator.methods[
|
|
30727
|
+
"$ref": "$.operator.methods[121].outputSchema.properties.report.properties.metadata.additionalProperties"
|
|
30544
30728
|
}
|
|
30545
30729
|
}
|
|
30546
30730
|
]
|
|
@@ -30652,13 +30836,13 @@
|
|
|
30652
30836
|
{
|
|
30653
30837
|
"type": "object",
|
|
30654
30838
|
"additionalProperties": {
|
|
30655
|
-
"$ref": "$.operator.methods[
|
|
30839
|
+
"$ref": "$.operator.methods[122].outputSchema.properties.reports.items.properties.metadata.additionalProperties"
|
|
30656
30840
|
}
|
|
30657
30841
|
},
|
|
30658
30842
|
{
|
|
30659
30843
|
"type": "array",
|
|
30660
30844
|
"items": {
|
|
30661
|
-
"$ref": "$.operator.methods[
|
|
30845
|
+
"$ref": "$.operator.methods[122].outputSchema.properties.reports.items.properties.metadata.additionalProperties"
|
|
30662
30846
|
}
|
|
30663
30847
|
}
|
|
30664
30848
|
]
|
|
@@ -30880,13 +31064,13 @@
|
|
|
30880
31064
|
{
|
|
30881
31065
|
"type": "object",
|
|
30882
31066
|
"additionalProperties": {
|
|
30883
|
-
"$ref": "$.operator.methods[
|
|
31067
|
+
"$ref": "$.operator.methods[124].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
30884
31068
|
}
|
|
30885
31069
|
},
|
|
30886
31070
|
{
|
|
30887
31071
|
"type": "array",
|
|
30888
31072
|
"items": {
|
|
30889
|
-
"$ref": "$.operator.methods[
|
|
31073
|
+
"$ref": "$.operator.methods[124].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
30890
31074
|
}
|
|
30891
31075
|
}
|
|
30892
31076
|
]
|
|
@@ -31062,13 +31246,13 @@
|
|
|
31062
31246
|
{
|
|
31063
31247
|
"type": "object",
|
|
31064
31248
|
"additionalProperties": {
|
|
31065
|
-
"$ref": "$.operator.methods[
|
|
31249
|
+
"$ref": "$.operator.methods[125].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
31066
31250
|
}
|
|
31067
31251
|
},
|
|
31068
31252
|
{
|
|
31069
31253
|
"type": "array",
|
|
31070
31254
|
"items": {
|
|
31071
|
-
"$ref": "$.operator.methods[
|
|
31255
|
+
"$ref": "$.operator.methods[125].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
31072
31256
|
}
|
|
31073
31257
|
}
|
|
31074
31258
|
]
|
|
@@ -31245,13 +31429,13 @@
|
|
|
31245
31429
|
{
|
|
31246
31430
|
"type": "object",
|
|
31247
31431
|
"additionalProperties": {
|
|
31248
|
-
"$ref": "$.operator.methods[
|
|
31432
|
+
"$ref": "$.operator.methods[126].inputSchema.properties.metadata.additionalProperties"
|
|
31249
31433
|
}
|
|
31250
31434
|
},
|
|
31251
31435
|
{
|
|
31252
31436
|
"type": "array",
|
|
31253
31437
|
"items": {
|
|
31254
|
-
"$ref": "$.operator.methods[
|
|
31438
|
+
"$ref": "$.operator.methods[126].inputSchema.properties.metadata.additionalProperties"
|
|
31255
31439
|
}
|
|
31256
31440
|
}
|
|
31257
31441
|
]
|
|
@@ -31377,13 +31561,13 @@
|
|
|
31377
31561
|
{
|
|
31378
31562
|
"type": "object",
|
|
31379
31563
|
"additionalProperties": {
|
|
31380
|
-
"$ref": "$.operator.methods[
|
|
31564
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
31381
31565
|
}
|
|
31382
31566
|
},
|
|
31383
31567
|
{
|
|
31384
31568
|
"type": "array",
|
|
31385
31569
|
"items": {
|
|
31386
|
-
"$ref": "$.operator.methods[
|
|
31570
|
+
"$ref": "$.operator.methods[126].outputSchema.properties.schedule.properties.metadata.additionalProperties"
|
|
31387
31571
|
}
|
|
31388
31572
|
}
|
|
31389
31573
|
]
|
|
@@ -31558,13 +31742,13 @@
|
|
|
31558
31742
|
{
|
|
31559
31743
|
"type": "object",
|
|
31560
31744
|
"additionalProperties": {
|
|
31561
|
-
"$ref": "$.operator.methods[
|
|
31745
|
+
"$ref": "$.operator.methods[127].outputSchema.properties.schedules.items.properties.metadata.additionalProperties"
|
|
31562
31746
|
}
|
|
31563
31747
|
},
|
|
31564
31748
|
{
|
|
31565
31749
|
"type": "array",
|
|
31566
31750
|
"items": {
|
|
31567
|
-
"$ref": "$.operator.methods[
|
|
31751
|
+
"$ref": "$.operator.methods[127].outputSchema.properties.schedules.items.properties.metadata.additionalProperties"
|
|
31568
31752
|
}
|
|
31569
31753
|
}
|
|
31570
31754
|
]
|
|
@@ -31650,13 +31834,13 @@
|
|
|
31650
31834
|
{
|
|
31651
31835
|
"type": "object",
|
|
31652
31836
|
"additionalProperties": {
|
|
31653
|
-
"$ref": "$.operator.methods[
|
|
31837
|
+
"$ref": "$.operator.methods[128].inputSchema.properties.metadata.additionalProperties"
|
|
31654
31838
|
}
|
|
31655
31839
|
},
|
|
31656
31840
|
{
|
|
31657
31841
|
"type": "array",
|
|
31658
31842
|
"items": {
|
|
31659
|
-
"$ref": "$.operator.methods[
|
|
31843
|
+
"$ref": "$.operator.methods[128].inputSchema.properties.metadata.additionalProperties"
|
|
31660
31844
|
}
|
|
31661
31845
|
}
|
|
31662
31846
|
]
|
|
@@ -31772,13 +31956,13 @@
|
|
|
31772
31956
|
{
|
|
31773
31957
|
"type": "object",
|
|
31774
31958
|
"additionalProperties": {
|
|
31775
|
-
"$ref": "$.operator.methods[
|
|
31959
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.results.items.properties.source.properties.metadata.additionalProperties"
|
|
31776
31960
|
}
|
|
31777
31961
|
},
|
|
31778
31962
|
{
|
|
31779
31963
|
"type": "array",
|
|
31780
31964
|
"items": {
|
|
31781
|
-
"$ref": "$.operator.methods[
|
|
31965
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.results.items.properties.source.properties.metadata.additionalProperties"
|
|
31782
31966
|
}
|
|
31783
31967
|
}
|
|
31784
31968
|
]
|
|
@@ -31855,13 +32039,13 @@
|
|
|
31855
32039
|
{
|
|
31856
32040
|
"type": "object",
|
|
31857
32041
|
"additionalProperties": {
|
|
31858
|
-
"$ref": "$.operator.methods[
|
|
32042
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.results.items.properties.node.properties.metadata.additionalProperties"
|
|
31859
32043
|
}
|
|
31860
32044
|
},
|
|
31861
32045
|
{
|
|
31862
32046
|
"type": "array",
|
|
31863
32047
|
"items": {
|
|
31864
|
-
"$ref": "$.operator.methods[
|
|
32048
|
+
"$ref": "$.operator.methods[128].outputSchema.properties.results.items.properties.node.properties.metadata.additionalProperties"
|
|
31865
32049
|
}
|
|
31866
32050
|
}
|
|
31867
32051
|
]
|
|
@@ -32000,13 +32184,13 @@
|
|
|
32000
32184
|
{
|
|
32001
32185
|
"type": "object",
|
|
32002
32186
|
"additionalProperties": {
|
|
32003
|
-
"$ref": "$.operator.methods[
|
|
32187
|
+
"$ref": "$.operator.methods[129].outputSchema.properties.extraction.properties.structure.additionalProperties"
|
|
32004
32188
|
}
|
|
32005
32189
|
},
|
|
32006
32190
|
{
|
|
32007
32191
|
"type": "array",
|
|
32008
32192
|
"items": {
|
|
32009
|
-
"$ref": "$.operator.methods[
|
|
32193
|
+
"$ref": "$.operator.methods[129].outputSchema.properties.extraction.properties.structure.additionalProperties"
|
|
32010
32194
|
}
|
|
32011
32195
|
}
|
|
32012
32196
|
]
|
|
@@ -32031,13 +32215,13 @@
|
|
|
32031
32215
|
{
|
|
32032
32216
|
"type": "object",
|
|
32033
32217
|
"additionalProperties": {
|
|
32034
|
-
"$ref": "$.operator.methods[
|
|
32218
|
+
"$ref": "$.operator.methods[129].outputSchema.properties.extraction.properties.metadata.additionalProperties"
|
|
32035
32219
|
}
|
|
32036
32220
|
},
|
|
32037
32221
|
{
|
|
32038
32222
|
"type": "array",
|
|
32039
32223
|
"items": {
|
|
32040
|
-
"$ref": "$.operator.methods[
|
|
32224
|
+
"$ref": "$.operator.methods[129].outputSchema.properties.extraction.properties.metadata.additionalProperties"
|
|
32041
32225
|
}
|
|
32042
32226
|
}
|
|
32043
32227
|
]
|
|
@@ -32189,13 +32373,13 @@
|
|
|
32189
32373
|
{
|
|
32190
32374
|
"type": "object",
|
|
32191
32375
|
"additionalProperties": {
|
|
32192
|
-
"$ref": "$.operator.methods[
|
|
32376
|
+
"$ref": "$.operator.methods[130].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
32193
32377
|
}
|
|
32194
32378
|
},
|
|
32195
32379
|
{
|
|
32196
32380
|
"type": "array",
|
|
32197
32381
|
"items": {
|
|
32198
|
-
"$ref": "$.operator.methods[
|
|
32382
|
+
"$ref": "$.operator.methods[130].outputSchema.properties.sources.items.properties.metadata.additionalProperties"
|
|
32199
32383
|
}
|
|
32200
32384
|
}
|
|
32201
32385
|
]
|
|
@@ -32394,13 +32578,13 @@
|
|
|
32394
32578
|
{
|
|
32395
32579
|
"type": "object",
|
|
32396
32580
|
"additionalProperties": {
|
|
32397
|
-
"$ref": "$.operator.methods[
|
|
32581
|
+
"$ref": "$.operator.methods[132].outputSchema.properties.usage.items.properties.metadata.additionalProperties"
|
|
32398
32582
|
}
|
|
32399
32583
|
},
|
|
32400
32584
|
{
|
|
32401
32585
|
"type": "array",
|
|
32402
32586
|
"items": {
|
|
32403
|
-
"$ref": "$.operator.methods[
|
|
32587
|
+
"$ref": "$.operator.methods[132].outputSchema.properties.usage.items.properties.metadata.additionalProperties"
|
|
32404
32588
|
}
|
|
32405
32589
|
}
|
|
32406
32590
|
]
|
|
@@ -32499,13 +32683,13 @@
|
|
|
32499
32683
|
{
|
|
32500
32684
|
"type": "object",
|
|
32501
32685
|
"additionalProperties": {
|
|
32502
|
-
"$ref": "$.operator.methods[
|
|
32686
|
+
"$ref": "$.operator.methods[133].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
32503
32687
|
}
|
|
32504
32688
|
},
|
|
32505
32689
|
{
|
|
32506
32690
|
"type": "array",
|
|
32507
32691
|
"items": {
|
|
32508
|
-
"$ref": "$.operator.methods[
|
|
32692
|
+
"$ref": "$.operator.methods[133].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
32509
32693
|
}
|
|
32510
32694
|
}
|
|
32511
32695
|
]
|
|
@@ -32546,13 +32730,13 @@
|
|
|
32546
32730
|
{
|
|
32547
32731
|
"type": "object",
|
|
32548
32732
|
"additionalProperties": {
|
|
32549
|
-
"$ref": "$.operator.methods[
|
|
32733
|
+
"$ref": "$.operator.methods[133].inputSchema.properties.metadata.additionalProperties"
|
|
32550
32734
|
}
|
|
32551
32735
|
},
|
|
32552
32736
|
{
|
|
32553
32737
|
"type": "array",
|
|
32554
32738
|
"items": {
|
|
32555
|
-
"$ref": "$.operator.methods[
|
|
32739
|
+
"$ref": "$.operator.methods[133].inputSchema.properties.metadata.additionalProperties"
|
|
32556
32740
|
}
|
|
32557
32741
|
}
|
|
32558
32742
|
]
|
|
@@ -32598,13 +32782,13 @@
|
|
|
32598
32782
|
{
|
|
32599
32783
|
"type": "object",
|
|
32600
32784
|
"additionalProperties": {
|
|
32601
|
-
"$ref": "$.operator.methods[
|
|
32785
|
+
"$ref": "$.operator.methods[133].outputSchema.properties.metadata.additionalProperties"
|
|
32602
32786
|
}
|
|
32603
32787
|
},
|
|
32604
32788
|
{
|
|
32605
32789
|
"type": "array",
|
|
32606
32790
|
"items": {
|
|
32607
|
-
"$ref": "$.operator.methods[
|
|
32791
|
+
"$ref": "$.operator.methods[133].outputSchema.properties.metadata.additionalProperties"
|
|
32608
32792
|
}
|
|
32609
32793
|
}
|
|
32610
32794
|
]
|
|
@@ -32671,13 +32855,13 @@
|
|
|
32671
32855
|
{
|
|
32672
32856
|
"type": "object",
|
|
32673
32857
|
"additionalProperties": {
|
|
32674
|
-
"$ref": "$.operator.methods[
|
|
32858
|
+
"$ref": "$.operator.methods[134].inputSchema.properties.options.additionalProperties"
|
|
32675
32859
|
}
|
|
32676
32860
|
},
|
|
32677
32861
|
{
|
|
32678
32862
|
"type": "array",
|
|
32679
32863
|
"items": {
|
|
32680
|
-
"$ref": "$.operator.methods[
|
|
32864
|
+
"$ref": "$.operator.methods[134].inputSchema.properties.options.additionalProperties"
|
|
32681
32865
|
}
|
|
32682
32866
|
}
|
|
32683
32867
|
]
|
|
@@ -32702,13 +32886,13 @@
|
|
|
32702
32886
|
{
|
|
32703
32887
|
"type": "object",
|
|
32704
32888
|
"additionalProperties": {
|
|
32705
|
-
"$ref": "$.operator.methods[
|
|
32889
|
+
"$ref": "$.operator.methods[134].inputSchema.properties.metadata.additionalProperties"
|
|
32706
32890
|
}
|
|
32707
32891
|
},
|
|
32708
32892
|
{
|
|
32709
32893
|
"type": "array",
|
|
32710
32894
|
"items": {
|
|
32711
|
-
"$ref": "$.operator.methods[
|
|
32895
|
+
"$ref": "$.operator.methods[134].inputSchema.properties.metadata.additionalProperties"
|
|
32712
32896
|
}
|
|
32713
32897
|
}
|
|
32714
32898
|
]
|
|
@@ -32792,13 +32976,13 @@
|
|
|
32792
32976
|
{
|
|
32793
32977
|
"type": "object",
|
|
32794
32978
|
"additionalProperties": {
|
|
32795
|
-
"$ref": "$.operator.methods[
|
|
32979
|
+
"$ref": "$.operator.methods[134].outputSchema.properties.artifacts.items.properties.metadata.additionalProperties"
|
|
32796
32980
|
}
|
|
32797
32981
|
},
|
|
32798
32982
|
{
|
|
32799
32983
|
"type": "array",
|
|
32800
32984
|
"items": {
|
|
32801
|
-
"$ref": "$.operator.methods[
|
|
32985
|
+
"$ref": "$.operator.methods[134].outputSchema.properties.artifacts.items.properties.metadata.additionalProperties"
|
|
32802
32986
|
}
|
|
32803
32987
|
}
|
|
32804
32988
|
]
|
|
@@ -32831,13 +33015,13 @@
|
|
|
32831
33015
|
{
|
|
32832
33016
|
"type": "object",
|
|
32833
33017
|
"additionalProperties": {
|
|
32834
|
-
"$ref": "$.operator.methods[
|
|
33018
|
+
"$ref": "$.operator.methods[134].outputSchema.properties.metadata.additionalProperties"
|
|
32835
33019
|
}
|
|
32836
33020
|
},
|
|
32837
33021
|
{
|
|
32838
33022
|
"type": "array",
|
|
32839
33023
|
"items": {
|
|
32840
|
-
"$ref": "$.operator.methods[
|
|
33024
|
+
"$ref": "$.operator.methods[134].outputSchema.properties.metadata.additionalProperties"
|
|
32841
33025
|
}
|
|
32842
33026
|
}
|
|
32843
33027
|
]
|
|
@@ -32983,13 +33167,13 @@
|
|
|
32983
33167
|
{
|
|
32984
33168
|
"type": "object",
|
|
32985
33169
|
"additionalProperties": {
|
|
32986
|
-
"$ref": "$.operator.methods[
|
|
33170
|
+
"$ref": "$.operator.methods[136].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
32987
33171
|
}
|
|
32988
33172
|
},
|
|
32989
33173
|
{
|
|
32990
33174
|
"type": "array",
|
|
32991
33175
|
"items": {
|
|
32992
|
-
"$ref": "$.operator.methods[
|
|
33176
|
+
"$ref": "$.operator.methods[136].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
32993
33177
|
}
|
|
32994
33178
|
}
|
|
32995
33179
|
]
|
|
@@ -33027,13 +33211,13 @@
|
|
|
33027
33211
|
{
|
|
33028
33212
|
"type": "object",
|
|
33029
33213
|
"additionalProperties": {
|
|
33030
|
-
"$ref": "$.operator.methods[
|
|
33214
|
+
"$ref": "$.operator.methods[136].inputSchema.properties.options.additionalProperties"
|
|
33031
33215
|
}
|
|
33032
33216
|
},
|
|
33033
33217
|
{
|
|
33034
33218
|
"type": "array",
|
|
33035
33219
|
"items": {
|
|
33036
|
-
"$ref": "$.operator.methods[
|
|
33220
|
+
"$ref": "$.operator.methods[136].inputSchema.properties.options.additionalProperties"
|
|
33037
33221
|
}
|
|
33038
33222
|
}
|
|
33039
33223
|
]
|
|
@@ -33058,13 +33242,13 @@
|
|
|
33058
33242
|
{
|
|
33059
33243
|
"type": "object",
|
|
33060
33244
|
"additionalProperties": {
|
|
33061
|
-
"$ref": "$.operator.methods[
|
|
33245
|
+
"$ref": "$.operator.methods[136].inputSchema.properties.metadata.additionalProperties"
|
|
33062
33246
|
}
|
|
33063
33247
|
},
|
|
33064
33248
|
{
|
|
33065
33249
|
"type": "array",
|
|
33066
33250
|
"items": {
|
|
33067
|
-
"$ref": "$.operator.methods[
|
|
33251
|
+
"$ref": "$.operator.methods[136].inputSchema.properties.metadata.additionalProperties"
|
|
33068
33252
|
}
|
|
33069
33253
|
}
|
|
33070
33254
|
]
|
|
@@ -33147,13 +33331,13 @@
|
|
|
33147
33331
|
{
|
|
33148
33332
|
"type": "object",
|
|
33149
33333
|
"additionalProperties": {
|
|
33150
|
-
"$ref": "$.operator.methods[
|
|
33334
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
33151
33335
|
}
|
|
33152
33336
|
},
|
|
33153
33337
|
{
|
|
33154
33338
|
"type": "array",
|
|
33155
33339
|
"items": {
|
|
33156
|
-
"$ref": "$.operator.methods[
|
|
33340
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
33157
33341
|
}
|
|
33158
33342
|
}
|
|
33159
33343
|
]
|
|
@@ -33185,13 +33369,13 @@
|
|
|
33185
33369
|
{
|
|
33186
33370
|
"type": "object",
|
|
33187
33371
|
"additionalProperties": {
|
|
33188
|
-
"$ref": "$.operator.methods[
|
|
33372
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.metadata.additionalProperties"
|
|
33189
33373
|
}
|
|
33190
33374
|
},
|
|
33191
33375
|
{
|
|
33192
33376
|
"type": "array",
|
|
33193
33377
|
"items": {
|
|
33194
|
-
"$ref": "$.operator.methods[
|
|
33378
|
+
"$ref": "$.operator.methods[136].outputSchema.properties.metadata.additionalProperties"
|
|
33195
33379
|
}
|
|
33196
33380
|
}
|
|
33197
33381
|
]
|
|
@@ -33271,13 +33455,13 @@
|
|
|
33271
33455
|
{
|
|
33272
33456
|
"type": "object",
|
|
33273
33457
|
"additionalProperties": {
|
|
33274
|
-
"$ref": "$.operator.methods[
|
|
33458
|
+
"$ref": "$.operator.methods[137].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
33275
33459
|
}
|
|
33276
33460
|
},
|
|
33277
33461
|
{
|
|
33278
33462
|
"type": "array",
|
|
33279
33463
|
"items": {
|
|
33280
|
-
"$ref": "$.operator.methods[
|
|
33464
|
+
"$ref": "$.operator.methods[137].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
33281
33465
|
}
|
|
33282
33466
|
}
|
|
33283
33467
|
]
|
|
@@ -33352,13 +33536,13 @@
|
|
|
33352
33536
|
{
|
|
33353
33537
|
"type": "object",
|
|
33354
33538
|
"additionalProperties": {
|
|
33355
|
-
"$ref": "$.operator.methods[
|
|
33539
|
+
"$ref": "$.operator.methods[137].inputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
33356
33540
|
}
|
|
33357
33541
|
},
|
|
33358
33542
|
{
|
|
33359
33543
|
"type": "array",
|
|
33360
33544
|
"items": {
|
|
33361
|
-
"$ref": "$.operator.methods[
|
|
33545
|
+
"$ref": "$.operator.methods[137].inputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
33362
33546
|
}
|
|
33363
33547
|
}
|
|
33364
33548
|
]
|
|
@@ -33389,13 +33573,13 @@
|
|
|
33389
33573
|
{
|
|
33390
33574
|
"type": "object",
|
|
33391
33575
|
"additionalProperties": {
|
|
33392
|
-
"$ref": "$.operator.methods[
|
|
33576
|
+
"$ref": "$.operator.methods[137].inputSchema.properties.metadata.additionalProperties"
|
|
33393
33577
|
}
|
|
33394
33578
|
},
|
|
33395
33579
|
{
|
|
33396
33580
|
"type": "array",
|
|
33397
33581
|
"items": {
|
|
33398
|
-
"$ref": "$.operator.methods[
|
|
33582
|
+
"$ref": "$.operator.methods[137].inputSchema.properties.metadata.additionalProperties"
|
|
33399
33583
|
}
|
|
33400
33584
|
}
|
|
33401
33585
|
]
|
|
@@ -33471,13 +33655,13 @@
|
|
|
33471
33655
|
{
|
|
33472
33656
|
"type": "object",
|
|
33473
33657
|
"additionalProperties": {
|
|
33474
|
-
"$ref": "$.operator.methods[
|
|
33658
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
33475
33659
|
}
|
|
33476
33660
|
},
|
|
33477
33661
|
{
|
|
33478
33662
|
"type": "array",
|
|
33479
33663
|
"items": {
|
|
33480
|
-
"$ref": "$.operator.methods[
|
|
33664
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
33481
33665
|
}
|
|
33482
33666
|
}
|
|
33483
33667
|
]
|
|
@@ -33561,13 +33745,13 @@
|
|
|
33561
33745
|
{
|
|
33562
33746
|
"type": "object",
|
|
33563
33747
|
"additionalProperties": {
|
|
33564
|
-
"$ref": "$.operator.methods[
|
|
33748
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
33565
33749
|
}
|
|
33566
33750
|
},
|
|
33567
33751
|
{
|
|
33568
33752
|
"type": "array",
|
|
33569
33753
|
"items": {
|
|
33570
|
-
"$ref": "$.operator.methods[
|
|
33754
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
33571
33755
|
}
|
|
33572
33756
|
}
|
|
33573
33757
|
]
|
|
@@ -33600,13 +33784,13 @@
|
|
|
33600
33784
|
{
|
|
33601
33785
|
"type": "object",
|
|
33602
33786
|
"additionalProperties": {
|
|
33603
|
-
"$ref": "$.operator.methods[
|
|
33787
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
33604
33788
|
}
|
|
33605
33789
|
},
|
|
33606
33790
|
{
|
|
33607
33791
|
"type": "array",
|
|
33608
33792
|
"items": {
|
|
33609
|
-
"$ref": "$.operator.methods[
|
|
33793
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
33610
33794
|
}
|
|
33611
33795
|
}
|
|
33612
33796
|
]
|
|
@@ -33714,13 +33898,13 @@
|
|
|
33714
33898
|
{
|
|
33715
33899
|
"type": "object",
|
|
33716
33900
|
"additionalProperties": {
|
|
33717
|
-
"$ref": "$.operator.methods[
|
|
33901
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
33718
33902
|
}
|
|
33719
33903
|
},
|
|
33720
33904
|
{
|
|
33721
33905
|
"type": "array",
|
|
33722
33906
|
"items": {
|
|
33723
|
-
"$ref": "$.operator.methods[
|
|
33907
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
33724
33908
|
}
|
|
33725
33909
|
}
|
|
33726
33910
|
]
|
|
@@ -33760,13 +33944,13 @@
|
|
|
33760
33944
|
{
|
|
33761
33945
|
"type": "object",
|
|
33762
33946
|
"additionalProperties": {
|
|
33763
|
-
"$ref": "$.operator.methods[
|
|
33947
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
33764
33948
|
}
|
|
33765
33949
|
},
|
|
33766
33950
|
{
|
|
33767
33951
|
"type": "array",
|
|
33768
33952
|
"items": {
|
|
33769
|
-
"$ref": "$.operator.methods[
|
|
33953
|
+
"$ref": "$.operator.methods[137].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
33770
33954
|
}
|
|
33771
33955
|
}
|
|
33772
33956
|
]
|
|
@@ -33872,13 +34056,13 @@
|
|
|
33872
34056
|
{
|
|
33873
34057
|
"type": "object",
|
|
33874
34058
|
"additionalProperties": {
|
|
33875
|
-
"$ref": "$.operator.methods[
|
|
34059
|
+
"$ref": "$.operator.methods[138].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
33876
34060
|
}
|
|
33877
34061
|
},
|
|
33878
34062
|
{
|
|
33879
34063
|
"type": "array",
|
|
33880
34064
|
"items": {
|
|
33881
|
-
"$ref": "$.operator.methods[
|
|
34065
|
+
"$ref": "$.operator.methods[138].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
33882
34066
|
}
|
|
33883
34067
|
}
|
|
33884
34068
|
]
|
|
@@ -33962,13 +34146,13 @@
|
|
|
33962
34146
|
{
|
|
33963
34147
|
"type": "object",
|
|
33964
34148
|
"additionalProperties": {
|
|
33965
|
-
"$ref": "$.operator.methods[
|
|
34149
|
+
"$ref": "$.operator.methods[138].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
33966
34150
|
}
|
|
33967
34151
|
},
|
|
33968
34152
|
{
|
|
33969
34153
|
"type": "array",
|
|
33970
34154
|
"items": {
|
|
33971
|
-
"$ref": "$.operator.methods[
|
|
34155
|
+
"$ref": "$.operator.methods[138].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
33972
34156
|
}
|
|
33973
34157
|
}
|
|
33974
34158
|
]
|
|
@@ -34001,13 +34185,13 @@
|
|
|
34001
34185
|
{
|
|
34002
34186
|
"type": "object",
|
|
34003
34187
|
"additionalProperties": {
|
|
34004
|
-
"$ref": "$.operator.methods[
|
|
34188
|
+
"$ref": "$.operator.methods[138].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
34005
34189
|
}
|
|
34006
34190
|
},
|
|
34007
34191
|
{
|
|
34008
34192
|
"type": "array",
|
|
34009
34193
|
"items": {
|
|
34010
|
-
"$ref": "$.operator.methods[
|
|
34194
|
+
"$ref": "$.operator.methods[138].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
34011
34195
|
}
|
|
34012
34196
|
}
|
|
34013
34197
|
]
|
|
@@ -34153,13 +34337,13 @@
|
|
|
34153
34337
|
{
|
|
34154
34338
|
"type": "object",
|
|
34155
34339
|
"additionalProperties": {
|
|
34156
|
-
"$ref": "$.operator.methods[
|
|
34340
|
+
"$ref": "$.operator.methods[139].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
34157
34341
|
}
|
|
34158
34342
|
},
|
|
34159
34343
|
{
|
|
34160
34344
|
"type": "array",
|
|
34161
34345
|
"items": {
|
|
34162
|
-
"$ref": "$.operator.methods[
|
|
34346
|
+
"$ref": "$.operator.methods[139].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
34163
34347
|
}
|
|
34164
34348
|
}
|
|
34165
34349
|
]
|
|
@@ -34259,13 +34443,13 @@
|
|
|
34259
34443
|
{
|
|
34260
34444
|
"type": "object",
|
|
34261
34445
|
"additionalProperties": {
|
|
34262
|
-
"$ref": "$.operator.methods[
|
|
34446
|
+
"$ref": "$.operator.methods[140].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
34263
34447
|
}
|
|
34264
34448
|
},
|
|
34265
34449
|
{
|
|
34266
34450
|
"type": "array",
|
|
34267
34451
|
"items": {
|
|
34268
|
-
"$ref": "$.operator.methods[
|
|
34452
|
+
"$ref": "$.operator.methods[140].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
34269
34453
|
}
|
|
34270
34454
|
}
|
|
34271
34455
|
]
|
|
@@ -34383,13 +34567,13 @@
|
|
|
34383
34567
|
{
|
|
34384
34568
|
"type": "object",
|
|
34385
34569
|
"additionalProperties": {
|
|
34386
|
-
"$ref": "$.operator.methods[
|
|
34570
|
+
"$ref": "$.operator.methods[141].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
34387
34571
|
}
|
|
34388
34572
|
},
|
|
34389
34573
|
{
|
|
34390
34574
|
"type": "array",
|
|
34391
34575
|
"items": {
|
|
34392
|
-
"$ref": "$.operator.methods[
|
|
34576
|
+
"$ref": "$.operator.methods[141].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
34393
34577
|
}
|
|
34394
34578
|
}
|
|
34395
34579
|
]
|
|
@@ -34473,13 +34657,13 @@
|
|
|
34473
34657
|
{
|
|
34474
34658
|
"type": "object",
|
|
34475
34659
|
"additionalProperties": {
|
|
34476
|
-
"$ref": "$.operator.methods[
|
|
34660
|
+
"$ref": "$.operator.methods[141].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
34477
34661
|
}
|
|
34478
34662
|
},
|
|
34479
34663
|
{
|
|
34480
34664
|
"type": "array",
|
|
34481
34665
|
"items": {
|
|
34482
|
-
"$ref": "$.operator.methods[
|
|
34666
|
+
"$ref": "$.operator.methods[141].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
34483
34667
|
}
|
|
34484
34668
|
}
|
|
34485
34669
|
]
|
|
@@ -34512,13 +34696,13 @@
|
|
|
34512
34696
|
{
|
|
34513
34697
|
"type": "object",
|
|
34514
34698
|
"additionalProperties": {
|
|
34515
|
-
"$ref": "$.operator.methods[
|
|
34699
|
+
"$ref": "$.operator.methods[141].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
34516
34700
|
}
|
|
34517
34701
|
},
|
|
34518
34702
|
{
|
|
34519
34703
|
"type": "array",
|
|
34520
34704
|
"items": {
|
|
34521
|
-
"$ref": "$.operator.methods[
|
|
34705
|
+
"$ref": "$.operator.methods[141].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
34522
34706
|
}
|
|
34523
34707
|
}
|
|
34524
34708
|
]
|
|
@@ -34571,13 +34755,13 @@
|
|
|
34571
34755
|
{
|
|
34572
34756
|
"type": "object",
|
|
34573
34757
|
"additionalProperties": {
|
|
34574
|
-
"$ref": "$.operator.methods[
|
|
34758
|
+
"$ref": "$.operator.methods[141].inputSchema.properties.metadata.additionalProperties"
|
|
34575
34759
|
}
|
|
34576
34760
|
},
|
|
34577
34761
|
{
|
|
34578
34762
|
"type": "array",
|
|
34579
34763
|
"items": {
|
|
34580
|
-
"$ref": "$.operator.methods[
|
|
34764
|
+
"$ref": "$.operator.methods[141].inputSchema.properties.metadata.additionalProperties"
|
|
34581
34765
|
}
|
|
34582
34766
|
}
|
|
34583
34767
|
]
|
|
@@ -34650,13 +34834,13 @@
|
|
|
34650
34834
|
{
|
|
34651
34835
|
"type": "object",
|
|
34652
34836
|
"additionalProperties": {
|
|
34653
|
-
"$ref": "$.operator.methods[
|
|
34837
|
+
"$ref": "$.operator.methods[141].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
34654
34838
|
}
|
|
34655
34839
|
},
|
|
34656
34840
|
{
|
|
34657
34841
|
"type": "array",
|
|
34658
34842
|
"items": {
|
|
34659
|
-
"$ref": "$.operator.methods[
|
|
34843
|
+
"$ref": "$.operator.methods[141].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
34660
34844
|
}
|
|
34661
34845
|
}
|
|
34662
34846
|
]
|
|
@@ -34696,13 +34880,13 @@
|
|
|
34696
34880
|
{
|
|
34697
34881
|
"type": "object",
|
|
34698
34882
|
"additionalProperties": {
|
|
34699
|
-
"$ref": "$.operator.methods[
|
|
34883
|
+
"$ref": "$.operator.methods[141].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
34700
34884
|
}
|
|
34701
34885
|
},
|
|
34702
34886
|
{
|
|
34703
34887
|
"type": "array",
|
|
34704
34888
|
"items": {
|
|
34705
|
-
"$ref": "$.operator.methods[
|
|
34889
|
+
"$ref": "$.operator.methods[141].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
34706
34890
|
}
|
|
34707
34891
|
}
|
|
34708
34892
|
]
|
|
@@ -34852,13 +35036,13 @@
|
|
|
34852
35036
|
{
|
|
34853
35037
|
"type": "object",
|
|
34854
35038
|
"additionalProperties": {
|
|
34855
|
-
"$ref": "$.operator.methods[
|
|
35039
|
+
"$ref": "$.operator.methods[142].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
34856
35040
|
}
|
|
34857
35041
|
},
|
|
34858
35042
|
{
|
|
34859
35043
|
"type": "array",
|
|
34860
35044
|
"items": {
|
|
34861
|
-
"$ref": "$.operator.methods[
|
|
35045
|
+
"$ref": "$.operator.methods[142].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
34862
35046
|
}
|
|
34863
35047
|
}
|
|
34864
35048
|
]
|
|
@@ -35053,13 +35237,13 @@
|
|
|
35053
35237
|
{
|
|
35054
35238
|
"type": "object",
|
|
35055
35239
|
"additionalProperties": {
|
|
35056
|
-
"$ref": "$.operator.methods[
|
|
35240
|
+
"$ref": "$.operator.methods[143].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
35057
35241
|
}
|
|
35058
35242
|
},
|
|
35059
35243
|
{
|
|
35060
35244
|
"type": "array",
|
|
35061
35245
|
"items": {
|
|
35062
|
-
"$ref": "$.operator.methods[
|
|
35246
|
+
"$ref": "$.operator.methods[143].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
35063
35247
|
}
|
|
35064
35248
|
}
|
|
35065
35249
|
]
|
|
@@ -36388,13 +36572,13 @@
|
|
|
36388
36572
|
{
|
|
36389
36573
|
"type": "object",
|
|
36390
36574
|
"additionalProperties": {
|
|
36391
|
-
"$ref": "$.operator.methods[
|
|
36575
|
+
"$ref": "$.operator.methods[151].outputSchema.properties.contract.properties.endpoints.items.properties.inputSchema.additionalProperties"
|
|
36392
36576
|
}
|
|
36393
36577
|
},
|
|
36394
36578
|
{
|
|
36395
36579
|
"type": "array",
|
|
36396
36580
|
"items": {
|
|
36397
|
-
"$ref": "$.operator.methods[
|
|
36581
|
+
"$ref": "$.operator.methods[151].outputSchema.properties.contract.properties.endpoints.items.properties.inputSchema.additionalProperties"
|
|
36398
36582
|
}
|
|
36399
36583
|
}
|
|
36400
36584
|
]
|
|
@@ -36419,13 +36603,13 @@
|
|
|
36419
36603
|
{
|
|
36420
36604
|
"type": "object",
|
|
36421
36605
|
"additionalProperties": {
|
|
36422
|
-
"$ref": "$.operator.methods[
|
|
36606
|
+
"$ref": "$.operator.methods[151].outputSchema.properties.contract.properties.endpoints.items.properties.outputSchema.additionalProperties"
|
|
36423
36607
|
}
|
|
36424
36608
|
},
|
|
36425
36609
|
{
|
|
36426
36610
|
"type": "array",
|
|
36427
36611
|
"items": {
|
|
36428
|
-
"$ref": "$.operator.methods[
|
|
36612
|
+
"$ref": "$.operator.methods[151].outputSchema.properties.contract.properties.endpoints.items.properties.outputSchema.additionalProperties"
|
|
36429
36613
|
}
|
|
36430
36614
|
}
|
|
36431
36615
|
]
|
|
@@ -36475,13 +36659,13 @@
|
|
|
36475
36659
|
{
|
|
36476
36660
|
"type": "object",
|
|
36477
36661
|
"additionalProperties": {
|
|
36478
|
-
"$ref": "$.operator.methods[
|
|
36662
|
+
"$ref": "$.operator.methods[151].outputSchema.properties.contract.properties.metadata.additionalProperties"
|
|
36479
36663
|
}
|
|
36480
36664
|
},
|
|
36481
36665
|
{
|
|
36482
36666
|
"type": "array",
|
|
36483
36667
|
"items": {
|
|
36484
|
-
"$ref": "$.operator.methods[
|
|
36668
|
+
"$ref": "$.operator.methods[151].outputSchema.properties.contract.properties.metadata.additionalProperties"
|
|
36485
36669
|
}
|
|
36486
36670
|
}
|
|
36487
36671
|
]
|
|
@@ -36565,13 +36749,13 @@
|
|
|
36565
36749
|
{
|
|
36566
36750
|
"type": "object",
|
|
36567
36751
|
"additionalProperties": {
|
|
36568
|
-
"$ref": "$.operator.methods[
|
|
36752
|
+
"$ref": "$.operator.methods[152].inputSchema.properties.metadata.additionalProperties"
|
|
36569
36753
|
}
|
|
36570
36754
|
},
|
|
36571
36755
|
{
|
|
36572
36756
|
"type": "array",
|
|
36573
36757
|
"items": {
|
|
36574
|
-
"$ref": "$.operator.methods[
|
|
36758
|
+
"$ref": "$.operator.methods[152].inputSchema.properties.metadata.additionalProperties"
|
|
36575
36759
|
}
|
|
36576
36760
|
}
|
|
36577
36761
|
]
|
|
@@ -36692,13 +36876,13 @@
|
|
|
36692
36876
|
{
|
|
36693
36877
|
"type": "object",
|
|
36694
36878
|
"additionalProperties": {
|
|
36695
|
-
"$ref": "$.operator.methods[
|
|
36879
|
+
"$ref": "$.operator.methods[152].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
36696
36880
|
}
|
|
36697
36881
|
},
|
|
36698
36882
|
{
|
|
36699
36883
|
"type": "array",
|
|
36700
36884
|
"items": {
|
|
36701
|
-
"$ref": "$.operator.methods[
|
|
36885
|
+
"$ref": "$.operator.methods[152].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
36702
36886
|
}
|
|
36703
36887
|
}
|
|
36704
36888
|
]
|
|
@@ -36864,13 +37048,13 @@
|
|
|
36864
37048
|
{
|
|
36865
37049
|
"type": "object",
|
|
36866
37050
|
"additionalProperties": {
|
|
36867
|
-
"$ref": "$.operator.methods[
|
|
37051
|
+
"$ref": "$.operator.methods[152].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
36868
37052
|
}
|
|
36869
37053
|
},
|
|
36870
37054
|
{
|
|
36871
37055
|
"type": "array",
|
|
36872
37056
|
"items": {
|
|
36873
|
-
"$ref": "$.operator.methods[
|
|
37057
|
+
"$ref": "$.operator.methods[152].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
36874
37058
|
}
|
|
36875
37059
|
}
|
|
36876
37060
|
]
|
|
@@ -37034,13 +37218,13 @@
|
|
|
37034
37218
|
{
|
|
37035
37219
|
"type": "object",
|
|
37036
37220
|
"additionalProperties": {
|
|
37037
|
-
"$ref": "$.operator.methods[
|
|
37221
|
+
"$ref": "$.operator.methods[153].outputSchema.properties.requests.items.properties.metadata.additionalProperties"
|
|
37038
37222
|
}
|
|
37039
37223
|
},
|
|
37040
37224
|
{
|
|
37041
37225
|
"type": "array",
|
|
37042
37226
|
"items": {
|
|
37043
|
-
"$ref": "$.operator.methods[
|
|
37227
|
+
"$ref": "$.operator.methods[153].outputSchema.properties.requests.items.properties.metadata.additionalProperties"
|
|
37044
37228
|
}
|
|
37045
37229
|
}
|
|
37046
37230
|
]
|
|
@@ -37122,13 +37306,13 @@
|
|
|
37122
37306
|
{
|
|
37123
37307
|
"type": "object",
|
|
37124
37308
|
"additionalProperties": {
|
|
37125
|
-
"$ref": "$.operator.methods[
|
|
37309
|
+
"$ref": "$.operator.methods[154].inputSchema.properties.metadata.additionalProperties"
|
|
37126
37310
|
}
|
|
37127
37311
|
},
|
|
37128
37312
|
{
|
|
37129
37313
|
"type": "array",
|
|
37130
37314
|
"items": {
|
|
37131
|
-
"$ref": "$.operator.methods[
|
|
37315
|
+
"$ref": "$.operator.methods[154].inputSchema.properties.metadata.additionalProperties"
|
|
37132
37316
|
}
|
|
37133
37317
|
}
|
|
37134
37318
|
]
|
|
@@ -37249,13 +37433,13 @@
|
|
|
37249
37433
|
{
|
|
37250
37434
|
"type": "object",
|
|
37251
37435
|
"additionalProperties": {
|
|
37252
|
-
"$ref": "$.operator.methods[
|
|
37436
|
+
"$ref": "$.operator.methods[154].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
37253
37437
|
}
|
|
37254
37438
|
},
|
|
37255
37439
|
{
|
|
37256
37440
|
"type": "array",
|
|
37257
37441
|
"items": {
|
|
37258
|
-
"$ref": "$.operator.methods[
|
|
37442
|
+
"$ref": "$.operator.methods[154].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
37259
37443
|
}
|
|
37260
37444
|
}
|
|
37261
37445
|
]
|
|
@@ -37468,13 +37652,13 @@
|
|
|
37468
37652
|
{
|
|
37469
37653
|
"type": "object",
|
|
37470
37654
|
"additionalProperties": {
|
|
37471
|
-
"$ref": "$.operator.methods[
|
|
37655
|
+
"$ref": "$.operator.methods[155].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
37472
37656
|
}
|
|
37473
37657
|
},
|
|
37474
37658
|
{
|
|
37475
37659
|
"type": "array",
|
|
37476
37660
|
"items": {
|
|
37477
|
-
"$ref": "$.operator.methods[
|
|
37661
|
+
"$ref": "$.operator.methods[155].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
37478
37662
|
}
|
|
37479
37663
|
}
|
|
37480
37664
|
]
|
|
@@ -37547,13 +37731,13 @@
|
|
|
37547
37731
|
{
|
|
37548
37732
|
"type": "object",
|
|
37549
37733
|
"additionalProperties": {
|
|
37550
|
-
"$ref": "$.operator.methods[
|
|
37734
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.payload"
|
|
37551
37735
|
}
|
|
37552
37736
|
},
|
|
37553
37737
|
{
|
|
37554
37738
|
"type": "array",
|
|
37555
37739
|
"items": {
|
|
37556
|
-
"$ref": "$.operator.methods[
|
|
37740
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.payload"
|
|
37557
37741
|
}
|
|
37558
37742
|
}
|
|
37559
37743
|
]
|
|
@@ -37606,13 +37790,13 @@
|
|
|
37606
37790
|
{
|
|
37607
37791
|
"type": "object",
|
|
37608
37792
|
"additionalProperties": {
|
|
37609
|
-
"$ref": "$.operator.methods[
|
|
37793
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.metadata.additionalProperties"
|
|
37610
37794
|
}
|
|
37611
37795
|
},
|
|
37612
37796
|
{
|
|
37613
37797
|
"type": "array",
|
|
37614
37798
|
"items": {
|
|
37615
|
-
"$ref": "$.operator.methods[
|
|
37799
|
+
"$ref": "$.operator.methods[156].inputSchema.properties.metadata.additionalProperties"
|
|
37616
37800
|
}
|
|
37617
37801
|
}
|
|
37618
37802
|
]
|
|
@@ -37693,13 +37877,13 @@
|
|
|
37693
37877
|
{
|
|
37694
37878
|
"type": "object",
|
|
37695
37879
|
"additionalProperties": {
|
|
37696
|
-
"$ref": "$.operator.methods[
|
|
37880
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.work.properties.payload"
|
|
37697
37881
|
}
|
|
37698
37882
|
},
|
|
37699
37883
|
{
|
|
37700
37884
|
"type": "array",
|
|
37701
37885
|
"items": {
|
|
37702
|
-
"$ref": "$.operator.methods[
|
|
37886
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.work.properties.payload"
|
|
37703
37887
|
}
|
|
37704
37888
|
}
|
|
37705
37889
|
]
|
|
@@ -37760,13 +37944,13 @@
|
|
|
37760
37944
|
{
|
|
37761
37945
|
"type": "object",
|
|
37762
37946
|
"additionalProperties": {
|
|
37763
|
-
"$ref": "$.operator.methods[
|
|
37947
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.work.properties.result"
|
|
37764
37948
|
}
|
|
37765
37949
|
},
|
|
37766
37950
|
{
|
|
37767
37951
|
"type": "array",
|
|
37768
37952
|
"items": {
|
|
37769
|
-
"$ref": "$.operator.methods[
|
|
37953
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.work.properties.result"
|
|
37770
37954
|
}
|
|
37771
37955
|
}
|
|
37772
37956
|
]
|
|
@@ -37856,13 +38040,13 @@
|
|
|
37856
38040
|
{
|
|
37857
38041
|
"type": "object",
|
|
37858
38042
|
"additionalProperties": {
|
|
37859
|
-
"$ref": "$.operator.methods[
|
|
38043
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
37860
38044
|
}
|
|
37861
38045
|
},
|
|
37862
38046
|
{
|
|
37863
38047
|
"type": "array",
|
|
37864
38048
|
"items": {
|
|
37865
|
-
"$ref": "$.operator.methods[
|
|
38049
|
+
"$ref": "$.operator.methods[156].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
37866
38050
|
}
|
|
37867
38051
|
}
|
|
37868
38052
|
]
|
|
@@ -38066,13 +38250,13 @@
|
|
|
38066
38250
|
{
|
|
38067
38251
|
"type": "object",
|
|
38068
38252
|
"additionalProperties": {
|
|
38069
|
-
"$ref": "$.operator.methods[
|
|
38253
|
+
"$ref": "$.operator.methods[157].outputSchema.properties.peers.items.properties.metadata.additionalProperties"
|
|
38070
38254
|
}
|
|
38071
38255
|
},
|
|
38072
38256
|
{
|
|
38073
38257
|
"type": "array",
|
|
38074
38258
|
"items": {
|
|
38075
|
-
"$ref": "$.operator.methods[
|
|
38259
|
+
"$ref": "$.operator.methods[157].outputSchema.properties.peers.items.properties.metadata.additionalProperties"
|
|
38076
38260
|
}
|
|
38077
38261
|
}
|
|
38078
38262
|
]
|
|
@@ -38283,13 +38467,13 @@
|
|
|
38283
38467
|
{
|
|
38284
38468
|
"type": "object",
|
|
38285
38469
|
"additionalProperties": {
|
|
38286
|
-
"$ref": "$.operator.methods[
|
|
38470
|
+
"$ref": "$.operator.methods[158].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
38287
38471
|
}
|
|
38288
38472
|
},
|
|
38289
38473
|
{
|
|
38290
38474
|
"type": "array",
|
|
38291
38475
|
"items": {
|
|
38292
|
-
"$ref": "$.operator.methods[
|
|
38476
|
+
"$ref": "$.operator.methods[158].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
38293
38477
|
}
|
|
38294
38478
|
}
|
|
38295
38479
|
]
|
|
@@ -38502,13 +38686,13 @@
|
|
|
38502
38686
|
{
|
|
38503
38687
|
"type": "object",
|
|
38504
38688
|
"additionalProperties": {
|
|
38505
|
-
"$ref": "$.operator.methods[
|
|
38689
|
+
"$ref": "$.operator.methods[159].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
38506
38690
|
}
|
|
38507
38691
|
},
|
|
38508
38692
|
{
|
|
38509
38693
|
"type": "array",
|
|
38510
38694
|
"items": {
|
|
38511
|
-
"$ref": "$.operator.methods[
|
|
38695
|
+
"$ref": "$.operator.methods[159].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
38512
38696
|
}
|
|
38513
38697
|
}
|
|
38514
38698
|
]
|
|
@@ -38985,13 +39169,13 @@
|
|
|
38985
39169
|
{
|
|
38986
39170
|
"type": "object",
|
|
38987
39171
|
"additionalProperties": {
|
|
38988
|
-
"$ref": "$.operator.methods[
|
|
39172
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
|
|
38989
39173
|
}
|
|
38990
39174
|
},
|
|
38991
39175
|
{
|
|
38992
39176
|
"type": "array",
|
|
38993
39177
|
"items": {
|
|
38994
|
-
"$ref": "$.operator.methods[
|
|
39178
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
|
|
38995
39179
|
}
|
|
38996
39180
|
}
|
|
38997
39181
|
]
|
|
@@ -39160,13 +39344,13 @@
|
|
|
39160
39344
|
{
|
|
39161
39345
|
"type": "object",
|
|
39162
39346
|
"additionalProperties": {
|
|
39163
|
-
"$ref": "$.operator.methods[
|
|
39347
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
|
|
39164
39348
|
}
|
|
39165
39349
|
},
|
|
39166
39350
|
{
|
|
39167
39351
|
"type": "array",
|
|
39168
39352
|
"items": {
|
|
39169
|
-
"$ref": "$.operator.methods[
|
|
39353
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
|
|
39170
39354
|
}
|
|
39171
39355
|
}
|
|
39172
39356
|
]
|
|
@@ -39255,13 +39439,13 @@
|
|
|
39255
39439
|
{
|
|
39256
39440
|
"type": "object",
|
|
39257
39441
|
"additionalProperties": {
|
|
39258
|
-
"$ref": "$.operator.methods[
|
|
39442
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.work.items.properties.payload"
|
|
39259
39443
|
}
|
|
39260
39444
|
},
|
|
39261
39445
|
{
|
|
39262
39446
|
"type": "array",
|
|
39263
39447
|
"items": {
|
|
39264
|
-
"$ref": "$.operator.methods[
|
|
39448
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.work.items.properties.payload"
|
|
39265
39449
|
}
|
|
39266
39450
|
}
|
|
39267
39451
|
]
|
|
@@ -39322,13 +39506,13 @@
|
|
|
39322
39506
|
{
|
|
39323
39507
|
"type": "object",
|
|
39324
39508
|
"additionalProperties": {
|
|
39325
|
-
"$ref": "$.operator.methods[
|
|
39509
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.work.items.properties.result"
|
|
39326
39510
|
}
|
|
39327
39511
|
},
|
|
39328
39512
|
{
|
|
39329
39513
|
"type": "array",
|
|
39330
39514
|
"items": {
|
|
39331
|
-
"$ref": "$.operator.methods[
|
|
39515
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.work.items.properties.result"
|
|
39332
39516
|
}
|
|
39333
39517
|
}
|
|
39334
39518
|
]
|
|
@@ -39418,13 +39602,13 @@
|
|
|
39418
39602
|
{
|
|
39419
39603
|
"type": "object",
|
|
39420
39604
|
"additionalProperties": {
|
|
39421
|
-
"$ref": "$.operator.methods[
|
|
39605
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
|
|
39422
39606
|
}
|
|
39423
39607
|
},
|
|
39424
39608
|
{
|
|
39425
39609
|
"type": "array",
|
|
39426
39610
|
"items": {
|
|
39427
|
-
"$ref": "$.operator.methods[
|
|
39611
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
|
|
39428
39612
|
}
|
|
39429
39613
|
}
|
|
39430
39614
|
]
|
|
@@ -39512,13 +39696,13 @@
|
|
|
39512
39696
|
{
|
|
39513
39697
|
"type": "object",
|
|
39514
39698
|
"additionalProperties": {
|
|
39515
|
-
"$ref": "$.operator.methods[
|
|
39699
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
|
|
39516
39700
|
}
|
|
39517
39701
|
},
|
|
39518
39702
|
{
|
|
39519
39703
|
"type": "array",
|
|
39520
39704
|
"items": {
|
|
39521
|
-
"$ref": "$.operator.methods[
|
|
39705
|
+
"$ref": "$.operator.methods[160].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
|
|
39522
39706
|
}
|
|
39523
39707
|
}
|
|
39524
39708
|
]
|
|
@@ -39657,13 +39841,13 @@
|
|
|
39657
39841
|
{
|
|
39658
39842
|
"type": "object",
|
|
39659
39843
|
"additionalProperties": {
|
|
39660
|
-
"$ref": "$.operator.methods[
|
|
39844
|
+
"$ref": "$.operator.methods[161].outputSchema.properties.work.properties.payload"
|
|
39661
39845
|
}
|
|
39662
39846
|
},
|
|
39663
39847
|
{
|
|
39664
39848
|
"type": "array",
|
|
39665
39849
|
"items": {
|
|
39666
|
-
"$ref": "$.operator.methods[
|
|
39850
|
+
"$ref": "$.operator.methods[161].outputSchema.properties.work.properties.payload"
|
|
39667
39851
|
}
|
|
39668
39852
|
}
|
|
39669
39853
|
]
|
|
@@ -39724,13 +39908,13 @@
|
|
|
39724
39908
|
{
|
|
39725
39909
|
"type": "object",
|
|
39726
39910
|
"additionalProperties": {
|
|
39727
|
-
"$ref": "$.operator.methods[
|
|
39911
|
+
"$ref": "$.operator.methods[161].outputSchema.properties.work.properties.result"
|
|
39728
39912
|
}
|
|
39729
39913
|
},
|
|
39730
39914
|
{
|
|
39731
39915
|
"type": "array",
|
|
39732
39916
|
"items": {
|
|
39733
|
-
"$ref": "$.operator.methods[
|
|
39917
|
+
"$ref": "$.operator.methods[161].outputSchema.properties.work.properties.result"
|
|
39734
39918
|
}
|
|
39735
39919
|
}
|
|
39736
39920
|
]
|
|
@@ -39820,13 +40004,13 @@
|
|
|
39820
40004
|
{
|
|
39821
40005
|
"type": "object",
|
|
39822
40006
|
"additionalProperties": {
|
|
39823
|
-
"$ref": "$.operator.methods[
|
|
40007
|
+
"$ref": "$.operator.methods[161].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
39824
40008
|
}
|
|
39825
40009
|
},
|
|
39826
40010
|
{
|
|
39827
40011
|
"type": "array",
|
|
39828
40012
|
"items": {
|
|
39829
|
-
"$ref": "$.operator.methods[
|
|
40013
|
+
"$ref": "$.operator.methods[161].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
39830
40014
|
}
|
|
39831
40015
|
}
|
|
39832
40016
|
]
|
|
@@ -39949,13 +40133,13 @@
|
|
|
39949
40133
|
{
|
|
39950
40134
|
"type": "object",
|
|
39951
40135
|
"additionalProperties": {
|
|
39952
|
-
"$ref": "$.operator.methods[
|
|
40136
|
+
"$ref": "$.operator.methods[162].outputSchema.properties.work.items.properties.payload"
|
|
39953
40137
|
}
|
|
39954
40138
|
},
|
|
39955
40139
|
{
|
|
39956
40140
|
"type": "array",
|
|
39957
40141
|
"items": {
|
|
39958
|
-
"$ref": "$.operator.methods[
|
|
40142
|
+
"$ref": "$.operator.methods[162].outputSchema.properties.work.items.properties.payload"
|
|
39959
40143
|
}
|
|
39960
40144
|
}
|
|
39961
40145
|
]
|
|
@@ -40016,13 +40200,13 @@
|
|
|
40016
40200
|
{
|
|
40017
40201
|
"type": "object",
|
|
40018
40202
|
"additionalProperties": {
|
|
40019
|
-
"$ref": "$.operator.methods[
|
|
40203
|
+
"$ref": "$.operator.methods[162].outputSchema.properties.work.items.properties.result"
|
|
40020
40204
|
}
|
|
40021
40205
|
},
|
|
40022
40206
|
{
|
|
40023
40207
|
"type": "array",
|
|
40024
40208
|
"items": {
|
|
40025
|
-
"$ref": "$.operator.methods[
|
|
40209
|
+
"$ref": "$.operator.methods[162].outputSchema.properties.work.items.properties.result"
|
|
40026
40210
|
}
|
|
40027
40211
|
}
|
|
40028
40212
|
]
|
|
@@ -40112,13 +40296,13 @@
|
|
|
40112
40296
|
{
|
|
40113
40297
|
"type": "object",
|
|
40114
40298
|
"additionalProperties": {
|
|
40115
|
-
"$ref": "$.operator.methods[
|
|
40299
|
+
"$ref": "$.operator.methods[162].outputSchema.properties.work.items.properties.metadata.additionalProperties"
|
|
40116
40300
|
}
|
|
40117
40301
|
},
|
|
40118
40302
|
{
|
|
40119
40303
|
"type": "array",
|
|
40120
40304
|
"items": {
|
|
40121
|
-
"$ref": "$.operator.methods[
|
|
40305
|
+
"$ref": "$.operator.methods[162].outputSchema.properties.work.items.properties.metadata.additionalProperties"
|
|
40122
40306
|
}
|
|
40123
40307
|
}
|
|
40124
40308
|
]
|
|
@@ -40301,13 +40485,13 @@
|
|
|
40301
40485
|
{
|
|
40302
40486
|
"type": "object",
|
|
40303
40487
|
"additionalProperties": {
|
|
40304
|
-
"$ref": "$.operator.methods[
|
|
40488
|
+
"$ref": "$.operator.methods[164].inputSchema.properties.metadata.additionalProperties"
|
|
40305
40489
|
}
|
|
40306
40490
|
},
|
|
40307
40491
|
{
|
|
40308
40492
|
"type": "array",
|
|
40309
40493
|
"items": {
|
|
40310
|
-
"$ref": "$.operator.methods[
|
|
40494
|
+
"$ref": "$.operator.methods[164].inputSchema.properties.metadata.additionalProperties"
|
|
40311
40495
|
}
|
|
40312
40496
|
}
|
|
40313
40497
|
]
|
|
@@ -40433,13 +40617,13 @@
|
|
|
40433
40617
|
{
|
|
40434
40618
|
"type": "object",
|
|
40435
40619
|
"additionalProperties": {
|
|
40436
|
-
"$ref": "$.operator.methods[
|
|
40620
|
+
"$ref": "$.operator.methods[164].outputSchema.properties.metadata.additionalProperties"
|
|
40437
40621
|
}
|
|
40438
40622
|
},
|
|
40439
40623
|
{
|
|
40440
40624
|
"type": "array",
|
|
40441
40625
|
"items": {
|
|
40442
|
-
"$ref": "$.operator.methods[
|
|
40626
|
+
"$ref": "$.operator.methods[164].outputSchema.properties.metadata.additionalProperties"
|
|
40443
40627
|
}
|
|
40444
40628
|
}
|
|
40445
40629
|
]
|
|
@@ -40654,13 +40838,13 @@
|
|
|
40654
40838
|
{
|
|
40655
40839
|
"type": "object",
|
|
40656
40840
|
"additionalProperties": {
|
|
40657
|
-
"$ref": "$.operator.methods[
|
|
40841
|
+
"$ref": "$.operator.methods[166].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
40658
40842
|
}
|
|
40659
40843
|
},
|
|
40660
40844
|
{
|
|
40661
40845
|
"type": "array",
|
|
40662
40846
|
"items": {
|
|
40663
|
-
"$ref": "$.operator.methods[
|
|
40847
|
+
"$ref": "$.operator.methods[166].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
40664
40848
|
}
|
|
40665
40849
|
}
|
|
40666
40850
|
]
|
|
@@ -40762,13 +40946,13 @@
|
|
|
40762
40946
|
{
|
|
40763
40947
|
"type": "object",
|
|
40764
40948
|
"additionalProperties": {
|
|
40765
|
-
"$ref": "$.operator.methods[
|
|
40949
|
+
"$ref": "$.operator.methods[167].inputSchema.properties.metadata.additionalProperties"
|
|
40766
40950
|
}
|
|
40767
40951
|
},
|
|
40768
40952
|
{
|
|
40769
40953
|
"type": "array",
|
|
40770
40954
|
"items": {
|
|
40771
|
-
"$ref": "$.operator.methods[
|
|
40955
|
+
"$ref": "$.operator.methods[167].inputSchema.properties.metadata.additionalProperties"
|
|
40772
40956
|
}
|
|
40773
40957
|
}
|
|
40774
40958
|
]
|
|
@@ -40888,13 +41072,13 @@
|
|
|
40888
41072
|
{
|
|
40889
41073
|
"type": "object",
|
|
40890
41074
|
"additionalProperties": {
|
|
40891
|
-
"$ref": "$.operator.methods[
|
|
41075
|
+
"$ref": "$.operator.methods[167].outputSchema.properties.metadata.additionalProperties"
|
|
40892
41076
|
}
|
|
40893
41077
|
},
|
|
40894
41078
|
{
|
|
40895
41079
|
"type": "array",
|
|
40896
41080
|
"items": {
|
|
40897
|
-
"$ref": "$.operator.methods[
|
|
41081
|
+
"$ref": "$.operator.methods[167].outputSchema.properties.metadata.additionalProperties"
|
|
40898
41082
|
}
|
|
40899
41083
|
}
|
|
40900
41084
|
]
|
|
@@ -41067,13 +41251,13 @@
|
|
|
41067
41251
|
{
|
|
41068
41252
|
"type": "object",
|
|
41069
41253
|
"additionalProperties": {
|
|
41070
|
-
"$ref": "$.operator.methods[
|
|
41254
|
+
"$ref": "$.operator.methods[168].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
41071
41255
|
}
|
|
41072
41256
|
},
|
|
41073
41257
|
{
|
|
41074
41258
|
"type": "array",
|
|
41075
41259
|
"items": {
|
|
41076
|
-
"$ref": "$.operator.methods[
|
|
41260
|
+
"$ref": "$.operator.methods[168].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
41077
41261
|
}
|
|
41078
41262
|
}
|
|
41079
41263
|
]
|
|
@@ -41191,13 +41375,13 @@
|
|
|
41191
41375
|
{
|
|
41192
41376
|
"type": "object",
|
|
41193
41377
|
"additionalProperties": {
|
|
41194
|
-
"$ref": "$.operator.methods[
|
|
41378
|
+
"$ref": "$.operator.methods[169].outputSchema.properties.surfaces.items.properties.metadata.additionalProperties"
|
|
41195
41379
|
}
|
|
41196
41380
|
},
|
|
41197
41381
|
{
|
|
41198
41382
|
"type": "array",
|
|
41199
41383
|
"items": {
|
|
41200
|
-
"$ref": "$.operator.methods[
|
|
41384
|
+
"$ref": "$.operator.methods[169].outputSchema.properties.surfaces.items.properties.metadata.additionalProperties"
|
|
41201
41385
|
}
|
|
41202
41386
|
}
|
|
41203
41387
|
]
|
|
@@ -43254,13 +43438,13 @@
|
|
|
43254
43438
|
{
|
|
43255
43439
|
"type": "object",
|
|
43256
43440
|
"additionalProperties": {
|
|
43257
|
-
"$ref": "$.operator.methods[
|
|
43441
|
+
"$ref": "$.operator.methods[177].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
43258
43442
|
}
|
|
43259
43443
|
},
|
|
43260
43444
|
{
|
|
43261
43445
|
"type": "array",
|
|
43262
43446
|
"items": {
|
|
43263
|
-
"$ref": "$.operator.methods[
|
|
43447
|
+
"$ref": "$.operator.methods[177].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
43264
43448
|
}
|
|
43265
43449
|
}
|
|
43266
43450
|
]
|
|
@@ -43435,13 +43619,13 @@
|
|
|
43435
43619
|
{
|
|
43436
43620
|
"type": "object",
|
|
43437
43621
|
"additionalProperties": {
|
|
43438
|
-
"$ref": "$.operator.methods[
|
|
43622
|
+
"$ref": "$.operator.methods[178].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
43439
43623
|
}
|
|
43440
43624
|
},
|
|
43441
43625
|
{
|
|
43442
43626
|
"type": "array",
|
|
43443
43627
|
"items": {
|
|
43444
|
-
"$ref": "$.operator.methods[
|
|
43628
|
+
"$ref": "$.operator.methods[178].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
43445
43629
|
}
|
|
43446
43630
|
}
|
|
43447
43631
|
]
|
|
@@ -43727,13 +43911,13 @@
|
|
|
43727
43911
|
{
|
|
43728
43912
|
"type": "object",
|
|
43729
43913
|
"additionalProperties": {
|
|
43730
|
-
"$ref": "$.operator.methods[
|
|
43914
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
43731
43915
|
}
|
|
43732
43916
|
},
|
|
43733
43917
|
{
|
|
43734
43918
|
"type": "array",
|
|
43735
43919
|
"items": {
|
|
43736
|
-
"$ref": "$.operator.methods[
|
|
43920
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
43737
43921
|
}
|
|
43738
43922
|
}
|
|
43739
43923
|
]
|
|
@@ -43820,13 +44004,13 @@
|
|
|
43820
44004
|
{
|
|
43821
44005
|
"type": "object",
|
|
43822
44006
|
"additionalProperties": {
|
|
43823
|
-
"$ref": "$.operator.methods[
|
|
44007
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
43824
44008
|
}
|
|
43825
44009
|
},
|
|
43826
44010
|
{
|
|
43827
44011
|
"type": "array",
|
|
43828
44012
|
"items": {
|
|
43829
|
-
"$ref": "$.operator.methods[
|
|
44013
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
43830
44014
|
}
|
|
43831
44015
|
}
|
|
43832
44016
|
]
|
|
@@ -43930,13 +44114,13 @@
|
|
|
43930
44114
|
{
|
|
43931
44115
|
"type": "object",
|
|
43932
44116
|
"additionalProperties": {
|
|
43933
|
-
"$ref": "$.operator.methods[
|
|
44117
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
43934
44118
|
}
|
|
43935
44119
|
},
|
|
43936
44120
|
{
|
|
43937
44121
|
"type": "array",
|
|
43938
44122
|
"items": {
|
|
43939
|
-
"$ref": "$.operator.methods[
|
|
44123
|
+
"$ref": "$.operator.methods[179].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
43940
44124
|
}
|
|
43941
44125
|
}
|
|
43942
44126
|
]
|
|
@@ -44238,13 +44422,13 @@
|
|
|
44238
44422
|
{
|
|
44239
44423
|
"type": "object",
|
|
44240
44424
|
"additionalProperties": {
|
|
44241
|
-
"$ref": "$.operator.methods[
|
|
44425
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
44242
44426
|
}
|
|
44243
44427
|
},
|
|
44244
44428
|
{
|
|
44245
44429
|
"type": "array",
|
|
44246
44430
|
"items": {
|
|
44247
|
-
"$ref": "$.operator.methods[
|
|
44431
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
44248
44432
|
}
|
|
44249
44433
|
}
|
|
44250
44434
|
]
|
|
@@ -44328,13 +44512,13 @@
|
|
|
44328
44512
|
{
|
|
44329
44513
|
"type": "object",
|
|
44330
44514
|
"additionalProperties": {
|
|
44331
|
-
"$ref": "$.operator.methods[
|
|
44515
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
44332
44516
|
}
|
|
44333
44517
|
},
|
|
44334
44518
|
{
|
|
44335
44519
|
"type": "array",
|
|
44336
44520
|
"items": {
|
|
44337
|
-
"$ref": "$.operator.methods[
|
|
44521
|
+
"$ref": "$.operator.methods[180].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
44338
44522
|
}
|
|
44339
44523
|
}
|
|
44340
44524
|
]
|
|
@@ -44485,13 +44669,13 @@
|
|
|
44485
44669
|
{
|
|
44486
44670
|
"type": "object",
|
|
44487
44671
|
"additionalProperties": {
|
|
44488
|
-
"$ref": "$.operator.methods[
|
|
44672
|
+
"$ref": "$.operator.methods[181].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
44489
44673
|
}
|
|
44490
44674
|
},
|
|
44491
44675
|
{
|
|
44492
44676
|
"type": "array",
|
|
44493
44677
|
"items": {
|
|
44494
|
-
"$ref": "$.operator.methods[
|
|
44678
|
+
"$ref": "$.operator.methods[181].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
44495
44679
|
}
|
|
44496
44680
|
}
|
|
44497
44681
|
]
|
|
@@ -44890,13 +45074,13 @@
|
|
|
44890
45074
|
{
|
|
44891
45075
|
"type": "object",
|
|
44892
45076
|
"additionalProperties": {
|
|
44893
|
-
"$ref": "$.operator.methods[
|
|
45077
|
+
"$ref": "$.operator.methods[182].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
44894
45078
|
}
|
|
44895
45079
|
},
|
|
44896
45080
|
{
|
|
44897
45081
|
"type": "array",
|
|
44898
45082
|
"items": {
|
|
44899
|
-
"$ref": "$.operator.methods[
|
|
45083
|
+
"$ref": "$.operator.methods[182].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
44900
45084
|
}
|
|
44901
45085
|
}
|
|
44902
45086
|
]
|
|
@@ -44983,13 +45167,13 @@
|
|
|
44983
45167
|
{
|
|
44984
45168
|
"type": "object",
|
|
44985
45169
|
"additionalProperties": {
|
|
44986
|
-
"$ref": "$.operator.methods[
|
|
45170
|
+
"$ref": "$.operator.methods[182].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
44987
45171
|
}
|
|
44988
45172
|
},
|
|
44989
45173
|
{
|
|
44990
45174
|
"type": "array",
|
|
44991
45175
|
"items": {
|
|
44992
|
-
"$ref": "$.operator.methods[
|
|
45176
|
+
"$ref": "$.operator.methods[182].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
44993
45177
|
}
|
|
44994
45178
|
}
|
|
44995
45179
|
]
|
|
@@ -45093,13 +45277,13 @@
|
|
|
45093
45277
|
{
|
|
45094
45278
|
"type": "object",
|
|
45095
45279
|
"additionalProperties": {
|
|
45096
|
-
"$ref": "$.operator.methods[
|
|
45280
|
+
"$ref": "$.operator.methods[182].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
45097
45281
|
}
|
|
45098
45282
|
},
|
|
45099
45283
|
{
|
|
45100
45284
|
"type": "array",
|
|
45101
45285
|
"items": {
|
|
45102
|
-
"$ref": "$.operator.methods[
|
|
45286
|
+
"$ref": "$.operator.methods[182].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
45103
45287
|
}
|
|
45104
45288
|
}
|
|
45105
45289
|
]
|
|
@@ -45404,13 +45588,13 @@
|
|
|
45404
45588
|
{
|
|
45405
45589
|
"type": "object",
|
|
45406
45590
|
"additionalProperties": {
|
|
45407
|
-
"$ref": "$.operator.methods[
|
|
45591
|
+
"$ref": "$.operator.methods[183].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
45408
45592
|
}
|
|
45409
45593
|
},
|
|
45410
45594
|
{
|
|
45411
45595
|
"type": "array",
|
|
45412
45596
|
"items": {
|
|
45413
|
-
"$ref": "$.operator.methods[
|
|
45597
|
+
"$ref": "$.operator.methods[183].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
45414
45598
|
}
|
|
45415
45599
|
}
|
|
45416
45600
|
]
|
|
@@ -45521,13 +45705,13 @@
|
|
|
45521
45705
|
{
|
|
45522
45706
|
"type": "object",
|
|
45523
45707
|
"additionalProperties": {
|
|
45524
|
-
"$ref": "$.operator.methods[
|
|
45708
|
+
"$ref": "$.operator.methods[183].outputSchema.properties.inputs.items.properties.metadata.additionalProperties"
|
|
45525
45709
|
}
|
|
45526
45710
|
},
|
|
45527
45711
|
{
|
|
45528
45712
|
"type": "array",
|
|
45529
45713
|
"items": {
|
|
45530
|
-
"$ref": "$.operator.methods[
|
|
45714
|
+
"$ref": "$.operator.methods[183].outputSchema.properties.inputs.items.properties.metadata.additionalProperties"
|
|
45531
45715
|
}
|
|
45532
45716
|
}
|
|
45533
45717
|
]
|
|
@@ -45900,13 +46084,13 @@
|
|
|
45900
46084
|
{
|
|
45901
46085
|
"type": "object",
|
|
45902
46086
|
"additionalProperties": {
|
|
45903
|
-
"$ref": "$.operator.methods[
|
|
46087
|
+
"$ref": "$.operator.methods[185].outputSchema.properties.sessions.items.properties.metadata.additionalProperties"
|
|
45904
46088
|
}
|
|
45905
46089
|
},
|
|
45906
46090
|
{
|
|
45907
46091
|
"type": "array",
|
|
45908
46092
|
"items": {
|
|
45909
|
-
"$ref": "$.operator.methods[
|
|
46093
|
+
"$ref": "$.operator.methods[185].outputSchema.properties.sessions.items.properties.metadata.additionalProperties"
|
|
45910
46094
|
}
|
|
45911
46095
|
}
|
|
45912
46096
|
]
|
|
@@ -46194,13 +46378,13 @@
|
|
|
46194
46378
|
{
|
|
46195
46379
|
"type": "object",
|
|
46196
46380
|
"additionalProperties": {
|
|
46197
|
-
"$ref": "$.operator.methods[
|
|
46381
|
+
"$ref": "$.operator.methods[186].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
46198
46382
|
}
|
|
46199
46383
|
},
|
|
46200
46384
|
{
|
|
46201
46385
|
"type": "array",
|
|
46202
46386
|
"items": {
|
|
46203
|
-
"$ref": "$.operator.methods[
|
|
46387
|
+
"$ref": "$.operator.methods[186].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
46204
46388
|
}
|
|
46205
46389
|
}
|
|
46206
46390
|
]
|
|
@@ -46287,13 +46471,13 @@
|
|
|
46287
46471
|
{
|
|
46288
46472
|
"type": "object",
|
|
46289
46473
|
"additionalProperties": {
|
|
46290
|
-
"$ref": "$.operator.methods[
|
|
46474
|
+
"$ref": "$.operator.methods[186].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
46291
46475
|
}
|
|
46292
46476
|
},
|
|
46293
46477
|
{
|
|
46294
46478
|
"type": "array",
|
|
46295
46479
|
"items": {
|
|
46296
|
-
"$ref": "$.operator.methods[
|
|
46480
|
+
"$ref": "$.operator.methods[186].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
46297
46481
|
}
|
|
46298
46482
|
}
|
|
46299
46483
|
]
|
|
@@ -46397,13 +46581,13 @@
|
|
|
46397
46581
|
{
|
|
46398
46582
|
"type": "object",
|
|
46399
46583
|
"additionalProperties": {
|
|
46400
|
-
"$ref": "$.operator.methods[
|
|
46584
|
+
"$ref": "$.operator.methods[186].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
46401
46585
|
}
|
|
46402
46586
|
},
|
|
46403
46587
|
{
|
|
46404
46588
|
"type": "array",
|
|
46405
46589
|
"items": {
|
|
46406
|
-
"$ref": "$.operator.methods[
|
|
46590
|
+
"$ref": "$.operator.methods[186].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
46407
46591
|
}
|
|
46408
46592
|
}
|
|
46409
46593
|
]
|
|
@@ -46711,13 +46895,13 @@
|
|
|
46711
46895
|
{
|
|
46712
46896
|
"type": "object",
|
|
46713
46897
|
"additionalProperties": {
|
|
46714
|
-
"$ref": "$.operator.methods[
|
|
46898
|
+
"$ref": "$.operator.methods[187].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
46715
46899
|
}
|
|
46716
46900
|
},
|
|
46717
46901
|
{
|
|
46718
46902
|
"type": "array",
|
|
46719
46903
|
"items": {
|
|
46720
|
-
"$ref": "$.operator.methods[
|
|
46904
|
+
"$ref": "$.operator.methods[187].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
46721
46905
|
}
|
|
46722
46906
|
}
|
|
46723
46907
|
]
|
|
@@ -46801,13 +46985,13 @@
|
|
|
46801
46985
|
{
|
|
46802
46986
|
"type": "object",
|
|
46803
46987
|
"additionalProperties": {
|
|
46804
|
-
"$ref": "$.operator.methods[
|
|
46988
|
+
"$ref": "$.operator.methods[187].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
46805
46989
|
}
|
|
46806
46990
|
},
|
|
46807
46991
|
{
|
|
46808
46992
|
"type": "array",
|
|
46809
46993
|
"items": {
|
|
46810
|
-
"$ref": "$.operator.methods[
|
|
46994
|
+
"$ref": "$.operator.methods[187].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
46811
46995
|
}
|
|
46812
46996
|
}
|
|
46813
46997
|
]
|
|
@@ -46976,13 +47160,13 @@
|
|
|
46976
47160
|
{
|
|
46977
47161
|
"type": "object",
|
|
46978
47162
|
"additionalProperties": {
|
|
46979
|
-
"$ref": "$.operator.methods[
|
|
47163
|
+
"$ref": "$.operator.methods[188].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
46980
47164
|
}
|
|
46981
47165
|
},
|
|
46982
47166
|
{
|
|
46983
47167
|
"type": "array",
|
|
46984
47168
|
"items": {
|
|
46985
|
-
"$ref": "$.operator.methods[
|
|
47169
|
+
"$ref": "$.operator.methods[188].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
46986
47170
|
}
|
|
46987
47171
|
}
|
|
46988
47172
|
]
|
|
@@ -47271,13 +47455,13 @@
|
|
|
47271
47455
|
{
|
|
47272
47456
|
"type": "object",
|
|
47273
47457
|
"additionalProperties": {
|
|
47274
|
-
"$ref": "$.operator.methods[
|
|
47458
|
+
"$ref": "$.operator.methods[189].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
47275
47459
|
}
|
|
47276
47460
|
},
|
|
47277
47461
|
{
|
|
47278
47462
|
"type": "array",
|
|
47279
47463
|
"items": {
|
|
47280
|
-
"$ref": "$.operator.methods[
|
|
47464
|
+
"$ref": "$.operator.methods[189].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
47281
47465
|
}
|
|
47282
47466
|
}
|
|
47283
47467
|
]
|
|
@@ -47364,13 +47548,13 @@
|
|
|
47364
47548
|
{
|
|
47365
47549
|
"type": "object",
|
|
47366
47550
|
"additionalProperties": {
|
|
47367
|
-
"$ref": "$.operator.methods[
|
|
47551
|
+
"$ref": "$.operator.methods[189].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
47368
47552
|
}
|
|
47369
47553
|
},
|
|
47370
47554
|
{
|
|
47371
47555
|
"type": "array",
|
|
47372
47556
|
"items": {
|
|
47373
|
-
"$ref": "$.operator.methods[
|
|
47557
|
+
"$ref": "$.operator.methods[189].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
47374
47558
|
}
|
|
47375
47559
|
}
|
|
47376
47560
|
]
|
|
@@ -47474,13 +47658,13 @@
|
|
|
47474
47658
|
{
|
|
47475
47659
|
"type": "object",
|
|
47476
47660
|
"additionalProperties": {
|
|
47477
|
-
"$ref": "$.operator.methods[
|
|
47661
|
+
"$ref": "$.operator.methods[189].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
47478
47662
|
}
|
|
47479
47663
|
},
|
|
47480
47664
|
{
|
|
47481
47665
|
"type": "array",
|
|
47482
47666
|
"items": {
|
|
47483
|
-
"$ref": "$.operator.methods[
|
|
47667
|
+
"$ref": "$.operator.methods[189].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
47484
47668
|
}
|
|
47485
47669
|
}
|
|
47486
47670
|
]
|
|
@@ -47727,13 +47911,13 @@
|
|
|
47727
47911
|
{
|
|
47728
47912
|
"type": "object",
|
|
47729
47913
|
"additionalProperties": {
|
|
47730
|
-
"$ref": "$.operator.methods[
|
|
47914
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.conflicts.items.properties.localValue"
|
|
47731
47915
|
}
|
|
47732
47916
|
},
|
|
47733
47917
|
{
|
|
47734
47918
|
"type": "array",
|
|
47735
47919
|
"items": {
|
|
47736
|
-
"$ref": "$.operator.methods[
|
|
47920
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.conflicts.items.properties.localValue"
|
|
47737
47921
|
}
|
|
47738
47922
|
}
|
|
47739
47923
|
]
|
|
@@ -47755,13 +47939,13 @@
|
|
|
47755
47939
|
{
|
|
47756
47940
|
"type": "object",
|
|
47757
47941
|
"additionalProperties": {
|
|
47758
|
-
"$ref": "$.operator.methods[
|
|
47942
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.conflicts.items.properties.incomingValue"
|
|
47759
47943
|
}
|
|
47760
47944
|
},
|
|
47761
47945
|
{
|
|
47762
47946
|
"type": "array",
|
|
47763
47947
|
"items": {
|
|
47764
|
-
"$ref": "$.operator.methods[
|
|
47948
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.conflicts.items.properties.incomingValue"
|
|
47765
47949
|
}
|
|
47766
47950
|
}
|
|
47767
47951
|
]
|
|
@@ -47864,13 +48048,13 @@
|
|
|
47864
48048
|
{
|
|
47865
48049
|
"type": "object",
|
|
47866
48050
|
"additionalProperties": {
|
|
47867
|
-
"$ref": "$.operator.methods[
|
|
48051
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.previousValue"
|
|
47868
48052
|
}
|
|
47869
48053
|
},
|
|
47870
48054
|
{
|
|
47871
48055
|
"type": "array",
|
|
47872
48056
|
"items": {
|
|
47873
|
-
"$ref": "$.operator.methods[
|
|
48057
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.previousValue"
|
|
47874
48058
|
}
|
|
47875
48059
|
}
|
|
47876
48060
|
]
|
|
@@ -47892,13 +48076,13 @@
|
|
|
47892
48076
|
{
|
|
47893
48077
|
"type": "object",
|
|
47894
48078
|
"additionalProperties": {
|
|
47895
|
-
"$ref": "$.operator.methods[
|
|
48079
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.nextValue"
|
|
47896
48080
|
}
|
|
47897
48081
|
},
|
|
47898
48082
|
{
|
|
47899
48083
|
"type": "array",
|
|
47900
48084
|
"items": {
|
|
47901
|
-
"$ref": "$.operator.methods[
|
|
48085
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.nextValue"
|
|
47902
48086
|
}
|
|
47903
48087
|
}
|
|
47904
48088
|
]
|
|
@@ -47982,13 +48166,13 @@
|
|
|
47982
48166
|
{
|
|
47983
48167
|
"type": "object",
|
|
47984
48168
|
"additionalProperties": {
|
|
47985
|
-
"$ref": "$.operator.methods[
|
|
48169
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.rollbackHistory.items.properties.previousValues.additionalProperties"
|
|
47986
48170
|
}
|
|
47987
48171
|
},
|
|
47988
48172
|
{
|
|
47989
48173
|
"type": "array",
|
|
47990
48174
|
"items": {
|
|
47991
|
-
"$ref": "$.operator.methods[
|
|
48175
|
+
"$ref": "$.operator.methods[190].outputSchema.anyOf[1].properties.rollbackHistory.items.properties.previousValues.additionalProperties"
|
|
47992
48176
|
}
|
|
47993
48177
|
}
|
|
47994
48178
|
]
|
|
@@ -48189,13 +48373,13 @@
|
|
|
48189
48373
|
{
|
|
48190
48374
|
"type": "object",
|
|
48191
48375
|
"additionalProperties": {
|
|
48192
|
-
"$ref": "$.operator.methods[
|
|
48376
|
+
"$ref": "$.operator.methods[191].outputSchema.properties.task.properties.result"
|
|
48193
48377
|
}
|
|
48194
48378
|
},
|
|
48195
48379
|
{
|
|
48196
48380
|
"type": "array",
|
|
48197
48381
|
"items": {
|
|
48198
|
-
"$ref": "$.operator.methods[
|
|
48382
|
+
"$ref": "$.operator.methods[191].outputSchema.properties.task.properties.result"
|
|
48199
48383
|
}
|
|
48200
48384
|
}
|
|
48201
48385
|
]
|
|
@@ -48421,13 +48605,13 @@
|
|
|
48421
48605
|
{
|
|
48422
48606
|
"type": "object",
|
|
48423
48607
|
"additionalProperties": {
|
|
48424
|
-
"$ref": "$.operator.methods[
|
|
48608
|
+
"$ref": "$.operator.methods[192].inputSchema.properties.metadata.additionalProperties"
|
|
48425
48609
|
}
|
|
48426
48610
|
},
|
|
48427
48611
|
{
|
|
48428
48612
|
"type": "array",
|
|
48429
48613
|
"items": {
|
|
48430
|
-
"$ref": "$.operator.methods[
|
|
48614
|
+
"$ref": "$.operator.methods[192].inputSchema.properties.metadata.additionalProperties"
|
|
48431
48615
|
}
|
|
48432
48616
|
}
|
|
48433
48617
|
]
|
|
@@ -48654,13 +48838,13 @@
|
|
|
48654
48838
|
{
|
|
48655
48839
|
"type": "object",
|
|
48656
48840
|
"additionalProperties": {
|
|
48657
|
-
"$ref": "$.operator.methods[
|
|
48841
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.task.properties.result"
|
|
48658
48842
|
}
|
|
48659
48843
|
},
|
|
48660
48844
|
{
|
|
48661
48845
|
"type": "array",
|
|
48662
48846
|
"items": {
|
|
48663
|
-
"$ref": "$.operator.methods[
|
|
48847
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.task.properties.result"
|
|
48664
48848
|
}
|
|
48665
48849
|
}
|
|
48666
48850
|
]
|
|
@@ -48994,13 +49178,13 @@
|
|
|
48994
49178
|
{
|
|
48995
49179
|
"type": "object",
|
|
48996
49180
|
"additionalProperties": {
|
|
48997
|
-
"$ref": "$.operator.methods[
|
|
49181
|
+
"$ref": "$.operator.methods[195].outputSchema.properties.task.properties.result"
|
|
48998
49182
|
}
|
|
48999
49183
|
},
|
|
49000
49184
|
{
|
|
49001
49185
|
"type": "array",
|
|
49002
49186
|
"items": {
|
|
49003
|
-
"$ref": "$.operator.methods[
|
|
49187
|
+
"$ref": "$.operator.methods[195].outputSchema.properties.task.properties.result"
|
|
49004
49188
|
}
|
|
49005
49189
|
}
|
|
49006
49190
|
]
|
|
@@ -49288,13 +49472,13 @@
|
|
|
49288
49472
|
{
|
|
49289
49473
|
"type": "object",
|
|
49290
49474
|
"additionalProperties": {
|
|
49291
|
-
"$ref": "$.operator.methods[
|
|
49475
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.items.items.properties.payload"
|
|
49292
49476
|
}
|
|
49293
49477
|
},
|
|
49294
49478
|
{
|
|
49295
49479
|
"type": "array",
|
|
49296
49480
|
"items": {
|
|
49297
|
-
"$ref": "$.operator.methods[
|
|
49481
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.items.items.properties.payload"
|
|
49298
49482
|
}
|
|
49299
49483
|
}
|
|
49300
49484
|
]
|
|
@@ -49318,13 +49502,13 @@
|
|
|
49318
49502
|
{
|
|
49319
49503
|
"type": "object",
|
|
49320
49504
|
"additionalProperties": {
|
|
49321
|
-
"$ref": "$.operator.methods[
|
|
49505
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
49322
49506
|
}
|
|
49323
49507
|
},
|
|
49324
49508
|
{
|
|
49325
49509
|
"type": "array",
|
|
49326
49510
|
"items": {
|
|
49327
|
-
"$ref": "$.operator.methods[
|
|
49511
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
49328
49512
|
}
|
|
49329
49513
|
}
|
|
49330
49514
|
]
|
|
@@ -49633,13 +49817,13 @@
|
|
|
49633
49817
|
{
|
|
49634
49818
|
"type": "object",
|
|
49635
49819
|
"additionalProperties": {
|
|
49636
|
-
"$ref": "$.operator.methods[
|
|
49820
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.items.items.properties.payload"
|
|
49637
49821
|
}
|
|
49638
49822
|
},
|
|
49639
49823
|
{
|
|
49640
49824
|
"type": "array",
|
|
49641
49825
|
"items": {
|
|
49642
|
-
"$ref": "$.operator.methods[
|
|
49826
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.items.items.properties.payload"
|
|
49643
49827
|
}
|
|
49644
49828
|
}
|
|
49645
49829
|
]
|
|
@@ -49663,13 +49847,13 @@
|
|
|
49663
49847
|
{
|
|
49664
49848
|
"type": "object",
|
|
49665
49849
|
"additionalProperties": {
|
|
49666
|
-
"$ref": "$.operator.methods[
|
|
49850
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
49667
49851
|
}
|
|
49668
49852
|
},
|
|
49669
49853
|
{
|
|
49670
49854
|
"type": "array",
|
|
49671
49855
|
"items": {
|
|
49672
|
-
"$ref": "$.operator.methods[
|
|
49856
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
49673
49857
|
}
|
|
49674
49858
|
}
|
|
49675
49859
|
]
|
|
@@ -50236,12 +50420,12 @@
|
|
|
50236
50420
|
"type": "null"
|
|
50237
50421
|
},
|
|
50238
50422
|
{
|
|
50239
|
-
"$ref": "$.operator.methods[
|
|
50423
|
+
"$ref": "$.operator.methods[200].outputSchema.properties.resourceLogs.items"
|
|
50240
50424
|
},
|
|
50241
50425
|
{
|
|
50242
50426
|
"type": "array",
|
|
50243
50427
|
"items": {
|
|
50244
|
-
"$ref": "$.operator.methods[
|
|
50428
|
+
"$ref": "$.operator.methods[200].outputSchema.properties.resourceLogs.items.additionalProperties"
|
|
50245
50429
|
}
|
|
50246
50430
|
}
|
|
50247
50431
|
]
|
|
@@ -50356,12 +50540,12 @@
|
|
|
50356
50540
|
"type": "null"
|
|
50357
50541
|
},
|
|
50358
50542
|
{
|
|
50359
|
-
"$ref": "$.operator.methods[
|
|
50543
|
+
"$ref": "$.operator.methods[201].outputSchema.properties.resourceMetrics.items"
|
|
50360
50544
|
},
|
|
50361
50545
|
{
|
|
50362
50546
|
"type": "array",
|
|
50363
50547
|
"items": {
|
|
50364
|
-
"$ref": "$.operator.methods[
|
|
50548
|
+
"$ref": "$.operator.methods[201].outputSchema.properties.resourceMetrics.items.additionalProperties"
|
|
50365
50549
|
}
|
|
50366
50550
|
}
|
|
50367
50551
|
]
|
|
@@ -50476,12 +50660,12 @@
|
|
|
50476
50660
|
"type": "null"
|
|
50477
50661
|
},
|
|
50478
50662
|
{
|
|
50479
|
-
"$ref": "$.operator.methods[
|
|
50663
|
+
"$ref": "$.operator.methods[202].outputSchema.properties.resourceSpans.items"
|
|
50480
50664
|
},
|
|
50481
50665
|
{
|
|
50482
50666
|
"type": "array",
|
|
50483
50667
|
"items": {
|
|
50484
|
-
"$ref": "$.operator.methods[
|
|
50668
|
+
"$ref": "$.operator.methods[202].outputSchema.properties.resourceSpans.items.additionalProperties"
|
|
50485
50669
|
}
|
|
50486
50670
|
}
|
|
50487
50671
|
]
|
|
@@ -50968,13 +51152,13 @@
|
|
|
50968
51152
|
{
|
|
50969
51153
|
"type": "object",
|
|
50970
51154
|
"additionalProperties": {
|
|
50971
|
-
"$ref": "$.operator.methods[
|
|
51155
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.events.properties.items.items.properties.payload"
|
|
50972
51156
|
}
|
|
50973
51157
|
},
|
|
50974
51158
|
{
|
|
50975
51159
|
"type": "array",
|
|
50976
51160
|
"items": {
|
|
50977
|
-
"$ref": "$.operator.methods[
|
|
51161
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.events.properties.items.items.properties.payload"
|
|
50978
51162
|
}
|
|
50979
51163
|
}
|
|
50980
51164
|
]
|
|
@@ -50998,13 +51182,13 @@
|
|
|
50998
51182
|
{
|
|
50999
51183
|
"type": "object",
|
|
51000
51184
|
"additionalProperties": {
|
|
51001
|
-
"$ref": "$.operator.methods[
|
|
51185
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.events.properties.items.items.properties.attributes.additionalProperties"
|
|
51002
51186
|
}
|
|
51003
51187
|
},
|
|
51004
51188
|
{
|
|
51005
51189
|
"type": "array",
|
|
51006
51190
|
"items": {
|
|
51007
|
-
"$ref": "$.operator.methods[
|
|
51191
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.events.properties.items.items.properties.attributes.additionalProperties"
|
|
51008
51192
|
}
|
|
51009
51193
|
}
|
|
51010
51194
|
]
|
|
@@ -51233,13 +51417,13 @@
|
|
|
51233
51417
|
{
|
|
51234
51418
|
"type": "object",
|
|
51235
51419
|
"additionalProperties": {
|
|
51236
|
-
"$ref": "$.operator.methods[
|
|
51420
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.errors.properties.items.items.properties.payload"
|
|
51237
51421
|
}
|
|
51238
51422
|
},
|
|
51239
51423
|
{
|
|
51240
51424
|
"type": "array",
|
|
51241
51425
|
"items": {
|
|
51242
|
-
"$ref": "$.operator.methods[
|
|
51426
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.errors.properties.items.items.properties.payload"
|
|
51243
51427
|
}
|
|
51244
51428
|
}
|
|
51245
51429
|
]
|
|
@@ -51263,13 +51447,13 @@
|
|
|
51263
51447
|
{
|
|
51264
51448
|
"type": "object",
|
|
51265
51449
|
"additionalProperties": {
|
|
51266
|
-
"$ref": "$.operator.methods[
|
|
51450
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.errors.properties.items.items.properties.attributes.additionalProperties"
|
|
51267
51451
|
}
|
|
51268
51452
|
},
|
|
51269
51453
|
{
|
|
51270
51454
|
"type": "array",
|
|
51271
51455
|
"items": {
|
|
51272
|
-
"$ref": "$.operator.methods[
|
|
51456
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.errors.properties.items.items.properties.attributes.additionalProperties"
|
|
51273
51457
|
}
|
|
51274
51458
|
}
|
|
51275
51459
|
]
|
|
@@ -51496,13 +51680,13 @@
|
|
|
51496
51680
|
{
|
|
51497
51681
|
"type": "object",
|
|
51498
51682
|
"additionalProperties": {
|
|
51499
|
-
"$ref": "$.operator.methods[
|
|
51683
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.spans.properties.items.items.properties.attributes.additionalProperties"
|
|
51500
51684
|
}
|
|
51501
51685
|
},
|
|
51502
51686
|
{
|
|
51503
51687
|
"type": "array",
|
|
51504
51688
|
"items": {
|
|
51505
|
-
"$ref": "$.operator.methods[
|
|
51689
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.spans.properties.items.items.properties.attributes.additionalProperties"
|
|
51506
51690
|
}
|
|
51507
51691
|
}
|
|
51508
51692
|
]
|
|
@@ -51538,13 +51722,13 @@
|
|
|
51538
51722
|
{
|
|
51539
51723
|
"type": "object",
|
|
51540
51724
|
"additionalProperties": {
|
|
51541
|
-
"$ref": "$.operator.methods[
|
|
51725
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.spans.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
51542
51726
|
}
|
|
51543
51727
|
},
|
|
51544
51728
|
{
|
|
51545
51729
|
"type": "array",
|
|
51546
51730
|
"items": {
|
|
51547
|
-
"$ref": "$.operator.methods[
|
|
51731
|
+
"$ref": "$.operator.methods[203].outputSchema.properties.recent.properties.spans.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
51548
51732
|
}
|
|
51549
51733
|
}
|
|
51550
51734
|
]
|
|
@@ -51990,13 +52174,13 @@
|
|
|
51990
52174
|
{
|
|
51991
52175
|
"type": "object",
|
|
51992
52176
|
"additionalProperties": {
|
|
51993
|
-
"$ref": "$.operator.methods[
|
|
52177
|
+
"$ref": "$.operator.methods[205].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
51994
52178
|
}
|
|
51995
52179
|
},
|
|
51996
52180
|
{
|
|
51997
52181
|
"type": "array",
|
|
51998
52182
|
"items": {
|
|
51999
|
-
"$ref": "$.operator.methods[
|
|
52183
|
+
"$ref": "$.operator.methods[205].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
52000
52184
|
}
|
|
52001
52185
|
}
|
|
52002
52186
|
]
|
|
@@ -52032,13 +52216,13 @@
|
|
|
52032
52216
|
{
|
|
52033
52217
|
"type": "object",
|
|
52034
52218
|
"additionalProperties": {
|
|
52035
|
-
"$ref": "$.operator.methods[
|
|
52219
|
+
"$ref": "$.operator.methods[205].outputSchema.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
52036
52220
|
}
|
|
52037
52221
|
},
|
|
52038
52222
|
{
|
|
52039
52223
|
"type": "array",
|
|
52040
52224
|
"items": {
|
|
52041
|
-
"$ref": "$.operator.methods[
|
|
52225
|
+
"$ref": "$.operator.methods[205].outputSchema.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
52042
52226
|
}
|
|
52043
52227
|
}
|
|
52044
52228
|
]
|
|
@@ -52247,13 +52431,13 @@
|
|
|
52247
52431
|
{
|
|
52248
52432
|
"type": "object",
|
|
52249
52433
|
"additionalProperties": {
|
|
52250
|
-
"$ref": "$.operator.methods[
|
|
52434
|
+
"$ref": "$.operator.methods[207].inputSchema.properties.metadata.additionalProperties"
|
|
52251
52435
|
}
|
|
52252
52436
|
},
|
|
52253
52437
|
{
|
|
52254
52438
|
"type": "array",
|
|
52255
52439
|
"items": {
|
|
52256
|
-
"$ref": "$.operator.methods[
|
|
52440
|
+
"$ref": "$.operator.methods[207].inputSchema.properties.metadata.additionalProperties"
|
|
52257
52441
|
}
|
|
52258
52442
|
}
|
|
52259
52443
|
]
|
|
@@ -52305,13 +52489,13 @@
|
|
|
52305
52489
|
{
|
|
52306
52490
|
"type": "object",
|
|
52307
52491
|
"additionalProperties": {
|
|
52308
|
-
"$ref": "$.operator.methods[
|
|
52492
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.metadata.additionalProperties"
|
|
52309
52493
|
}
|
|
52310
52494
|
},
|
|
52311
52495
|
{
|
|
52312
52496
|
"type": "array",
|
|
52313
52497
|
"items": {
|
|
52314
|
-
"$ref": "$.operator.methods[
|
|
52498
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.metadata.additionalProperties"
|
|
52315
52499
|
}
|
|
52316
52500
|
}
|
|
52317
52501
|
]
|
|
@@ -52405,13 +52589,13 @@
|
|
|
52405
52589
|
{
|
|
52406
52590
|
"type": "object",
|
|
52407
52591
|
"additionalProperties": {
|
|
52408
|
-
"$ref": "$.operator.methods[
|
|
52592
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
52409
52593
|
}
|
|
52410
52594
|
},
|
|
52411
52595
|
{
|
|
52412
52596
|
"type": "array",
|
|
52413
52597
|
"items": {
|
|
52414
|
-
"$ref": "$.operator.methods[
|
|
52598
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
52415
52599
|
}
|
|
52416
52600
|
}
|
|
52417
52601
|
]
|
|
@@ -52507,13 +52691,13 @@
|
|
|
52507
52691
|
{
|
|
52508
52692
|
"type": "object",
|
|
52509
52693
|
"additionalProperties": {
|
|
52510
|
-
"$ref": "$.operator.methods[
|
|
52694
|
+
"$ref": "$.operator.methods[209].inputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
52511
52695
|
}
|
|
52512
52696
|
},
|
|
52513
52697
|
{
|
|
52514
52698
|
"type": "array",
|
|
52515
52699
|
"items": {
|
|
52516
|
-
"$ref": "$.operator.methods[
|
|
52700
|
+
"$ref": "$.operator.methods[209].inputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
52517
52701
|
}
|
|
52518
52702
|
}
|
|
52519
52703
|
]
|
|
@@ -52555,13 +52739,13 @@
|
|
|
52555
52739
|
{
|
|
52556
52740
|
"type": "object",
|
|
52557
52741
|
"additionalProperties": {
|
|
52558
|
-
"$ref": "$.operator.methods[
|
|
52742
|
+
"$ref": "$.operator.methods[209].inputSchema.properties.metadata.additionalProperties"
|
|
52559
52743
|
}
|
|
52560
52744
|
},
|
|
52561
52745
|
{
|
|
52562
52746
|
"type": "array",
|
|
52563
52747
|
"items": {
|
|
52564
|
-
"$ref": "$.operator.methods[
|
|
52748
|
+
"$ref": "$.operator.methods[209].inputSchema.properties.metadata.additionalProperties"
|
|
52565
52749
|
}
|
|
52566
52750
|
}
|
|
52567
52751
|
]
|
|
@@ -52628,13 +52812,13 @@
|
|
|
52628
52812
|
{
|
|
52629
52813
|
"type": "object",
|
|
52630
52814
|
"additionalProperties": {
|
|
52631
|
-
"$ref": "$.operator.methods[
|
|
52815
|
+
"$ref": "$.operator.methods[209].outputSchema.properties.metadata.additionalProperties"
|
|
52632
52816
|
}
|
|
52633
52817
|
},
|
|
52634
52818
|
{
|
|
52635
52819
|
"type": "array",
|
|
52636
52820
|
"items": {
|
|
52637
|
-
"$ref": "$.operator.methods[
|
|
52821
|
+
"$ref": "$.operator.methods[209].outputSchema.properties.metadata.additionalProperties"
|
|
52638
52822
|
}
|
|
52639
52823
|
}
|
|
52640
52824
|
]
|
|
@@ -52708,13 +52892,13 @@
|
|
|
52708
52892
|
{
|
|
52709
52893
|
"type": "object",
|
|
52710
52894
|
"additionalProperties": {
|
|
52711
|
-
"$ref": "$.operator.methods[
|
|
52895
|
+
"$ref": "$.operator.methods[210].inputSchema.properties.metadata.additionalProperties"
|
|
52712
52896
|
}
|
|
52713
52897
|
},
|
|
52714
52898
|
{
|
|
52715
52899
|
"type": "array",
|
|
52716
52900
|
"items": {
|
|
52717
|
-
"$ref": "$.operator.methods[
|
|
52901
|
+
"$ref": "$.operator.methods[210].inputSchema.properties.metadata.additionalProperties"
|
|
52718
52902
|
}
|
|
52719
52903
|
}
|
|
52720
52904
|
]
|
|
@@ -52772,13 +52956,13 @@
|
|
|
52772
52956
|
{
|
|
52773
52957
|
"type": "object",
|
|
52774
52958
|
"additionalProperties": {
|
|
52775
|
-
"$ref": "$.operator.methods[
|
|
52959
|
+
"$ref": "$.operator.methods[210].outputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
52776
52960
|
}
|
|
52777
52961
|
},
|
|
52778
52962
|
{
|
|
52779
52963
|
"type": "array",
|
|
52780
52964
|
"items": {
|
|
52781
|
-
"$ref": "$.operator.methods[
|
|
52965
|
+
"$ref": "$.operator.methods[210].outputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
52782
52966
|
}
|
|
52783
52967
|
}
|
|
52784
52968
|
]
|
|
@@ -52811,13 +52995,13 @@
|
|
|
52811
52995
|
{
|
|
52812
52996
|
"type": "object",
|
|
52813
52997
|
"additionalProperties": {
|
|
52814
|
-
"$ref": "$.operator.methods[
|
|
52998
|
+
"$ref": "$.operator.methods[210].outputSchema.properties.metadata.additionalProperties"
|
|
52815
52999
|
}
|
|
52816
53000
|
},
|
|
52817
53001
|
{
|
|
52818
53002
|
"type": "array",
|
|
52819
53003
|
"items": {
|
|
52820
|
-
"$ref": "$.operator.methods[
|
|
53004
|
+
"$ref": "$.operator.methods[210].outputSchema.properties.metadata.additionalProperties"
|
|
52821
53005
|
}
|
|
52822
53006
|
}
|
|
52823
53007
|
]
|
|
@@ -52833,6 +53017,106 @@
|
|
|
52833
53017
|
},
|
|
52834
53018
|
"invokable": true
|
|
52835
53019
|
},
|
|
53020
|
+
{
|
|
53021
|
+
"id": "voice.tts.stream",
|
|
53022
|
+
"title": "Stream Text To Speech",
|
|
53023
|
+
"description": "Synthesize audio as streamed bytes through a registered streaming voice provider.",
|
|
53024
|
+
"category": "voice",
|
|
53025
|
+
"source": "builtin",
|
|
53026
|
+
"access": "authenticated",
|
|
53027
|
+
"transport": [
|
|
53028
|
+
"http"
|
|
53029
|
+
],
|
|
53030
|
+
"scopes": [
|
|
53031
|
+
"write:voice"
|
|
53032
|
+
],
|
|
53033
|
+
"http": {
|
|
53034
|
+
"method": "POST",
|
|
53035
|
+
"path": "/api/voice/tts/stream"
|
|
53036
|
+
},
|
|
53037
|
+
"inputSchema": {
|
|
53038
|
+
"type": "object",
|
|
53039
|
+
"properties": {
|
|
53040
|
+
"providerId": {
|
|
53041
|
+
"type": "string"
|
|
53042
|
+
},
|
|
53043
|
+
"text": {
|
|
53044
|
+
"type": "string"
|
|
53045
|
+
},
|
|
53046
|
+
"voiceId": {
|
|
53047
|
+
"type": "string"
|
|
53048
|
+
},
|
|
53049
|
+
"modelId": {
|
|
53050
|
+
"type": "string"
|
|
53051
|
+
},
|
|
53052
|
+
"format": {
|
|
53053
|
+
"type": "string"
|
|
53054
|
+
},
|
|
53055
|
+
"speed": {
|
|
53056
|
+
"type": "number"
|
|
53057
|
+
},
|
|
53058
|
+
"metadata": {
|
|
53059
|
+
"type": "object",
|
|
53060
|
+
"additionalProperties": {
|
|
53061
|
+
"anyOf": [
|
|
53062
|
+
{
|
|
53063
|
+
"type": "string"
|
|
53064
|
+
},
|
|
53065
|
+
{
|
|
53066
|
+
"type": "number"
|
|
53067
|
+
},
|
|
53068
|
+
{
|
|
53069
|
+
"type": "boolean"
|
|
53070
|
+
},
|
|
53071
|
+
{
|
|
53072
|
+
"type": "null"
|
|
53073
|
+
},
|
|
53074
|
+
{
|
|
53075
|
+
"type": "object",
|
|
53076
|
+
"additionalProperties": {
|
|
53077
|
+
"$ref": "$.operator.methods[211].inputSchema.properties.metadata.additionalProperties"
|
|
53078
|
+
}
|
|
53079
|
+
},
|
|
53080
|
+
{
|
|
53081
|
+
"type": "array",
|
|
53082
|
+
"items": {
|
|
53083
|
+
"$ref": "$.operator.methods[211].inputSchema.properties.metadata.additionalProperties"
|
|
53084
|
+
}
|
|
53085
|
+
}
|
|
53086
|
+
]
|
|
53087
|
+
}
|
|
53088
|
+
}
|
|
53089
|
+
},
|
|
53090
|
+
"required": [
|
|
53091
|
+
"text"
|
|
53092
|
+
],
|
|
53093
|
+
"additionalProperties": true
|
|
53094
|
+
},
|
|
53095
|
+
"outputSchema": {
|
|
53096
|
+
"type": "object",
|
|
53097
|
+
"properties": {
|
|
53098
|
+
"contentType": {
|
|
53099
|
+
"type": "string"
|
|
53100
|
+
},
|
|
53101
|
+
"providerId": {
|
|
53102
|
+
"type": "string"
|
|
53103
|
+
},
|
|
53104
|
+
"format": {
|
|
53105
|
+
"type": "string"
|
|
53106
|
+
}
|
|
53107
|
+
},
|
|
53108
|
+
"required": [
|
|
53109
|
+
"contentType",
|
|
53110
|
+
"providerId",
|
|
53111
|
+
"format"
|
|
53112
|
+
],
|
|
53113
|
+
"additionalProperties": false
|
|
53114
|
+
},
|
|
53115
|
+
"invokable": false,
|
|
53116
|
+
"metadata": {
|
|
53117
|
+
"responseKind": "binary-stream"
|
|
53118
|
+
}
|
|
53119
|
+
},
|
|
52836
53120
|
{
|
|
52837
53121
|
"id": "voice.voices.list",
|
|
52838
53122
|
"title": "List Voices",
|
|
@@ -52899,13 +53183,13 @@
|
|
|
52899
53183
|
{
|
|
52900
53184
|
"type": "object",
|
|
52901
53185
|
"additionalProperties": {
|
|
52902
|
-
"$ref": "$.operator.methods[
|
|
53186
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.voices.items.properties.metadata.additionalProperties"
|
|
52903
53187
|
}
|
|
52904
53188
|
},
|
|
52905
53189
|
{
|
|
52906
53190
|
"type": "array",
|
|
52907
53191
|
"items": {
|
|
52908
|
-
"$ref": "$.operator.methods[
|
|
53192
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.voices.items.properties.metadata.additionalProperties"
|
|
52909
53193
|
}
|
|
52910
53194
|
}
|
|
52911
53195
|
]
|
|
@@ -52989,13 +53273,13 @@
|
|
|
52989
53273
|
{
|
|
52990
53274
|
"type": "object",
|
|
52991
53275
|
"additionalProperties": {
|
|
52992
|
-
"$ref": "$.operator.methods[
|
|
53276
|
+
"$ref": "$.operator.methods[213].inputSchema.properties.metadata.additionalProperties"
|
|
52993
53277
|
}
|
|
52994
53278
|
},
|
|
52995
53279
|
{
|
|
52996
53280
|
"type": "array",
|
|
52997
53281
|
"items": {
|
|
52998
|
-
"$ref": "$.operator.methods[
|
|
53282
|
+
"$ref": "$.operator.methods[213].inputSchema.properties.metadata.additionalProperties"
|
|
52999
53283
|
}
|
|
53000
53284
|
}
|
|
53001
53285
|
]
|
|
@@ -53086,13 +53370,13 @@
|
|
|
53086
53370
|
{
|
|
53087
53371
|
"type": "object",
|
|
53088
53372
|
"additionalProperties": {
|
|
53089
|
-
"$ref": "$.operator.methods[
|
|
53373
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
53090
53374
|
}
|
|
53091
53375
|
},
|
|
53092
53376
|
{
|
|
53093
53377
|
"type": "array",
|
|
53094
53378
|
"items": {
|
|
53095
|
-
"$ref": "$.operator.methods[
|
|
53379
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
53096
53380
|
}
|
|
53097
53381
|
}
|
|
53098
53382
|
]
|
|
@@ -53150,13 +53434,13 @@
|
|
|
53150
53434
|
{
|
|
53151
53435
|
"type": "object",
|
|
53152
53436
|
"additionalProperties": {
|
|
53153
|
-
"$ref": "$.operator.methods[
|
|
53437
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.metadata.additionalProperties"
|
|
53154
53438
|
}
|
|
53155
53439
|
},
|
|
53156
53440
|
{
|
|
53157
53441
|
"type": "array",
|
|
53158
53442
|
"items": {
|
|
53159
|
-
"$ref": "$.operator.methods[
|
|
53443
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.metadata.additionalProperties"
|
|
53160
53444
|
}
|
|
53161
53445
|
}
|
|
53162
53446
|
]
|
|
@@ -53312,13 +53596,13 @@
|
|
|
53312
53596
|
{
|
|
53313
53597
|
"type": "object",
|
|
53314
53598
|
"additionalProperties": {
|
|
53315
|
-
"$ref": "$.operator.methods[
|
|
53599
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.watchers.items.properties.source.properties.metadata.additionalProperties"
|
|
53316
53600
|
}
|
|
53317
53601
|
},
|
|
53318
53602
|
{
|
|
53319
53603
|
"type": "array",
|
|
53320
53604
|
"items": {
|
|
53321
|
-
"$ref": "$.operator.methods[
|
|
53605
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.watchers.items.properties.source.properties.metadata.additionalProperties"
|
|
53322
53606
|
}
|
|
53323
53607
|
}
|
|
53324
53608
|
]
|
|
@@ -53376,13 +53660,13 @@
|
|
|
53376
53660
|
{
|
|
53377
53661
|
"type": "object",
|
|
53378
53662
|
"additionalProperties": {
|
|
53379
|
-
"$ref": "$.operator.methods[
|
|
53663
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.watchers.items.properties.metadata.additionalProperties"
|
|
53380
53664
|
}
|
|
53381
53665
|
},
|
|
53382
53666
|
{
|
|
53383
53667
|
"type": "array",
|
|
53384
53668
|
"items": {
|
|
53385
|
-
"$ref": "$.operator.methods[
|
|
53669
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.watchers.items.properties.metadata.additionalProperties"
|
|
53386
53670
|
}
|
|
53387
53671
|
}
|
|
53388
53672
|
]
|
|
@@ -53472,13 +53756,13 @@
|
|
|
53472
53756
|
{
|
|
53473
53757
|
"type": "object",
|
|
53474
53758
|
"additionalProperties": {
|
|
53475
|
-
"$ref": "$.operator.methods[
|
|
53759
|
+
"$ref": "$.operator.methods[216].inputSchema.properties.metadata.additionalProperties"
|
|
53476
53760
|
}
|
|
53477
53761
|
},
|
|
53478
53762
|
{
|
|
53479
53763
|
"type": "array",
|
|
53480
53764
|
"items": {
|
|
53481
|
-
"$ref": "$.operator.methods[
|
|
53765
|
+
"$ref": "$.operator.methods[216].inputSchema.properties.metadata.additionalProperties"
|
|
53482
53766
|
}
|
|
53483
53767
|
}
|
|
53484
53768
|
]
|
|
@@ -53566,13 +53850,13 @@
|
|
|
53566
53850
|
{
|
|
53567
53851
|
"type": "object",
|
|
53568
53852
|
"additionalProperties": {
|
|
53569
|
-
"$ref": "$.operator.methods[
|
|
53853
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
53570
53854
|
}
|
|
53571
53855
|
},
|
|
53572
53856
|
{
|
|
53573
53857
|
"type": "array",
|
|
53574
53858
|
"items": {
|
|
53575
|
-
"$ref": "$.operator.methods[
|
|
53859
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
53576
53860
|
}
|
|
53577
53861
|
}
|
|
53578
53862
|
]
|
|
@@ -53630,13 +53914,13 @@
|
|
|
53630
53914
|
{
|
|
53631
53915
|
"type": "object",
|
|
53632
53916
|
"additionalProperties": {
|
|
53633
|
-
"$ref": "$.operator.methods[
|
|
53917
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.metadata.additionalProperties"
|
|
53634
53918
|
}
|
|
53635
53919
|
},
|
|
53636
53920
|
{
|
|
53637
53921
|
"type": "array",
|
|
53638
53922
|
"items": {
|
|
53639
|
-
"$ref": "$.operator.methods[
|
|
53923
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.metadata.additionalProperties"
|
|
53640
53924
|
}
|
|
53641
53925
|
}
|
|
53642
53926
|
]
|
|
@@ -53743,13 +54027,13 @@
|
|
|
53743
54027
|
{
|
|
53744
54028
|
"type": "object",
|
|
53745
54029
|
"additionalProperties": {
|
|
53746
|
-
"$ref": "$.operator.methods[
|
|
54030
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
53747
54031
|
}
|
|
53748
54032
|
},
|
|
53749
54033
|
{
|
|
53750
54034
|
"type": "array",
|
|
53751
54035
|
"items": {
|
|
53752
|
-
"$ref": "$.operator.methods[
|
|
54036
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
53753
54037
|
}
|
|
53754
54038
|
}
|
|
53755
54039
|
]
|
|
@@ -53807,13 +54091,13 @@
|
|
|
53807
54091
|
{
|
|
53808
54092
|
"type": "object",
|
|
53809
54093
|
"additionalProperties": {
|
|
53810
|
-
"$ref": "$.operator.methods[
|
|
54094
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.metadata.additionalProperties"
|
|
53811
54095
|
}
|
|
53812
54096
|
},
|
|
53813
54097
|
{
|
|
53814
54098
|
"type": "array",
|
|
53815
54099
|
"items": {
|
|
53816
|
-
"$ref": "$.operator.methods[
|
|
54100
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.metadata.additionalProperties"
|
|
53817
54101
|
}
|
|
53818
54102
|
}
|
|
53819
54103
|
]
|
|
@@ -53920,13 +54204,13 @@
|
|
|
53920
54204
|
{
|
|
53921
54205
|
"type": "object",
|
|
53922
54206
|
"additionalProperties": {
|
|
53923
|
-
"$ref": "$.operator.methods[
|
|
54207
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
53924
54208
|
}
|
|
53925
54209
|
},
|
|
53926
54210
|
{
|
|
53927
54211
|
"type": "array",
|
|
53928
54212
|
"items": {
|
|
53929
|
-
"$ref": "$.operator.methods[
|
|
54213
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
53930
54214
|
}
|
|
53931
54215
|
}
|
|
53932
54216
|
]
|
|
@@ -53984,13 +54268,13 @@
|
|
|
53984
54268
|
{
|
|
53985
54269
|
"type": "object",
|
|
53986
54270
|
"additionalProperties": {
|
|
53987
|
-
"$ref": "$.operator.methods[
|
|
54271
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.metadata.additionalProperties"
|
|
53988
54272
|
}
|
|
53989
54273
|
},
|
|
53990
54274
|
{
|
|
53991
54275
|
"type": "array",
|
|
53992
54276
|
"items": {
|
|
53993
|
-
"$ref": "$.operator.methods[
|
|
54277
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.metadata.additionalProperties"
|
|
53994
54278
|
}
|
|
53995
54279
|
}
|
|
53996
54280
|
]
|
|
@@ -54097,13 +54381,13 @@
|
|
|
54097
54381
|
{
|
|
54098
54382
|
"type": "object",
|
|
54099
54383
|
"additionalProperties": {
|
|
54100
|
-
"$ref": "$.operator.methods[
|
|
54384
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
54101
54385
|
}
|
|
54102
54386
|
},
|
|
54103
54387
|
{
|
|
54104
54388
|
"type": "array",
|
|
54105
54389
|
"items": {
|
|
54106
|
-
"$ref": "$.operator.methods[
|
|
54390
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
54107
54391
|
}
|
|
54108
54392
|
}
|
|
54109
54393
|
]
|
|
@@ -54161,13 +54445,13 @@
|
|
|
54161
54445
|
{
|
|
54162
54446
|
"type": "object",
|
|
54163
54447
|
"additionalProperties": {
|
|
54164
|
-
"$ref": "$.operator.methods[
|
|
54448
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.metadata.additionalProperties"
|
|
54165
54449
|
}
|
|
54166
54450
|
},
|
|
54167
54451
|
{
|
|
54168
54452
|
"type": "array",
|
|
54169
54453
|
"items": {
|
|
54170
|
-
"$ref": "$.operator.methods[
|
|
54454
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.metadata.additionalProperties"
|
|
54171
54455
|
}
|
|
54172
54456
|
}
|
|
54173
54457
|
]
|
|
@@ -54380,13 +54664,13 @@
|
|
|
54380
54664
|
{
|
|
54381
54665
|
"type": "object",
|
|
54382
54666
|
"additionalProperties": {
|
|
54383
|
-
"$ref": "$.operator.methods[
|
|
54667
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.results.items.properties.metadata.additionalProperties"
|
|
54384
54668
|
}
|
|
54385
54669
|
},
|
|
54386
54670
|
{
|
|
54387
54671
|
"type": "array",
|
|
54388
54672
|
"items": {
|
|
54389
|
-
"$ref": "$.operator.methods[
|
|
54673
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.results.items.properties.metadata.additionalProperties"
|
|
54390
54674
|
}
|
|
54391
54675
|
}
|
|
54392
54676
|
]
|
|
@@ -54437,13 +54721,13 @@
|
|
|
54437
54721
|
{
|
|
54438
54722
|
"type": "object",
|
|
54439
54723
|
"additionalProperties": {
|
|
54440
|
-
"$ref": "$.operator.methods[
|
|
54724
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.results.items.properties.evidence.items.properties.metadata.additionalProperties"
|
|
54441
54725
|
}
|
|
54442
54726
|
},
|
|
54443
54727
|
{
|
|
54444
54728
|
"type": "array",
|
|
54445
54729
|
"items": {
|
|
54446
|
-
"$ref": "$.operator.methods[
|
|
54730
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.results.items.properties.evidence.items.properties.metadata.additionalProperties"
|
|
54447
54731
|
}
|
|
54448
54732
|
}
|
|
54449
54733
|
]
|
|
@@ -54533,13 +54817,13 @@
|
|
|
54533
54817
|
{
|
|
54534
54818
|
"type": "object",
|
|
54535
54819
|
"additionalProperties": {
|
|
54536
|
-
"$ref": "$.operator.methods[
|
|
54820
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.instantAnswer.properties.metadata.additionalProperties"
|
|
54537
54821
|
}
|
|
54538
54822
|
},
|
|
54539
54823
|
{
|
|
54540
54824
|
"type": "array",
|
|
54541
54825
|
"items": {
|
|
54542
|
-
"$ref": "$.operator.methods[
|
|
54826
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.instantAnswer.properties.metadata.additionalProperties"
|
|
54543
54827
|
}
|
|
54544
54828
|
}
|
|
54545
54829
|
]
|
|
@@ -54572,13 +54856,13 @@
|
|
|
54572
54856
|
{
|
|
54573
54857
|
"type": "object",
|
|
54574
54858
|
"additionalProperties": {
|
|
54575
|
-
"$ref": "$.operator.methods[
|
|
54859
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.metadata.additionalProperties"
|
|
54576
54860
|
}
|
|
54577
54861
|
},
|
|
54578
54862
|
{
|
|
54579
54863
|
"type": "array",
|
|
54580
54864
|
"items": {
|
|
54581
|
-
"$ref": "$.operator.methods[
|
|
54865
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.metadata.additionalProperties"
|
|
54582
54866
|
}
|
|
54583
54867
|
}
|
|
54584
54868
|
]
|
|
@@ -56298,10 +56582,10 @@
|
|
|
56298
56582
|
}
|
|
56299
56583
|
],
|
|
56300
56584
|
"schemaCoverage": {
|
|
56301
|
-
"methods":
|
|
56302
|
-
"typedInputs":
|
|
56585
|
+
"methods": 223,
|
|
56586
|
+
"typedInputs": 223,
|
|
56303
56587
|
"genericInputs": 0,
|
|
56304
|
-
"typedOutputs":
|
|
56588
|
+
"typedOutputs": 223,
|
|
56305
56589
|
"genericOutputs": 0
|
|
56306
56590
|
},
|
|
56307
56591
|
"eventCoverage": {
|