@pellux/goodvibes-tui 0.19.98 → 0.19.99
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 +5 -0
- package/README.md +22 -3
- package/docs/foundation-artifacts/operator-contract.json +1376 -290
- package/package.json +2 -2
- package/src/input/command-registry.ts +1 -1
- package/src/input/commands/mcp-runtime.ts +237 -7
- package/src/input/feed-context-factory.ts +2 -0
- package/src/input/handler-feed.ts +3 -0
- package/src/input/handler-interactions.ts +1 -0
- package/src/input/handler-modal-stack.ts +3 -0
- package/src/input/handler-modal-token-routes.ts +11 -0
- package/src/input/handler-ui-state.ts +10 -0
- package/src/input/handler.ts +10 -0
- package/src/input/mcp-workspace.ts +554 -0
- package/src/mcp/runtime-reload.ts +81 -0
- package/src/panels/builtin/operations.ts +1 -11
- package/src/panels/builtin/shared.ts +2 -2
- package/src/panels/index.ts +0 -1
- package/src/renderer/conversation-overlays.ts +6 -0
- package/src/renderer/mcp-workspace.ts +297 -0
- package/src/runtime/bootstrap-command-parts.ts +2 -4
- package/src/runtime/bootstrap.ts +26 -2
- package/src/shell/ui-openers.ts +5 -0
- package/src/version.ts +1 -1
- package/src/panels/mcp-panel.ts +0 -215
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.33.
|
|
6
|
+
"version": "0.33.27"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -52821,6 +52821,1092 @@
|
|
|
52821
52821
|
},
|
|
52822
52822
|
"invokable": true
|
|
52823
52823
|
},
|
|
52824
|
+
{
|
|
52825
|
+
"id": "mcp.config.get",
|
|
52826
|
+
"title": "MCP Effective Config",
|
|
52827
|
+
"description": "Return effective MCP config from global, external, and project sources. Environment values are redacted to envKeys.",
|
|
52828
|
+
"category": "mcp",
|
|
52829
|
+
"source": "builtin",
|
|
52830
|
+
"access": "authenticated",
|
|
52831
|
+
"transport": [
|
|
52832
|
+
"http",
|
|
52833
|
+
"ws"
|
|
52834
|
+
],
|
|
52835
|
+
"scopes": [
|
|
52836
|
+
"read:mcp"
|
|
52837
|
+
],
|
|
52838
|
+
"http": {
|
|
52839
|
+
"method": "GET",
|
|
52840
|
+
"path": "/api/mcp/config"
|
|
52841
|
+
},
|
|
52842
|
+
"events": [
|
|
52843
|
+
"runtime.mcp"
|
|
52844
|
+
],
|
|
52845
|
+
"inputSchema": {
|
|
52846
|
+
"type": "object",
|
|
52847
|
+
"properties": {},
|
|
52848
|
+
"additionalProperties": false
|
|
52849
|
+
},
|
|
52850
|
+
"outputSchema": {
|
|
52851
|
+
"type": "object",
|
|
52852
|
+
"properties": {
|
|
52853
|
+
"locations": {
|
|
52854
|
+
"type": "array",
|
|
52855
|
+
"items": {
|
|
52856
|
+
"type": "object",
|
|
52857
|
+
"properties": {
|
|
52858
|
+
"scope": {
|
|
52859
|
+
"type": "string"
|
|
52860
|
+
},
|
|
52861
|
+
"kind": {
|
|
52862
|
+
"type": "string"
|
|
52863
|
+
},
|
|
52864
|
+
"path": {
|
|
52865
|
+
"type": "string"
|
|
52866
|
+
},
|
|
52867
|
+
"writable": {
|
|
52868
|
+
"type": "boolean"
|
|
52869
|
+
}
|
|
52870
|
+
},
|
|
52871
|
+
"required": [
|
|
52872
|
+
"scope",
|
|
52873
|
+
"kind",
|
|
52874
|
+
"path",
|
|
52875
|
+
"writable"
|
|
52876
|
+
],
|
|
52877
|
+
"additionalProperties": false
|
|
52878
|
+
}
|
|
52879
|
+
},
|
|
52880
|
+
"servers": {
|
|
52881
|
+
"type": "array",
|
|
52882
|
+
"items": {
|
|
52883
|
+
"type": "object",
|
|
52884
|
+
"properties": {
|
|
52885
|
+
"name": {
|
|
52886
|
+
"type": "string"
|
|
52887
|
+
},
|
|
52888
|
+
"command": {
|
|
52889
|
+
"type": "string"
|
|
52890
|
+
},
|
|
52891
|
+
"args": {
|
|
52892
|
+
"type": "array",
|
|
52893
|
+
"items": {
|
|
52894
|
+
"type": "string"
|
|
52895
|
+
}
|
|
52896
|
+
},
|
|
52897
|
+
"envKeys": {
|
|
52898
|
+
"type": "array",
|
|
52899
|
+
"items": {
|
|
52900
|
+
"type": "string"
|
|
52901
|
+
}
|
|
52902
|
+
},
|
|
52903
|
+
"role": {
|
|
52904
|
+
"anyOf": [
|
|
52905
|
+
{
|
|
52906
|
+
"type": "string"
|
|
52907
|
+
},
|
|
52908
|
+
{
|
|
52909
|
+
"type": "null"
|
|
52910
|
+
}
|
|
52911
|
+
]
|
|
52912
|
+
},
|
|
52913
|
+
"trustMode": {
|
|
52914
|
+
"anyOf": [
|
|
52915
|
+
{
|
|
52916
|
+
"type": "string"
|
|
52917
|
+
},
|
|
52918
|
+
{
|
|
52919
|
+
"type": "null"
|
|
52920
|
+
}
|
|
52921
|
+
]
|
|
52922
|
+
},
|
|
52923
|
+
"allowedPaths": {
|
|
52924
|
+
"type": "array",
|
|
52925
|
+
"items": {
|
|
52926
|
+
"type": "string"
|
|
52927
|
+
}
|
|
52928
|
+
},
|
|
52929
|
+
"allowedHosts": {
|
|
52930
|
+
"type": "array",
|
|
52931
|
+
"items": {
|
|
52932
|
+
"type": "string"
|
|
52933
|
+
}
|
|
52934
|
+
},
|
|
52935
|
+
"source": {
|
|
52936
|
+
"type": "object",
|
|
52937
|
+
"properties": {
|
|
52938
|
+
"scope": {
|
|
52939
|
+
"type": "string"
|
|
52940
|
+
},
|
|
52941
|
+
"kind": {
|
|
52942
|
+
"type": "string"
|
|
52943
|
+
},
|
|
52944
|
+
"path": {
|
|
52945
|
+
"type": "string"
|
|
52946
|
+
},
|
|
52947
|
+
"writable": {
|
|
52948
|
+
"type": "boolean"
|
|
52949
|
+
}
|
|
52950
|
+
},
|
|
52951
|
+
"required": [
|
|
52952
|
+
"scope",
|
|
52953
|
+
"kind",
|
|
52954
|
+
"path",
|
|
52955
|
+
"writable"
|
|
52956
|
+
],
|
|
52957
|
+
"additionalProperties": false
|
|
52958
|
+
}
|
|
52959
|
+
},
|
|
52960
|
+
"required": [
|
|
52961
|
+
"name",
|
|
52962
|
+
"command",
|
|
52963
|
+
"args",
|
|
52964
|
+
"envKeys",
|
|
52965
|
+
"role",
|
|
52966
|
+
"trustMode",
|
|
52967
|
+
"allowedPaths",
|
|
52968
|
+
"allowedHosts",
|
|
52969
|
+
"source"
|
|
52970
|
+
],
|
|
52971
|
+
"additionalProperties": false
|
|
52972
|
+
}
|
|
52973
|
+
}
|
|
52974
|
+
},
|
|
52975
|
+
"required": [
|
|
52976
|
+
"locations",
|
|
52977
|
+
"servers"
|
|
52978
|
+
],
|
|
52979
|
+
"additionalProperties": false
|
|
52980
|
+
},
|
|
52981
|
+
"invokable": true
|
|
52982
|
+
},
|
|
52983
|
+
{
|
|
52984
|
+
"id": "mcp.config.reload",
|
|
52985
|
+
"title": "Reload MCP Config",
|
|
52986
|
+
"description": "Reload effective MCP config and reconnect added, removed, or changed servers without daemon restart.",
|
|
52987
|
+
"category": "mcp",
|
|
52988
|
+
"source": "builtin",
|
|
52989
|
+
"access": "admin",
|
|
52990
|
+
"transport": [
|
|
52991
|
+
"http",
|
|
52992
|
+
"ws"
|
|
52993
|
+
],
|
|
52994
|
+
"scopes": [
|
|
52995
|
+
"write:mcp"
|
|
52996
|
+
],
|
|
52997
|
+
"http": {
|
|
52998
|
+
"method": "POST",
|
|
52999
|
+
"path": "/api/mcp/reload"
|
|
53000
|
+
},
|
|
53001
|
+
"events": [
|
|
53002
|
+
"runtime.mcp"
|
|
53003
|
+
],
|
|
53004
|
+
"inputSchema": {
|
|
53005
|
+
"type": "object",
|
|
53006
|
+
"properties": {},
|
|
53007
|
+
"additionalProperties": false
|
|
53008
|
+
},
|
|
53009
|
+
"outputSchema": {
|
|
53010
|
+
"type": "object",
|
|
53011
|
+
"properties": {
|
|
53012
|
+
"reload": {
|
|
53013
|
+
"type": "object",
|
|
53014
|
+
"properties": {
|
|
53015
|
+
"added": {
|
|
53016
|
+
"type": "number"
|
|
53017
|
+
},
|
|
53018
|
+
"changed": {
|
|
53019
|
+
"type": "number"
|
|
53020
|
+
},
|
|
53021
|
+
"removed": {
|
|
53022
|
+
"type": "number"
|
|
53023
|
+
},
|
|
53024
|
+
"unchanged": {
|
|
53025
|
+
"type": "number"
|
|
53026
|
+
},
|
|
53027
|
+
"servers": {
|
|
53028
|
+
"type": "array",
|
|
53029
|
+
"items": {
|
|
53030
|
+
"type": "object",
|
|
53031
|
+
"properties": {
|
|
53032
|
+
"name": {
|
|
53033
|
+
"type": "string"
|
|
53034
|
+
},
|
|
53035
|
+
"action": {
|
|
53036
|
+
"type": "string",
|
|
53037
|
+
"enum": [
|
|
53038
|
+
"added",
|
|
53039
|
+
"changed",
|
|
53040
|
+
"removed",
|
|
53041
|
+
"unchanged"
|
|
53042
|
+
]
|
|
53043
|
+
},
|
|
53044
|
+
"connected": {
|
|
53045
|
+
"type": "boolean"
|
|
53046
|
+
}
|
|
53047
|
+
},
|
|
53048
|
+
"required": [
|
|
53049
|
+
"name",
|
|
53050
|
+
"action",
|
|
53051
|
+
"connected"
|
|
53052
|
+
],
|
|
53053
|
+
"additionalProperties": false
|
|
53054
|
+
}
|
|
53055
|
+
}
|
|
53056
|
+
},
|
|
53057
|
+
"required": [
|
|
53058
|
+
"added",
|
|
53059
|
+
"changed",
|
|
53060
|
+
"removed",
|
|
53061
|
+
"unchanged",
|
|
53062
|
+
"servers"
|
|
53063
|
+
],
|
|
53064
|
+
"additionalProperties": false
|
|
53065
|
+
},
|
|
53066
|
+
"config": {
|
|
53067
|
+
"type": "object",
|
|
53068
|
+
"properties": {
|
|
53069
|
+
"locations": {
|
|
53070
|
+
"type": "array",
|
|
53071
|
+
"items": {
|
|
53072
|
+
"type": "object",
|
|
53073
|
+
"properties": {
|
|
53074
|
+
"scope": {
|
|
53075
|
+
"type": "string"
|
|
53076
|
+
},
|
|
53077
|
+
"kind": {
|
|
53078
|
+
"type": "string"
|
|
53079
|
+
},
|
|
53080
|
+
"path": {
|
|
53081
|
+
"type": "string"
|
|
53082
|
+
},
|
|
53083
|
+
"writable": {
|
|
53084
|
+
"type": "boolean"
|
|
53085
|
+
}
|
|
53086
|
+
},
|
|
53087
|
+
"required": [
|
|
53088
|
+
"scope",
|
|
53089
|
+
"kind",
|
|
53090
|
+
"path",
|
|
53091
|
+
"writable"
|
|
53092
|
+
],
|
|
53093
|
+
"additionalProperties": false
|
|
53094
|
+
}
|
|
53095
|
+
},
|
|
53096
|
+
"servers": {
|
|
53097
|
+
"type": "array",
|
|
53098
|
+
"items": {
|
|
53099
|
+
"type": "object",
|
|
53100
|
+
"properties": {
|
|
53101
|
+
"name": {
|
|
53102
|
+
"type": "string"
|
|
53103
|
+
},
|
|
53104
|
+
"command": {
|
|
53105
|
+
"type": "string"
|
|
53106
|
+
},
|
|
53107
|
+
"args": {
|
|
53108
|
+
"type": "array",
|
|
53109
|
+
"items": {
|
|
53110
|
+
"type": "string"
|
|
53111
|
+
}
|
|
53112
|
+
},
|
|
53113
|
+
"envKeys": {
|
|
53114
|
+
"type": "array",
|
|
53115
|
+
"items": {
|
|
53116
|
+
"type": "string"
|
|
53117
|
+
}
|
|
53118
|
+
},
|
|
53119
|
+
"role": {
|
|
53120
|
+
"anyOf": [
|
|
53121
|
+
{
|
|
53122
|
+
"type": "string"
|
|
53123
|
+
},
|
|
53124
|
+
{
|
|
53125
|
+
"type": "null"
|
|
53126
|
+
}
|
|
53127
|
+
]
|
|
53128
|
+
},
|
|
53129
|
+
"trustMode": {
|
|
53130
|
+
"anyOf": [
|
|
53131
|
+
{
|
|
53132
|
+
"type": "string"
|
|
53133
|
+
},
|
|
53134
|
+
{
|
|
53135
|
+
"type": "null"
|
|
53136
|
+
}
|
|
53137
|
+
]
|
|
53138
|
+
},
|
|
53139
|
+
"allowedPaths": {
|
|
53140
|
+
"type": "array",
|
|
53141
|
+
"items": {
|
|
53142
|
+
"type": "string"
|
|
53143
|
+
}
|
|
53144
|
+
},
|
|
53145
|
+
"allowedHosts": {
|
|
53146
|
+
"type": "array",
|
|
53147
|
+
"items": {
|
|
53148
|
+
"type": "string"
|
|
53149
|
+
}
|
|
53150
|
+
},
|
|
53151
|
+
"source": {
|
|
53152
|
+
"type": "object",
|
|
53153
|
+
"properties": {
|
|
53154
|
+
"scope": {
|
|
53155
|
+
"type": "string"
|
|
53156
|
+
},
|
|
53157
|
+
"kind": {
|
|
53158
|
+
"type": "string"
|
|
53159
|
+
},
|
|
53160
|
+
"path": {
|
|
53161
|
+
"type": "string"
|
|
53162
|
+
},
|
|
53163
|
+
"writable": {
|
|
53164
|
+
"type": "boolean"
|
|
53165
|
+
}
|
|
53166
|
+
},
|
|
53167
|
+
"required": [
|
|
53168
|
+
"scope",
|
|
53169
|
+
"kind",
|
|
53170
|
+
"path",
|
|
53171
|
+
"writable"
|
|
53172
|
+
],
|
|
53173
|
+
"additionalProperties": false
|
|
53174
|
+
}
|
|
53175
|
+
},
|
|
53176
|
+
"required": [
|
|
53177
|
+
"name",
|
|
53178
|
+
"command",
|
|
53179
|
+
"args",
|
|
53180
|
+
"envKeys",
|
|
53181
|
+
"role",
|
|
53182
|
+
"trustMode",
|
|
53183
|
+
"allowedPaths",
|
|
53184
|
+
"allowedHosts",
|
|
53185
|
+
"source"
|
|
53186
|
+
],
|
|
53187
|
+
"additionalProperties": false
|
|
53188
|
+
}
|
|
53189
|
+
}
|
|
53190
|
+
},
|
|
53191
|
+
"required": [
|
|
53192
|
+
"locations",
|
|
53193
|
+
"servers"
|
|
53194
|
+
],
|
|
53195
|
+
"additionalProperties": false
|
|
53196
|
+
}
|
|
53197
|
+
},
|
|
53198
|
+
"required": [
|
|
53199
|
+
"reload",
|
|
53200
|
+
"config"
|
|
53201
|
+
],
|
|
53202
|
+
"additionalProperties": false
|
|
53203
|
+
},
|
|
53204
|
+
"invokable": true
|
|
53205
|
+
},
|
|
53206
|
+
{
|
|
53207
|
+
"id": "mcp.servers.list",
|
|
53208
|
+
"title": "MCP Servers List",
|
|
53209
|
+
"description": "Return configured MCP servers, runtime security posture, and sandbox bindings.",
|
|
53210
|
+
"category": "mcp",
|
|
53211
|
+
"source": "builtin",
|
|
53212
|
+
"access": "authenticated",
|
|
53213
|
+
"transport": [
|
|
53214
|
+
"http",
|
|
53215
|
+
"ws"
|
|
53216
|
+
],
|
|
53217
|
+
"scopes": [
|
|
53218
|
+
"read:mcp"
|
|
53219
|
+
],
|
|
53220
|
+
"http": {
|
|
53221
|
+
"method": "GET",
|
|
53222
|
+
"path": "/api/mcp/servers"
|
|
53223
|
+
},
|
|
53224
|
+
"events": [
|
|
53225
|
+
"runtime.mcp"
|
|
53226
|
+
],
|
|
53227
|
+
"inputSchema": {
|
|
53228
|
+
"type": "object",
|
|
53229
|
+
"properties": {},
|
|
53230
|
+
"additionalProperties": false
|
|
53231
|
+
},
|
|
53232
|
+
"outputSchema": {
|
|
53233
|
+
"type": "object",
|
|
53234
|
+
"properties": {
|
|
53235
|
+
"servers": {
|
|
53236
|
+
"type": "array",
|
|
53237
|
+
"items": {
|
|
53238
|
+
"type": "object",
|
|
53239
|
+
"properties": {
|
|
53240
|
+
"name": {
|
|
53241
|
+
"type": "string"
|
|
53242
|
+
},
|
|
53243
|
+
"connected": {
|
|
53244
|
+
"type": "boolean"
|
|
53245
|
+
}
|
|
53246
|
+
},
|
|
53247
|
+
"required": [
|
|
53248
|
+
"name",
|
|
53249
|
+
"connected"
|
|
53250
|
+
],
|
|
53251
|
+
"additionalProperties": false
|
|
53252
|
+
}
|
|
53253
|
+
},
|
|
53254
|
+
"security": {
|
|
53255
|
+
"type": "array",
|
|
53256
|
+
"items": {
|
|
53257
|
+
"type": "object",
|
|
53258
|
+
"properties": {},
|
|
53259
|
+
"additionalProperties": true
|
|
53260
|
+
}
|
|
53261
|
+
},
|
|
53262
|
+
"sandboxBindings": {
|
|
53263
|
+
"type": "array",
|
|
53264
|
+
"items": {
|
|
53265
|
+
"type": "object",
|
|
53266
|
+
"properties": {},
|
|
53267
|
+
"additionalProperties": true
|
|
53268
|
+
}
|
|
53269
|
+
}
|
|
53270
|
+
},
|
|
53271
|
+
"required": [
|
|
53272
|
+
"servers",
|
|
53273
|
+
"security",
|
|
53274
|
+
"sandboxBindings"
|
|
53275
|
+
],
|
|
53276
|
+
"additionalProperties": false
|
|
53277
|
+
},
|
|
53278
|
+
"invokable": true
|
|
53279
|
+
},
|
|
53280
|
+
{
|
|
53281
|
+
"id": "mcp.servers.remove",
|
|
53282
|
+
"title": "Remove MCP Server",
|
|
53283
|
+
"description": "Remove a project/global MCP server config and disconnect it without daemon restart.",
|
|
53284
|
+
"category": "mcp",
|
|
53285
|
+
"source": "builtin",
|
|
53286
|
+
"access": "admin",
|
|
53287
|
+
"transport": [
|
|
53288
|
+
"http",
|
|
53289
|
+
"ws"
|
|
53290
|
+
],
|
|
53291
|
+
"scopes": [
|
|
53292
|
+
"write:mcp"
|
|
53293
|
+
],
|
|
53294
|
+
"http": {
|
|
53295
|
+
"method": "DELETE",
|
|
53296
|
+
"path": "/api/mcp/config/servers/{serverName}"
|
|
53297
|
+
},
|
|
53298
|
+
"events": [
|
|
53299
|
+
"runtime.mcp"
|
|
53300
|
+
],
|
|
53301
|
+
"inputSchema": {
|
|
53302
|
+
"type": "object",
|
|
53303
|
+
"properties": {
|
|
53304
|
+
"serverName": {
|
|
53305
|
+
"type": "string"
|
|
53306
|
+
},
|
|
53307
|
+
"scope": {
|
|
53308
|
+
"type": "string",
|
|
53309
|
+
"enum": [
|
|
53310
|
+
"project",
|
|
53311
|
+
"global"
|
|
53312
|
+
]
|
|
53313
|
+
}
|
|
53314
|
+
},
|
|
53315
|
+
"required": [
|
|
53316
|
+
"serverName"
|
|
53317
|
+
],
|
|
53318
|
+
"additionalProperties": false
|
|
53319
|
+
},
|
|
53320
|
+
"outputSchema": {
|
|
53321
|
+
"type": "object",
|
|
53322
|
+
"properties": {
|
|
53323
|
+
"scope": {
|
|
53324
|
+
"type": "string",
|
|
53325
|
+
"enum": [
|
|
53326
|
+
"project",
|
|
53327
|
+
"global"
|
|
53328
|
+
]
|
|
53329
|
+
},
|
|
53330
|
+
"path": {
|
|
53331
|
+
"type": "string"
|
|
53332
|
+
},
|
|
53333
|
+
"removed": {
|
|
53334
|
+
"type": "boolean"
|
|
53335
|
+
},
|
|
53336
|
+
"reload": {
|
|
53337
|
+
"type": "object",
|
|
53338
|
+
"properties": {
|
|
53339
|
+
"added": {
|
|
53340
|
+
"type": "number"
|
|
53341
|
+
},
|
|
53342
|
+
"changed": {
|
|
53343
|
+
"type": "number"
|
|
53344
|
+
},
|
|
53345
|
+
"removed": {
|
|
53346
|
+
"type": "number"
|
|
53347
|
+
},
|
|
53348
|
+
"unchanged": {
|
|
53349
|
+
"type": "number"
|
|
53350
|
+
},
|
|
53351
|
+
"servers": {
|
|
53352
|
+
"type": "array",
|
|
53353
|
+
"items": {
|
|
53354
|
+
"type": "object",
|
|
53355
|
+
"properties": {
|
|
53356
|
+
"name": {
|
|
53357
|
+
"type": "string"
|
|
53358
|
+
},
|
|
53359
|
+
"action": {
|
|
53360
|
+
"type": "string",
|
|
53361
|
+
"enum": [
|
|
53362
|
+
"added",
|
|
53363
|
+
"changed",
|
|
53364
|
+
"removed",
|
|
53365
|
+
"unchanged"
|
|
53366
|
+
]
|
|
53367
|
+
},
|
|
53368
|
+
"connected": {
|
|
53369
|
+
"type": "boolean"
|
|
53370
|
+
}
|
|
53371
|
+
},
|
|
53372
|
+
"required": [
|
|
53373
|
+
"name",
|
|
53374
|
+
"action",
|
|
53375
|
+
"connected"
|
|
53376
|
+
],
|
|
53377
|
+
"additionalProperties": false
|
|
53378
|
+
}
|
|
53379
|
+
}
|
|
53380
|
+
},
|
|
53381
|
+
"required": [
|
|
53382
|
+
"added",
|
|
53383
|
+
"changed",
|
|
53384
|
+
"removed",
|
|
53385
|
+
"unchanged",
|
|
53386
|
+
"servers"
|
|
53387
|
+
],
|
|
53388
|
+
"additionalProperties": false
|
|
53389
|
+
},
|
|
53390
|
+
"config": {
|
|
53391
|
+
"type": "object",
|
|
53392
|
+
"properties": {
|
|
53393
|
+
"locations": {
|
|
53394
|
+
"type": "array",
|
|
53395
|
+
"items": {
|
|
53396
|
+
"type": "object",
|
|
53397
|
+
"properties": {
|
|
53398
|
+
"scope": {
|
|
53399
|
+
"type": "string"
|
|
53400
|
+
},
|
|
53401
|
+
"kind": {
|
|
53402
|
+
"type": "string"
|
|
53403
|
+
},
|
|
53404
|
+
"path": {
|
|
53405
|
+
"type": "string"
|
|
53406
|
+
},
|
|
53407
|
+
"writable": {
|
|
53408
|
+
"type": "boolean"
|
|
53409
|
+
}
|
|
53410
|
+
},
|
|
53411
|
+
"required": [
|
|
53412
|
+
"scope",
|
|
53413
|
+
"kind",
|
|
53414
|
+
"path",
|
|
53415
|
+
"writable"
|
|
53416
|
+
],
|
|
53417
|
+
"additionalProperties": false
|
|
53418
|
+
}
|
|
53419
|
+
},
|
|
53420
|
+
"servers": {
|
|
53421
|
+
"type": "array",
|
|
53422
|
+
"items": {
|
|
53423
|
+
"type": "object",
|
|
53424
|
+
"properties": {
|
|
53425
|
+
"name": {
|
|
53426
|
+
"type": "string"
|
|
53427
|
+
},
|
|
53428
|
+
"command": {
|
|
53429
|
+
"type": "string"
|
|
53430
|
+
},
|
|
53431
|
+
"args": {
|
|
53432
|
+
"type": "array",
|
|
53433
|
+
"items": {
|
|
53434
|
+
"type": "string"
|
|
53435
|
+
}
|
|
53436
|
+
},
|
|
53437
|
+
"envKeys": {
|
|
53438
|
+
"type": "array",
|
|
53439
|
+
"items": {
|
|
53440
|
+
"type": "string"
|
|
53441
|
+
}
|
|
53442
|
+
},
|
|
53443
|
+
"role": {
|
|
53444
|
+
"anyOf": [
|
|
53445
|
+
{
|
|
53446
|
+
"type": "string"
|
|
53447
|
+
},
|
|
53448
|
+
{
|
|
53449
|
+
"type": "null"
|
|
53450
|
+
}
|
|
53451
|
+
]
|
|
53452
|
+
},
|
|
53453
|
+
"trustMode": {
|
|
53454
|
+
"anyOf": [
|
|
53455
|
+
{
|
|
53456
|
+
"type": "string"
|
|
53457
|
+
},
|
|
53458
|
+
{
|
|
53459
|
+
"type": "null"
|
|
53460
|
+
}
|
|
53461
|
+
]
|
|
53462
|
+
},
|
|
53463
|
+
"allowedPaths": {
|
|
53464
|
+
"type": "array",
|
|
53465
|
+
"items": {
|
|
53466
|
+
"type": "string"
|
|
53467
|
+
}
|
|
53468
|
+
},
|
|
53469
|
+
"allowedHosts": {
|
|
53470
|
+
"type": "array",
|
|
53471
|
+
"items": {
|
|
53472
|
+
"type": "string"
|
|
53473
|
+
}
|
|
53474
|
+
},
|
|
53475
|
+
"source": {
|
|
53476
|
+
"type": "object",
|
|
53477
|
+
"properties": {
|
|
53478
|
+
"scope": {
|
|
53479
|
+
"type": "string"
|
|
53480
|
+
},
|
|
53481
|
+
"kind": {
|
|
53482
|
+
"type": "string"
|
|
53483
|
+
},
|
|
53484
|
+
"path": {
|
|
53485
|
+
"type": "string"
|
|
53486
|
+
},
|
|
53487
|
+
"writable": {
|
|
53488
|
+
"type": "boolean"
|
|
53489
|
+
}
|
|
53490
|
+
},
|
|
53491
|
+
"required": [
|
|
53492
|
+
"scope",
|
|
53493
|
+
"kind",
|
|
53494
|
+
"path",
|
|
53495
|
+
"writable"
|
|
53496
|
+
],
|
|
53497
|
+
"additionalProperties": false
|
|
53498
|
+
}
|
|
53499
|
+
},
|
|
53500
|
+
"required": [
|
|
53501
|
+
"name",
|
|
53502
|
+
"command",
|
|
53503
|
+
"args",
|
|
53504
|
+
"envKeys",
|
|
53505
|
+
"role",
|
|
53506
|
+
"trustMode",
|
|
53507
|
+
"allowedPaths",
|
|
53508
|
+
"allowedHosts",
|
|
53509
|
+
"source"
|
|
53510
|
+
],
|
|
53511
|
+
"additionalProperties": false
|
|
53512
|
+
}
|
|
53513
|
+
}
|
|
53514
|
+
},
|
|
53515
|
+
"required": [
|
|
53516
|
+
"locations",
|
|
53517
|
+
"servers"
|
|
53518
|
+
],
|
|
53519
|
+
"additionalProperties": false
|
|
53520
|
+
}
|
|
53521
|
+
},
|
|
53522
|
+
"required": [
|
|
53523
|
+
"scope",
|
|
53524
|
+
"path",
|
|
53525
|
+
"reload",
|
|
53526
|
+
"config"
|
|
53527
|
+
],
|
|
53528
|
+
"additionalProperties": false
|
|
53529
|
+
},
|
|
53530
|
+
"invokable": true
|
|
53531
|
+
},
|
|
53532
|
+
{
|
|
53533
|
+
"id": "mcp.servers.upsert",
|
|
53534
|
+
"title": "Upsert MCP Server",
|
|
53535
|
+
"description": "Persist a project/global MCP server config and reconnect the changed runtime server without daemon restart.",
|
|
53536
|
+
"category": "mcp",
|
|
53537
|
+
"source": "builtin",
|
|
53538
|
+
"access": "admin",
|
|
53539
|
+
"transport": [
|
|
53540
|
+
"http",
|
|
53541
|
+
"ws"
|
|
53542
|
+
],
|
|
53543
|
+
"scopes": [
|
|
53544
|
+
"write:mcp"
|
|
53545
|
+
],
|
|
53546
|
+
"http": {
|
|
53547
|
+
"method": "POST",
|
|
53548
|
+
"path": "/api/mcp/config/servers"
|
|
53549
|
+
},
|
|
53550
|
+
"events": [
|
|
53551
|
+
"runtime.mcp"
|
|
53552
|
+
],
|
|
53553
|
+
"inputSchema": {
|
|
53554
|
+
"type": "object",
|
|
53555
|
+
"properties": {
|
|
53556
|
+
"scope": {
|
|
53557
|
+
"type": "string",
|
|
53558
|
+
"enum": [
|
|
53559
|
+
"project",
|
|
53560
|
+
"global"
|
|
53561
|
+
]
|
|
53562
|
+
},
|
|
53563
|
+
"server": {
|
|
53564
|
+
"type": "object",
|
|
53565
|
+
"properties": {
|
|
53566
|
+
"name": {
|
|
53567
|
+
"type": "string"
|
|
53568
|
+
},
|
|
53569
|
+
"command": {
|
|
53570
|
+
"type": "string"
|
|
53571
|
+
},
|
|
53572
|
+
"args": {
|
|
53573
|
+
"type": "array",
|
|
53574
|
+
"items": {
|
|
53575
|
+
"type": "string"
|
|
53576
|
+
}
|
|
53577
|
+
},
|
|
53578
|
+
"env": {
|
|
53579
|
+
"type": "object",
|
|
53580
|
+
"properties": {},
|
|
53581
|
+
"additionalProperties": true
|
|
53582
|
+
},
|
|
53583
|
+
"envKeys": {
|
|
53584
|
+
"type": "array",
|
|
53585
|
+
"items": {
|
|
53586
|
+
"type": "string"
|
|
53587
|
+
}
|
|
53588
|
+
},
|
|
53589
|
+
"role": {
|
|
53590
|
+
"anyOf": [
|
|
53591
|
+
{
|
|
53592
|
+
"type": "string"
|
|
53593
|
+
},
|
|
53594
|
+
{
|
|
53595
|
+
"type": "null"
|
|
53596
|
+
}
|
|
53597
|
+
]
|
|
53598
|
+
},
|
|
53599
|
+
"trustMode": {
|
|
53600
|
+
"anyOf": [
|
|
53601
|
+
{
|
|
53602
|
+
"type": "string"
|
|
53603
|
+
},
|
|
53604
|
+
{
|
|
53605
|
+
"type": "null"
|
|
53606
|
+
}
|
|
53607
|
+
]
|
|
53608
|
+
},
|
|
53609
|
+
"allowedPaths": {
|
|
53610
|
+
"type": "array",
|
|
53611
|
+
"items": {
|
|
53612
|
+
"type": "string"
|
|
53613
|
+
}
|
|
53614
|
+
},
|
|
53615
|
+
"allowedHosts": {
|
|
53616
|
+
"type": "array",
|
|
53617
|
+
"items": {
|
|
53618
|
+
"type": "string"
|
|
53619
|
+
}
|
|
53620
|
+
}
|
|
53621
|
+
},
|
|
53622
|
+
"required": [
|
|
53623
|
+
"name",
|
|
53624
|
+
"command"
|
|
53625
|
+
],
|
|
53626
|
+
"additionalProperties": false
|
|
53627
|
+
}
|
|
53628
|
+
},
|
|
53629
|
+
"required": [
|
|
53630
|
+
"server"
|
|
53631
|
+
],
|
|
53632
|
+
"additionalProperties": true
|
|
53633
|
+
},
|
|
53634
|
+
"outputSchema": {
|
|
53635
|
+
"type": "object",
|
|
53636
|
+
"properties": {
|
|
53637
|
+
"scope": {
|
|
53638
|
+
"type": "string",
|
|
53639
|
+
"enum": [
|
|
53640
|
+
"project",
|
|
53641
|
+
"global"
|
|
53642
|
+
]
|
|
53643
|
+
},
|
|
53644
|
+
"path": {
|
|
53645
|
+
"type": "string"
|
|
53646
|
+
},
|
|
53647
|
+
"removed": {
|
|
53648
|
+
"type": "boolean"
|
|
53649
|
+
},
|
|
53650
|
+
"reload": {
|
|
53651
|
+
"type": "object",
|
|
53652
|
+
"properties": {
|
|
53653
|
+
"added": {
|
|
53654
|
+
"type": "number"
|
|
53655
|
+
},
|
|
53656
|
+
"changed": {
|
|
53657
|
+
"type": "number"
|
|
53658
|
+
},
|
|
53659
|
+
"removed": {
|
|
53660
|
+
"type": "number"
|
|
53661
|
+
},
|
|
53662
|
+
"unchanged": {
|
|
53663
|
+
"type": "number"
|
|
53664
|
+
},
|
|
53665
|
+
"servers": {
|
|
53666
|
+
"type": "array",
|
|
53667
|
+
"items": {
|
|
53668
|
+
"type": "object",
|
|
53669
|
+
"properties": {
|
|
53670
|
+
"name": {
|
|
53671
|
+
"type": "string"
|
|
53672
|
+
},
|
|
53673
|
+
"action": {
|
|
53674
|
+
"type": "string",
|
|
53675
|
+
"enum": [
|
|
53676
|
+
"added",
|
|
53677
|
+
"changed",
|
|
53678
|
+
"removed",
|
|
53679
|
+
"unchanged"
|
|
53680
|
+
]
|
|
53681
|
+
},
|
|
53682
|
+
"connected": {
|
|
53683
|
+
"type": "boolean"
|
|
53684
|
+
}
|
|
53685
|
+
},
|
|
53686
|
+
"required": [
|
|
53687
|
+
"name",
|
|
53688
|
+
"action",
|
|
53689
|
+
"connected"
|
|
53690
|
+
],
|
|
53691
|
+
"additionalProperties": false
|
|
53692
|
+
}
|
|
53693
|
+
}
|
|
53694
|
+
},
|
|
53695
|
+
"required": [
|
|
53696
|
+
"added",
|
|
53697
|
+
"changed",
|
|
53698
|
+
"removed",
|
|
53699
|
+
"unchanged",
|
|
53700
|
+
"servers"
|
|
53701
|
+
],
|
|
53702
|
+
"additionalProperties": false
|
|
53703
|
+
},
|
|
53704
|
+
"config": {
|
|
53705
|
+
"type": "object",
|
|
53706
|
+
"properties": {
|
|
53707
|
+
"locations": {
|
|
53708
|
+
"type": "array",
|
|
53709
|
+
"items": {
|
|
53710
|
+
"type": "object",
|
|
53711
|
+
"properties": {
|
|
53712
|
+
"scope": {
|
|
53713
|
+
"type": "string"
|
|
53714
|
+
},
|
|
53715
|
+
"kind": {
|
|
53716
|
+
"type": "string"
|
|
53717
|
+
},
|
|
53718
|
+
"path": {
|
|
53719
|
+
"type": "string"
|
|
53720
|
+
},
|
|
53721
|
+
"writable": {
|
|
53722
|
+
"type": "boolean"
|
|
53723
|
+
}
|
|
53724
|
+
},
|
|
53725
|
+
"required": [
|
|
53726
|
+
"scope",
|
|
53727
|
+
"kind",
|
|
53728
|
+
"path",
|
|
53729
|
+
"writable"
|
|
53730
|
+
],
|
|
53731
|
+
"additionalProperties": false
|
|
53732
|
+
}
|
|
53733
|
+
},
|
|
53734
|
+
"servers": {
|
|
53735
|
+
"type": "array",
|
|
53736
|
+
"items": {
|
|
53737
|
+
"type": "object",
|
|
53738
|
+
"properties": {
|
|
53739
|
+
"name": {
|
|
53740
|
+
"type": "string"
|
|
53741
|
+
},
|
|
53742
|
+
"command": {
|
|
53743
|
+
"type": "string"
|
|
53744
|
+
},
|
|
53745
|
+
"args": {
|
|
53746
|
+
"type": "array",
|
|
53747
|
+
"items": {
|
|
53748
|
+
"type": "string"
|
|
53749
|
+
}
|
|
53750
|
+
},
|
|
53751
|
+
"envKeys": {
|
|
53752
|
+
"type": "array",
|
|
53753
|
+
"items": {
|
|
53754
|
+
"type": "string"
|
|
53755
|
+
}
|
|
53756
|
+
},
|
|
53757
|
+
"role": {
|
|
53758
|
+
"anyOf": [
|
|
53759
|
+
{
|
|
53760
|
+
"type": "string"
|
|
53761
|
+
},
|
|
53762
|
+
{
|
|
53763
|
+
"type": "null"
|
|
53764
|
+
}
|
|
53765
|
+
]
|
|
53766
|
+
},
|
|
53767
|
+
"trustMode": {
|
|
53768
|
+
"anyOf": [
|
|
53769
|
+
{
|
|
53770
|
+
"type": "string"
|
|
53771
|
+
},
|
|
53772
|
+
{
|
|
53773
|
+
"type": "null"
|
|
53774
|
+
}
|
|
53775
|
+
]
|
|
53776
|
+
},
|
|
53777
|
+
"allowedPaths": {
|
|
53778
|
+
"type": "array",
|
|
53779
|
+
"items": {
|
|
53780
|
+
"type": "string"
|
|
53781
|
+
}
|
|
53782
|
+
},
|
|
53783
|
+
"allowedHosts": {
|
|
53784
|
+
"type": "array",
|
|
53785
|
+
"items": {
|
|
53786
|
+
"type": "string"
|
|
53787
|
+
}
|
|
53788
|
+
},
|
|
53789
|
+
"source": {
|
|
53790
|
+
"type": "object",
|
|
53791
|
+
"properties": {
|
|
53792
|
+
"scope": {
|
|
53793
|
+
"type": "string"
|
|
53794
|
+
},
|
|
53795
|
+
"kind": {
|
|
53796
|
+
"type": "string"
|
|
53797
|
+
},
|
|
53798
|
+
"path": {
|
|
53799
|
+
"type": "string"
|
|
53800
|
+
},
|
|
53801
|
+
"writable": {
|
|
53802
|
+
"type": "boolean"
|
|
53803
|
+
}
|
|
53804
|
+
},
|
|
53805
|
+
"required": [
|
|
53806
|
+
"scope",
|
|
53807
|
+
"kind",
|
|
53808
|
+
"path",
|
|
53809
|
+
"writable"
|
|
53810
|
+
],
|
|
53811
|
+
"additionalProperties": false
|
|
53812
|
+
}
|
|
53813
|
+
},
|
|
53814
|
+
"required": [
|
|
53815
|
+
"name",
|
|
53816
|
+
"command",
|
|
53817
|
+
"args",
|
|
53818
|
+
"envKeys",
|
|
53819
|
+
"role",
|
|
53820
|
+
"trustMode",
|
|
53821
|
+
"allowedPaths",
|
|
53822
|
+
"allowedHosts",
|
|
53823
|
+
"source"
|
|
53824
|
+
],
|
|
53825
|
+
"additionalProperties": false
|
|
53826
|
+
}
|
|
53827
|
+
}
|
|
53828
|
+
},
|
|
53829
|
+
"required": [
|
|
53830
|
+
"locations",
|
|
53831
|
+
"servers"
|
|
53832
|
+
],
|
|
53833
|
+
"additionalProperties": false
|
|
53834
|
+
}
|
|
53835
|
+
},
|
|
53836
|
+
"required": [
|
|
53837
|
+
"scope",
|
|
53838
|
+
"path",
|
|
53839
|
+
"reload",
|
|
53840
|
+
"config"
|
|
53841
|
+
],
|
|
53842
|
+
"additionalProperties": false
|
|
53843
|
+
},
|
|
53844
|
+
"invokable": true
|
|
53845
|
+
},
|
|
53846
|
+
{
|
|
53847
|
+
"id": "mcp.tools.list",
|
|
53848
|
+
"title": "MCP Tools List",
|
|
53849
|
+
"description": "Return currently connected MCP tools.",
|
|
53850
|
+
"category": "mcp",
|
|
53851
|
+
"source": "builtin",
|
|
53852
|
+
"access": "authenticated",
|
|
53853
|
+
"transport": [
|
|
53854
|
+
"http",
|
|
53855
|
+
"ws"
|
|
53856
|
+
],
|
|
53857
|
+
"scopes": [
|
|
53858
|
+
"read:mcp"
|
|
53859
|
+
],
|
|
53860
|
+
"http": {
|
|
53861
|
+
"method": "GET",
|
|
53862
|
+
"path": "/api/mcp/tools"
|
|
53863
|
+
},
|
|
53864
|
+
"events": [
|
|
53865
|
+
"runtime.mcp"
|
|
53866
|
+
],
|
|
53867
|
+
"inputSchema": {
|
|
53868
|
+
"type": "object",
|
|
53869
|
+
"properties": {},
|
|
53870
|
+
"additionalProperties": false
|
|
53871
|
+
},
|
|
53872
|
+
"outputSchema": {
|
|
53873
|
+
"type": "object",
|
|
53874
|
+
"properties": {
|
|
53875
|
+
"tools": {
|
|
53876
|
+
"type": "array",
|
|
53877
|
+
"items": {
|
|
53878
|
+
"type": "object",
|
|
53879
|
+
"properties": {
|
|
53880
|
+
"qualifiedName": {
|
|
53881
|
+
"type": "string"
|
|
53882
|
+
},
|
|
53883
|
+
"serverName": {
|
|
53884
|
+
"type": "string"
|
|
53885
|
+
},
|
|
53886
|
+
"toolName": {
|
|
53887
|
+
"type": "string"
|
|
53888
|
+
},
|
|
53889
|
+
"description": {
|
|
53890
|
+
"type": "string"
|
|
53891
|
+
}
|
|
53892
|
+
},
|
|
53893
|
+
"required": [
|
|
53894
|
+
"qualifiedName",
|
|
53895
|
+
"serverName",
|
|
53896
|
+
"toolName",
|
|
53897
|
+
"description"
|
|
53898
|
+
],
|
|
53899
|
+
"additionalProperties": false
|
|
53900
|
+
}
|
|
53901
|
+
}
|
|
53902
|
+
},
|
|
53903
|
+
"required": [
|
|
53904
|
+
"tools"
|
|
53905
|
+
],
|
|
53906
|
+
"additionalProperties": false
|
|
53907
|
+
},
|
|
53908
|
+
"invokable": true
|
|
53909
|
+
},
|
|
52824
53910
|
{
|
|
52825
53911
|
"id": "media.analyze",
|
|
52826
53912
|
"title": "Analyze Media Artifact",
|
|
@@ -52891,13 +53977,13 @@
|
|
|
52891
53977
|
{
|
|
52892
53978
|
"type": "object",
|
|
52893
53979
|
"additionalProperties": {
|
|
52894
|
-
"$ref": "$.operator.methods[
|
|
53980
|
+
"$ref": "$.operator.methods[189].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
52895
53981
|
}
|
|
52896
53982
|
},
|
|
52897
53983
|
{
|
|
52898
53984
|
"type": "array",
|
|
52899
53985
|
"items": {
|
|
52900
|
-
"$ref": "$.operator.methods[
|
|
53986
|
+
"$ref": "$.operator.methods[189].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
52901
53987
|
}
|
|
52902
53988
|
}
|
|
52903
53989
|
]
|
|
@@ -52938,13 +54024,13 @@
|
|
|
52938
54024
|
{
|
|
52939
54025
|
"type": "object",
|
|
52940
54026
|
"additionalProperties": {
|
|
52941
|
-
"$ref": "$.operator.methods[
|
|
54027
|
+
"$ref": "$.operator.methods[189].inputSchema.properties.metadata.additionalProperties"
|
|
52942
54028
|
}
|
|
52943
54029
|
},
|
|
52944
54030
|
{
|
|
52945
54031
|
"type": "array",
|
|
52946
54032
|
"items": {
|
|
52947
|
-
"$ref": "$.operator.methods[
|
|
54033
|
+
"$ref": "$.operator.methods[189].inputSchema.properties.metadata.additionalProperties"
|
|
52948
54034
|
}
|
|
52949
54035
|
}
|
|
52950
54036
|
]
|
|
@@ -52990,13 +54076,13 @@
|
|
|
52990
54076
|
{
|
|
52991
54077
|
"type": "object",
|
|
52992
54078
|
"additionalProperties": {
|
|
52993
|
-
"$ref": "$.operator.methods[
|
|
54079
|
+
"$ref": "$.operator.methods[189].outputSchema.properties.metadata.additionalProperties"
|
|
52994
54080
|
}
|
|
52995
54081
|
},
|
|
52996
54082
|
{
|
|
52997
54083
|
"type": "array",
|
|
52998
54084
|
"items": {
|
|
52999
|
-
"$ref": "$.operator.methods[
|
|
54085
|
+
"$ref": "$.operator.methods[189].outputSchema.properties.metadata.additionalProperties"
|
|
53000
54086
|
}
|
|
53001
54087
|
}
|
|
53002
54088
|
]
|
|
@@ -53063,13 +54149,13 @@
|
|
|
53063
54149
|
{
|
|
53064
54150
|
"type": "object",
|
|
53065
54151
|
"additionalProperties": {
|
|
53066
|
-
"$ref": "$.operator.methods[
|
|
54152
|
+
"$ref": "$.operator.methods[190].inputSchema.properties.options.additionalProperties"
|
|
53067
54153
|
}
|
|
53068
54154
|
},
|
|
53069
54155
|
{
|
|
53070
54156
|
"type": "array",
|
|
53071
54157
|
"items": {
|
|
53072
|
-
"$ref": "$.operator.methods[
|
|
54158
|
+
"$ref": "$.operator.methods[190].inputSchema.properties.options.additionalProperties"
|
|
53073
54159
|
}
|
|
53074
54160
|
}
|
|
53075
54161
|
]
|
|
@@ -53094,13 +54180,13 @@
|
|
|
53094
54180
|
{
|
|
53095
54181
|
"type": "object",
|
|
53096
54182
|
"additionalProperties": {
|
|
53097
|
-
"$ref": "$.operator.methods[
|
|
54183
|
+
"$ref": "$.operator.methods[190].inputSchema.properties.metadata.additionalProperties"
|
|
53098
54184
|
}
|
|
53099
54185
|
},
|
|
53100
54186
|
{
|
|
53101
54187
|
"type": "array",
|
|
53102
54188
|
"items": {
|
|
53103
|
-
"$ref": "$.operator.methods[
|
|
54189
|
+
"$ref": "$.operator.methods[190].inputSchema.properties.metadata.additionalProperties"
|
|
53104
54190
|
}
|
|
53105
54191
|
}
|
|
53106
54192
|
]
|
|
@@ -53184,13 +54270,13 @@
|
|
|
53184
54270
|
{
|
|
53185
54271
|
"type": "object",
|
|
53186
54272
|
"additionalProperties": {
|
|
53187
|
-
"$ref": "$.operator.methods[
|
|
54273
|
+
"$ref": "$.operator.methods[190].outputSchema.properties.artifacts.items.properties.metadata.additionalProperties"
|
|
53188
54274
|
}
|
|
53189
54275
|
},
|
|
53190
54276
|
{
|
|
53191
54277
|
"type": "array",
|
|
53192
54278
|
"items": {
|
|
53193
|
-
"$ref": "$.operator.methods[
|
|
54279
|
+
"$ref": "$.operator.methods[190].outputSchema.properties.artifacts.items.properties.metadata.additionalProperties"
|
|
53194
54280
|
}
|
|
53195
54281
|
}
|
|
53196
54282
|
]
|
|
@@ -53223,13 +54309,13 @@
|
|
|
53223
54309
|
{
|
|
53224
54310
|
"type": "object",
|
|
53225
54311
|
"additionalProperties": {
|
|
53226
|
-
"$ref": "$.operator.methods[
|
|
54312
|
+
"$ref": "$.operator.methods[190].outputSchema.properties.metadata.additionalProperties"
|
|
53227
54313
|
}
|
|
53228
54314
|
},
|
|
53229
54315
|
{
|
|
53230
54316
|
"type": "array",
|
|
53231
54317
|
"items": {
|
|
53232
|
-
"$ref": "$.operator.methods[
|
|
54318
|
+
"$ref": "$.operator.methods[190].outputSchema.properties.metadata.additionalProperties"
|
|
53233
54319
|
}
|
|
53234
54320
|
}
|
|
53235
54321
|
]
|
|
@@ -53375,13 +54461,13 @@
|
|
|
53375
54461
|
{
|
|
53376
54462
|
"type": "object",
|
|
53377
54463
|
"additionalProperties": {
|
|
53378
|
-
"$ref": "$.operator.methods[
|
|
54464
|
+
"$ref": "$.operator.methods[192].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
53379
54465
|
}
|
|
53380
54466
|
},
|
|
53381
54467
|
{
|
|
53382
54468
|
"type": "array",
|
|
53383
54469
|
"items": {
|
|
53384
|
-
"$ref": "$.operator.methods[
|
|
54470
|
+
"$ref": "$.operator.methods[192].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
53385
54471
|
}
|
|
53386
54472
|
}
|
|
53387
54473
|
]
|
|
@@ -53419,13 +54505,13 @@
|
|
|
53419
54505
|
{
|
|
53420
54506
|
"type": "object",
|
|
53421
54507
|
"additionalProperties": {
|
|
53422
|
-
"$ref": "$.operator.methods[
|
|
54508
|
+
"$ref": "$.operator.methods[192].inputSchema.properties.options.additionalProperties"
|
|
53423
54509
|
}
|
|
53424
54510
|
},
|
|
53425
54511
|
{
|
|
53426
54512
|
"type": "array",
|
|
53427
54513
|
"items": {
|
|
53428
|
-
"$ref": "$.operator.methods[
|
|
54514
|
+
"$ref": "$.operator.methods[192].inputSchema.properties.options.additionalProperties"
|
|
53429
54515
|
}
|
|
53430
54516
|
}
|
|
53431
54517
|
]
|
|
@@ -53450,13 +54536,13 @@
|
|
|
53450
54536
|
{
|
|
53451
54537
|
"type": "object",
|
|
53452
54538
|
"additionalProperties": {
|
|
53453
|
-
"$ref": "$.operator.methods[
|
|
54539
|
+
"$ref": "$.operator.methods[192].inputSchema.properties.metadata.additionalProperties"
|
|
53454
54540
|
}
|
|
53455
54541
|
},
|
|
53456
54542
|
{
|
|
53457
54543
|
"type": "array",
|
|
53458
54544
|
"items": {
|
|
53459
|
-
"$ref": "$.operator.methods[
|
|
54545
|
+
"$ref": "$.operator.methods[192].inputSchema.properties.metadata.additionalProperties"
|
|
53460
54546
|
}
|
|
53461
54547
|
}
|
|
53462
54548
|
]
|
|
@@ -53539,13 +54625,13 @@
|
|
|
53539
54625
|
{
|
|
53540
54626
|
"type": "object",
|
|
53541
54627
|
"additionalProperties": {
|
|
53542
|
-
"$ref": "$.operator.methods[
|
|
54628
|
+
"$ref": "$.operator.methods[192].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
53543
54629
|
}
|
|
53544
54630
|
},
|
|
53545
54631
|
{
|
|
53546
54632
|
"type": "array",
|
|
53547
54633
|
"items": {
|
|
53548
|
-
"$ref": "$.operator.methods[
|
|
54634
|
+
"$ref": "$.operator.methods[192].outputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
53549
54635
|
}
|
|
53550
54636
|
}
|
|
53551
54637
|
]
|
|
@@ -53577,13 +54663,13 @@
|
|
|
53577
54663
|
{
|
|
53578
54664
|
"type": "object",
|
|
53579
54665
|
"additionalProperties": {
|
|
53580
|
-
"$ref": "$.operator.methods[
|
|
54666
|
+
"$ref": "$.operator.methods[192].outputSchema.properties.metadata.additionalProperties"
|
|
53581
54667
|
}
|
|
53582
54668
|
},
|
|
53583
54669
|
{
|
|
53584
54670
|
"type": "array",
|
|
53585
54671
|
"items": {
|
|
53586
|
-
"$ref": "$.operator.methods[
|
|
54672
|
+
"$ref": "$.operator.methods[192].outputSchema.properties.metadata.additionalProperties"
|
|
53587
54673
|
}
|
|
53588
54674
|
}
|
|
53589
54675
|
]
|
|
@@ -53663,13 +54749,13 @@
|
|
|
53663
54749
|
{
|
|
53664
54750
|
"type": "object",
|
|
53665
54751
|
"additionalProperties": {
|
|
53666
|
-
"$ref": "$.operator.methods[
|
|
54752
|
+
"$ref": "$.operator.methods[193].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
53667
54753
|
}
|
|
53668
54754
|
},
|
|
53669
54755
|
{
|
|
53670
54756
|
"type": "array",
|
|
53671
54757
|
"items": {
|
|
53672
|
-
"$ref": "$.operator.methods[
|
|
54758
|
+
"$ref": "$.operator.methods[193].inputSchema.properties.artifact.properties.metadata.additionalProperties"
|
|
53673
54759
|
}
|
|
53674
54760
|
}
|
|
53675
54761
|
]
|
|
@@ -53744,13 +54830,13 @@
|
|
|
53744
54830
|
{
|
|
53745
54831
|
"type": "object",
|
|
53746
54832
|
"additionalProperties": {
|
|
53747
|
-
"$ref": "$.operator.methods[
|
|
54833
|
+
"$ref": "$.operator.methods[193].inputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
53748
54834
|
}
|
|
53749
54835
|
},
|
|
53750
54836
|
{
|
|
53751
54837
|
"type": "array",
|
|
53752
54838
|
"items": {
|
|
53753
|
-
"$ref": "$.operator.methods[
|
|
54839
|
+
"$ref": "$.operator.methods[193].inputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
53754
54840
|
}
|
|
53755
54841
|
}
|
|
53756
54842
|
]
|
|
@@ -53781,13 +54867,13 @@
|
|
|
53781
54867
|
{
|
|
53782
54868
|
"type": "object",
|
|
53783
54869
|
"additionalProperties": {
|
|
53784
|
-
"$ref": "$.operator.methods[
|
|
54870
|
+
"$ref": "$.operator.methods[193].inputSchema.properties.metadata.additionalProperties"
|
|
53785
54871
|
}
|
|
53786
54872
|
},
|
|
53787
54873
|
{
|
|
53788
54874
|
"type": "array",
|
|
53789
54875
|
"items": {
|
|
53790
|
-
"$ref": "$.operator.methods[
|
|
54876
|
+
"$ref": "$.operator.methods[193].inputSchema.properties.metadata.additionalProperties"
|
|
53791
54877
|
}
|
|
53792
54878
|
}
|
|
53793
54879
|
]
|
|
@@ -53863,13 +54949,13 @@
|
|
|
53863
54949
|
{
|
|
53864
54950
|
"type": "object",
|
|
53865
54951
|
"additionalProperties": {
|
|
53866
|
-
"$ref": "$.operator.methods[
|
|
54952
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
53867
54953
|
}
|
|
53868
54954
|
},
|
|
53869
54955
|
{
|
|
53870
54956
|
"type": "array",
|
|
53871
54957
|
"items": {
|
|
53872
|
-
"$ref": "$.operator.methods[
|
|
54958
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
53873
54959
|
}
|
|
53874
54960
|
}
|
|
53875
54961
|
]
|
|
@@ -53953,13 +55039,13 @@
|
|
|
53953
55039
|
{
|
|
53954
55040
|
"type": "object",
|
|
53955
55041
|
"additionalProperties": {
|
|
53956
|
-
"$ref": "$.operator.methods[
|
|
55042
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
53957
55043
|
}
|
|
53958
55044
|
},
|
|
53959
55045
|
{
|
|
53960
55046
|
"type": "array",
|
|
53961
55047
|
"items": {
|
|
53962
|
-
"$ref": "$.operator.methods[
|
|
55048
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
53963
55049
|
}
|
|
53964
55050
|
}
|
|
53965
55051
|
]
|
|
@@ -53992,13 +55078,13 @@
|
|
|
53992
55078
|
{
|
|
53993
55079
|
"type": "object",
|
|
53994
55080
|
"additionalProperties": {
|
|
53995
|
-
"$ref": "$.operator.methods[
|
|
55081
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
53996
55082
|
}
|
|
53997
55083
|
},
|
|
53998
55084
|
{
|
|
53999
55085
|
"type": "array",
|
|
54000
55086
|
"items": {
|
|
54001
|
-
"$ref": "$.operator.methods[
|
|
55087
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
54002
55088
|
}
|
|
54003
55089
|
}
|
|
54004
55090
|
]
|
|
@@ -54106,13 +55192,13 @@
|
|
|
54106
55192
|
{
|
|
54107
55193
|
"type": "object",
|
|
54108
55194
|
"additionalProperties": {
|
|
54109
|
-
"$ref": "$.operator.methods[
|
|
55195
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
54110
55196
|
}
|
|
54111
55197
|
},
|
|
54112
55198
|
{
|
|
54113
55199
|
"type": "array",
|
|
54114
55200
|
"items": {
|
|
54115
|
-
"$ref": "$.operator.methods[
|
|
55201
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
54116
55202
|
}
|
|
54117
55203
|
}
|
|
54118
55204
|
]
|
|
@@ -54152,13 +55238,13 @@
|
|
|
54152
55238
|
{
|
|
54153
55239
|
"type": "object",
|
|
54154
55240
|
"additionalProperties": {
|
|
54155
|
-
"$ref": "$.operator.methods[
|
|
55241
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
54156
55242
|
}
|
|
54157
55243
|
},
|
|
54158
55244
|
{
|
|
54159
55245
|
"type": "array",
|
|
54160
55246
|
"items": {
|
|
54161
|
-
"$ref": "$.operator.methods[
|
|
55247
|
+
"$ref": "$.operator.methods[193].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
54162
55248
|
}
|
|
54163
55249
|
}
|
|
54164
55250
|
]
|
|
@@ -54264,13 +55350,13 @@
|
|
|
54264
55350
|
{
|
|
54265
55351
|
"type": "object",
|
|
54266
55352
|
"additionalProperties": {
|
|
54267
|
-
"$ref": "$.operator.methods[
|
|
55353
|
+
"$ref": "$.operator.methods[194].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
54268
55354
|
}
|
|
54269
55355
|
},
|
|
54270
55356
|
{
|
|
54271
55357
|
"type": "array",
|
|
54272
55358
|
"items": {
|
|
54273
|
-
"$ref": "$.operator.methods[
|
|
55359
|
+
"$ref": "$.operator.methods[194].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
54274
55360
|
}
|
|
54275
55361
|
}
|
|
54276
55362
|
]
|
|
@@ -54354,13 +55440,13 @@
|
|
|
54354
55440
|
{
|
|
54355
55441
|
"type": "object",
|
|
54356
55442
|
"additionalProperties": {
|
|
54357
|
-
"$ref": "$.operator.methods[
|
|
55443
|
+
"$ref": "$.operator.methods[194].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
54358
55444
|
}
|
|
54359
55445
|
},
|
|
54360
55446
|
{
|
|
54361
55447
|
"type": "array",
|
|
54362
55448
|
"items": {
|
|
54363
|
-
"$ref": "$.operator.methods[
|
|
55449
|
+
"$ref": "$.operator.methods[194].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
54364
55450
|
}
|
|
54365
55451
|
}
|
|
54366
55452
|
]
|
|
@@ -54393,13 +55479,13 @@
|
|
|
54393
55479
|
{
|
|
54394
55480
|
"type": "object",
|
|
54395
55481
|
"additionalProperties": {
|
|
54396
|
-
"$ref": "$.operator.methods[
|
|
55482
|
+
"$ref": "$.operator.methods[194].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
54397
55483
|
}
|
|
54398
55484
|
},
|
|
54399
55485
|
{
|
|
54400
55486
|
"type": "array",
|
|
54401
55487
|
"items": {
|
|
54402
|
-
"$ref": "$.operator.methods[
|
|
55488
|
+
"$ref": "$.operator.methods[194].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
54403
55489
|
}
|
|
54404
55490
|
}
|
|
54405
55491
|
]
|
|
@@ -54545,13 +55631,13 @@
|
|
|
54545
55631
|
{
|
|
54546
55632
|
"type": "object",
|
|
54547
55633
|
"additionalProperties": {
|
|
54548
|
-
"$ref": "$.operator.methods[
|
|
55634
|
+
"$ref": "$.operator.methods[195].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
54549
55635
|
}
|
|
54550
55636
|
},
|
|
54551
55637
|
{
|
|
54552
55638
|
"type": "array",
|
|
54553
55639
|
"items": {
|
|
54554
|
-
"$ref": "$.operator.methods[
|
|
55640
|
+
"$ref": "$.operator.methods[195].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
54555
55641
|
}
|
|
54556
55642
|
}
|
|
54557
55643
|
]
|
|
@@ -54651,13 +55737,13 @@
|
|
|
54651
55737
|
{
|
|
54652
55738
|
"type": "object",
|
|
54653
55739
|
"additionalProperties": {
|
|
54654
|
-
"$ref": "$.operator.methods[
|
|
55740
|
+
"$ref": "$.operator.methods[196].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
54655
55741
|
}
|
|
54656
55742
|
},
|
|
54657
55743
|
{
|
|
54658
55744
|
"type": "array",
|
|
54659
55745
|
"items": {
|
|
54660
|
-
"$ref": "$.operator.methods[
|
|
55746
|
+
"$ref": "$.operator.methods[196].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
54661
55747
|
}
|
|
54662
55748
|
}
|
|
54663
55749
|
]
|
|
@@ -54775,13 +55861,13 @@
|
|
|
54775
55861
|
{
|
|
54776
55862
|
"type": "object",
|
|
54777
55863
|
"additionalProperties": {
|
|
54778
|
-
"$ref": "$.operator.methods[
|
|
55864
|
+
"$ref": "$.operator.methods[197].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
54779
55865
|
}
|
|
54780
55866
|
},
|
|
54781
55867
|
{
|
|
54782
55868
|
"type": "array",
|
|
54783
55869
|
"items": {
|
|
54784
|
-
"$ref": "$.operator.methods[
|
|
55870
|
+
"$ref": "$.operator.methods[197].inputSchema.properties.analysis.properties.artifact.properties.metadata.additionalProperties"
|
|
54785
55871
|
}
|
|
54786
55872
|
}
|
|
54787
55873
|
]
|
|
@@ -54865,13 +55951,13 @@
|
|
|
54865
55951
|
{
|
|
54866
55952
|
"type": "object",
|
|
54867
55953
|
"additionalProperties": {
|
|
54868
|
-
"$ref": "$.operator.methods[
|
|
55954
|
+
"$ref": "$.operator.methods[197].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
54869
55955
|
}
|
|
54870
55956
|
},
|
|
54871
55957
|
{
|
|
54872
55958
|
"type": "array",
|
|
54873
55959
|
"items": {
|
|
54874
|
-
"$ref": "$.operator.methods[
|
|
55960
|
+
"$ref": "$.operator.methods[197].inputSchema.properties.analysis.properties.segments.items.properties.metadata.additionalProperties"
|
|
54875
55961
|
}
|
|
54876
55962
|
}
|
|
54877
55963
|
]
|
|
@@ -54904,13 +55990,13 @@
|
|
|
54904
55990
|
{
|
|
54905
55991
|
"type": "object",
|
|
54906
55992
|
"additionalProperties": {
|
|
54907
|
-
"$ref": "$.operator.methods[
|
|
55993
|
+
"$ref": "$.operator.methods[197].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
54908
55994
|
}
|
|
54909
55995
|
},
|
|
54910
55996
|
{
|
|
54911
55997
|
"type": "array",
|
|
54912
55998
|
"items": {
|
|
54913
|
-
"$ref": "$.operator.methods[
|
|
55999
|
+
"$ref": "$.operator.methods[197].inputSchema.properties.analysis.properties.metadata.additionalProperties"
|
|
54914
56000
|
}
|
|
54915
56001
|
}
|
|
54916
56002
|
]
|
|
@@ -54963,13 +56049,13 @@
|
|
|
54963
56049
|
{
|
|
54964
56050
|
"type": "object",
|
|
54965
56051
|
"additionalProperties": {
|
|
54966
|
-
"$ref": "$.operator.methods[
|
|
56052
|
+
"$ref": "$.operator.methods[197].inputSchema.properties.metadata.additionalProperties"
|
|
54967
56053
|
}
|
|
54968
56054
|
},
|
|
54969
56055
|
{
|
|
54970
56056
|
"type": "array",
|
|
54971
56057
|
"items": {
|
|
54972
|
-
"$ref": "$.operator.methods[
|
|
56058
|
+
"$ref": "$.operator.methods[197].inputSchema.properties.metadata.additionalProperties"
|
|
54973
56059
|
}
|
|
54974
56060
|
}
|
|
54975
56061
|
]
|
|
@@ -55042,13 +56128,13 @@
|
|
|
55042
56128
|
{
|
|
55043
56129
|
"type": "object",
|
|
55044
56130
|
"additionalProperties": {
|
|
55045
|
-
"$ref": "$.operator.methods[
|
|
56131
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
55046
56132
|
}
|
|
55047
56133
|
},
|
|
55048
56134
|
{
|
|
55049
56135
|
"type": "array",
|
|
55050
56136
|
"items": {
|
|
55051
|
-
"$ref": "$.operator.methods[
|
|
56137
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.writeback.properties.analysisArtifact.properties.metadata.additionalProperties"
|
|
55052
56138
|
}
|
|
55053
56139
|
}
|
|
55054
56140
|
]
|
|
@@ -55088,13 +56174,13 @@
|
|
|
55088
56174
|
{
|
|
55089
56175
|
"type": "object",
|
|
55090
56176
|
"additionalProperties": {
|
|
55091
|
-
"$ref": "$.operator.methods[
|
|
56177
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
55092
56178
|
}
|
|
55093
56179
|
},
|
|
55094
56180
|
{
|
|
55095
56181
|
"type": "array",
|
|
55096
56182
|
"items": {
|
|
55097
|
-
"$ref": "$.operator.methods[
|
|
56183
|
+
"$ref": "$.operator.methods[197].outputSchema.properties.writeback.properties.metadata.additionalProperties"
|
|
55098
56184
|
}
|
|
55099
56185
|
}
|
|
55100
56186
|
]
|
|
@@ -55244,13 +56330,13 @@
|
|
|
55244
56330
|
{
|
|
55245
56331
|
"type": "object",
|
|
55246
56332
|
"additionalProperties": {
|
|
55247
|
-
"$ref": "$.operator.methods[
|
|
56333
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
55248
56334
|
}
|
|
55249
56335
|
},
|
|
55250
56336
|
{
|
|
55251
56337
|
"type": "array",
|
|
55252
56338
|
"items": {
|
|
55253
|
-
"$ref": "$.operator.methods[
|
|
56339
|
+
"$ref": "$.operator.methods[198].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
55254
56340
|
}
|
|
55255
56341
|
}
|
|
55256
56342
|
]
|
|
@@ -55445,13 +56531,13 @@
|
|
|
55445
56531
|
{
|
|
55446
56532
|
"type": "object",
|
|
55447
56533
|
"additionalProperties": {
|
|
55448
|
-
"$ref": "$.operator.methods[
|
|
56534
|
+
"$ref": "$.operator.methods[199].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
55449
56535
|
}
|
|
55450
56536
|
},
|
|
55451
56537
|
{
|
|
55452
56538
|
"type": "array",
|
|
55453
56539
|
"items": {
|
|
55454
|
-
"$ref": "$.operator.methods[
|
|
56540
|
+
"$ref": "$.operator.methods[199].outputSchema.properties.embeddings.properties.providers.items.properties.metadata.additionalProperties"
|
|
55455
56541
|
}
|
|
55456
56542
|
}
|
|
55457
56543
|
]
|
|
@@ -56780,13 +57866,13 @@
|
|
|
56780
57866
|
{
|
|
56781
57867
|
"type": "object",
|
|
56782
57868
|
"additionalProperties": {
|
|
56783
|
-
"$ref": "$.operator.methods[
|
|
57869
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.contract.properties.endpoints.items.properties.inputSchema.additionalProperties"
|
|
56784
57870
|
}
|
|
56785
57871
|
},
|
|
56786
57872
|
{
|
|
56787
57873
|
"type": "array",
|
|
56788
57874
|
"items": {
|
|
56789
|
-
"$ref": "$.operator.methods[
|
|
57875
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.contract.properties.endpoints.items.properties.inputSchema.additionalProperties"
|
|
56790
57876
|
}
|
|
56791
57877
|
}
|
|
56792
57878
|
]
|
|
@@ -56811,13 +57897,13 @@
|
|
|
56811
57897
|
{
|
|
56812
57898
|
"type": "object",
|
|
56813
57899
|
"additionalProperties": {
|
|
56814
|
-
"$ref": "$.operator.methods[
|
|
57900
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.contract.properties.endpoints.items.properties.outputSchema.additionalProperties"
|
|
56815
57901
|
}
|
|
56816
57902
|
},
|
|
56817
57903
|
{
|
|
56818
57904
|
"type": "array",
|
|
56819
57905
|
"items": {
|
|
56820
|
-
"$ref": "$.operator.methods[
|
|
57906
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.contract.properties.endpoints.items.properties.outputSchema.additionalProperties"
|
|
56821
57907
|
}
|
|
56822
57908
|
}
|
|
56823
57909
|
]
|
|
@@ -56867,13 +57953,13 @@
|
|
|
56867
57953
|
{
|
|
56868
57954
|
"type": "object",
|
|
56869
57955
|
"additionalProperties": {
|
|
56870
|
-
"$ref": "$.operator.methods[
|
|
57956
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.contract.properties.metadata.additionalProperties"
|
|
56871
57957
|
}
|
|
56872
57958
|
},
|
|
56873
57959
|
{
|
|
56874
57960
|
"type": "array",
|
|
56875
57961
|
"items": {
|
|
56876
|
-
"$ref": "$.operator.methods[
|
|
57962
|
+
"$ref": "$.operator.methods[207].outputSchema.properties.contract.properties.metadata.additionalProperties"
|
|
56877
57963
|
}
|
|
56878
57964
|
}
|
|
56879
57965
|
]
|
|
@@ -56952,13 +58038,13 @@
|
|
|
56952
58038
|
{
|
|
56953
58039
|
"type": "object",
|
|
56954
58040
|
"additionalProperties": {
|
|
56955
|
-
"$ref": "$.operator.methods[
|
|
58041
|
+
"$ref": "$.operator.methods[208].inputSchema.properties.metadata.additionalProperties"
|
|
56956
58042
|
}
|
|
56957
58043
|
},
|
|
56958
58044
|
{
|
|
56959
58045
|
"type": "array",
|
|
56960
58046
|
"items": {
|
|
56961
|
-
"$ref": "$.operator.methods[
|
|
58047
|
+
"$ref": "$.operator.methods[208].inputSchema.properties.metadata.additionalProperties"
|
|
56962
58048
|
}
|
|
56963
58049
|
}
|
|
56964
58050
|
]
|
|
@@ -57079,13 +58165,13 @@
|
|
|
57079
58165
|
{
|
|
57080
58166
|
"type": "object",
|
|
57081
58167
|
"additionalProperties": {
|
|
57082
|
-
"$ref": "$.operator.methods[
|
|
58168
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
57083
58169
|
}
|
|
57084
58170
|
},
|
|
57085
58171
|
{
|
|
57086
58172
|
"type": "array",
|
|
57087
58173
|
"items": {
|
|
57088
|
-
"$ref": "$.operator.methods[
|
|
58174
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
57089
58175
|
}
|
|
57090
58176
|
}
|
|
57091
58177
|
]
|
|
@@ -57251,13 +58337,13 @@
|
|
|
57251
58337
|
{
|
|
57252
58338
|
"type": "object",
|
|
57253
58339
|
"additionalProperties": {
|
|
57254
|
-
"$ref": "$.operator.methods[
|
|
58340
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
57255
58341
|
}
|
|
57256
58342
|
},
|
|
57257
58343
|
{
|
|
57258
58344
|
"type": "array",
|
|
57259
58345
|
"items": {
|
|
57260
|
-
"$ref": "$.operator.methods[
|
|
58346
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
57261
58347
|
}
|
|
57262
58348
|
}
|
|
57263
58349
|
]
|
|
@@ -57421,13 +58507,13 @@
|
|
|
57421
58507
|
{
|
|
57422
58508
|
"type": "object",
|
|
57423
58509
|
"additionalProperties": {
|
|
57424
|
-
"$ref": "$.operator.methods[
|
|
58510
|
+
"$ref": "$.operator.methods[209].outputSchema.properties.requests.items.properties.metadata.additionalProperties"
|
|
57425
58511
|
}
|
|
57426
58512
|
},
|
|
57427
58513
|
{
|
|
57428
58514
|
"type": "array",
|
|
57429
58515
|
"items": {
|
|
57430
|
-
"$ref": "$.operator.methods[
|
|
58516
|
+
"$ref": "$.operator.methods[209].outputSchema.properties.requests.items.properties.metadata.additionalProperties"
|
|
57431
58517
|
}
|
|
57432
58518
|
}
|
|
57433
58519
|
]
|
|
@@ -57509,13 +58595,13 @@
|
|
|
57509
58595
|
{
|
|
57510
58596
|
"type": "object",
|
|
57511
58597
|
"additionalProperties": {
|
|
57512
|
-
"$ref": "$.operator.methods[
|
|
58598
|
+
"$ref": "$.operator.methods[210].inputSchema.properties.metadata.additionalProperties"
|
|
57513
58599
|
}
|
|
57514
58600
|
},
|
|
57515
58601
|
{
|
|
57516
58602
|
"type": "array",
|
|
57517
58603
|
"items": {
|
|
57518
|
-
"$ref": "$.operator.methods[
|
|
58604
|
+
"$ref": "$.operator.methods[210].inputSchema.properties.metadata.additionalProperties"
|
|
57519
58605
|
}
|
|
57520
58606
|
}
|
|
57521
58607
|
]
|
|
@@ -57636,13 +58722,13 @@
|
|
|
57636
58722
|
{
|
|
57637
58723
|
"type": "object",
|
|
57638
58724
|
"additionalProperties": {
|
|
57639
|
-
"$ref": "$.operator.methods[
|
|
58725
|
+
"$ref": "$.operator.methods[210].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
57640
58726
|
}
|
|
57641
58727
|
},
|
|
57642
58728
|
{
|
|
57643
58729
|
"type": "array",
|
|
57644
58730
|
"items": {
|
|
57645
|
-
"$ref": "$.operator.methods[
|
|
58731
|
+
"$ref": "$.operator.methods[210].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
57646
58732
|
}
|
|
57647
58733
|
}
|
|
57648
58734
|
]
|
|
@@ -57855,13 +58941,13 @@
|
|
|
57855
58941
|
{
|
|
57856
58942
|
"type": "object",
|
|
57857
58943
|
"additionalProperties": {
|
|
57858
|
-
"$ref": "$.operator.methods[
|
|
58944
|
+
"$ref": "$.operator.methods[211].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
57859
58945
|
}
|
|
57860
58946
|
},
|
|
57861
58947
|
{
|
|
57862
58948
|
"type": "array",
|
|
57863
58949
|
"items": {
|
|
57864
|
-
"$ref": "$.operator.methods[
|
|
58950
|
+
"$ref": "$.operator.methods[211].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
57865
58951
|
}
|
|
57866
58952
|
}
|
|
57867
58953
|
]
|
|
@@ -57934,13 +59020,13 @@
|
|
|
57934
59020
|
{
|
|
57935
59021
|
"type": "object",
|
|
57936
59022
|
"additionalProperties": {
|
|
57937
|
-
"$ref": "$.operator.methods[
|
|
59023
|
+
"$ref": "$.operator.methods[212].inputSchema.properties.payload"
|
|
57938
59024
|
}
|
|
57939
59025
|
},
|
|
57940
59026
|
{
|
|
57941
59027
|
"type": "array",
|
|
57942
59028
|
"items": {
|
|
57943
|
-
"$ref": "$.operator.methods[
|
|
59029
|
+
"$ref": "$.operator.methods[212].inputSchema.properties.payload"
|
|
57944
59030
|
}
|
|
57945
59031
|
}
|
|
57946
59032
|
]
|
|
@@ -57993,13 +59079,13 @@
|
|
|
57993
59079
|
{
|
|
57994
59080
|
"type": "object",
|
|
57995
59081
|
"additionalProperties": {
|
|
57996
|
-
"$ref": "$.operator.methods[
|
|
59082
|
+
"$ref": "$.operator.methods[212].inputSchema.properties.metadata.additionalProperties"
|
|
57997
59083
|
}
|
|
57998
59084
|
},
|
|
57999
59085
|
{
|
|
58000
59086
|
"type": "array",
|
|
58001
59087
|
"items": {
|
|
58002
|
-
"$ref": "$.operator.methods[
|
|
59088
|
+
"$ref": "$.operator.methods[212].inputSchema.properties.metadata.additionalProperties"
|
|
58003
59089
|
}
|
|
58004
59090
|
}
|
|
58005
59091
|
]
|
|
@@ -58080,13 +59166,13 @@
|
|
|
58080
59166
|
{
|
|
58081
59167
|
"type": "object",
|
|
58082
59168
|
"additionalProperties": {
|
|
58083
|
-
"$ref": "$.operator.methods[
|
|
59169
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.work.properties.payload"
|
|
58084
59170
|
}
|
|
58085
59171
|
},
|
|
58086
59172
|
{
|
|
58087
59173
|
"type": "array",
|
|
58088
59174
|
"items": {
|
|
58089
|
-
"$ref": "$.operator.methods[
|
|
59175
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.work.properties.payload"
|
|
58090
59176
|
}
|
|
58091
59177
|
}
|
|
58092
59178
|
]
|
|
@@ -58147,13 +59233,13 @@
|
|
|
58147
59233
|
{
|
|
58148
59234
|
"type": "object",
|
|
58149
59235
|
"additionalProperties": {
|
|
58150
|
-
"$ref": "$.operator.methods[
|
|
59236
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.work.properties.result"
|
|
58151
59237
|
}
|
|
58152
59238
|
},
|
|
58153
59239
|
{
|
|
58154
59240
|
"type": "array",
|
|
58155
59241
|
"items": {
|
|
58156
|
-
"$ref": "$.operator.methods[
|
|
59242
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.work.properties.result"
|
|
58157
59243
|
}
|
|
58158
59244
|
}
|
|
58159
59245
|
]
|
|
@@ -58243,13 +59329,13 @@
|
|
|
58243
59329
|
{
|
|
58244
59330
|
"type": "object",
|
|
58245
59331
|
"additionalProperties": {
|
|
58246
|
-
"$ref": "$.operator.methods[
|
|
59332
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
58247
59333
|
}
|
|
58248
59334
|
},
|
|
58249
59335
|
{
|
|
58250
59336
|
"type": "array",
|
|
58251
59337
|
"items": {
|
|
58252
|
-
"$ref": "$.operator.methods[
|
|
59338
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
58253
59339
|
}
|
|
58254
59340
|
}
|
|
58255
59341
|
]
|
|
@@ -58453,13 +59539,13 @@
|
|
|
58453
59539
|
{
|
|
58454
59540
|
"type": "object",
|
|
58455
59541
|
"additionalProperties": {
|
|
58456
|
-
"$ref": "$.operator.methods[
|
|
59542
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.peers.items.properties.metadata.additionalProperties"
|
|
58457
59543
|
}
|
|
58458
59544
|
},
|
|
58459
59545
|
{
|
|
58460
59546
|
"type": "array",
|
|
58461
59547
|
"items": {
|
|
58462
|
-
"$ref": "$.operator.methods[
|
|
59548
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.peers.items.properties.metadata.additionalProperties"
|
|
58463
59549
|
}
|
|
58464
59550
|
}
|
|
58465
59551
|
]
|
|
@@ -58670,13 +59756,13 @@
|
|
|
58670
59756
|
{
|
|
58671
59757
|
"type": "object",
|
|
58672
59758
|
"additionalProperties": {
|
|
58673
|
-
"$ref": "$.operator.methods[
|
|
59759
|
+
"$ref": "$.operator.methods[214].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
58674
59760
|
}
|
|
58675
59761
|
},
|
|
58676
59762
|
{
|
|
58677
59763
|
"type": "array",
|
|
58678
59764
|
"items": {
|
|
58679
|
-
"$ref": "$.operator.methods[
|
|
59765
|
+
"$ref": "$.operator.methods[214].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
58680
59766
|
}
|
|
58681
59767
|
}
|
|
58682
59768
|
]
|
|
@@ -58889,13 +59975,13 @@
|
|
|
58889
59975
|
{
|
|
58890
59976
|
"type": "object",
|
|
58891
59977
|
"additionalProperties": {
|
|
58892
|
-
"$ref": "$.operator.methods[
|
|
59978
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
58893
59979
|
}
|
|
58894
59980
|
},
|
|
58895
59981
|
{
|
|
58896
59982
|
"type": "array",
|
|
58897
59983
|
"items": {
|
|
58898
|
-
"$ref": "$.operator.methods[
|
|
59984
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
58899
59985
|
}
|
|
58900
59986
|
}
|
|
58901
59987
|
]
|
|
@@ -59372,13 +60458,13 @@
|
|
|
59372
60458
|
{
|
|
59373
60459
|
"type": "object",
|
|
59374
60460
|
"additionalProperties": {
|
|
59375
|
-
"$ref": "$.operator.methods[
|
|
60461
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
|
|
59376
60462
|
}
|
|
59377
60463
|
},
|
|
59378
60464
|
{
|
|
59379
60465
|
"type": "array",
|
|
59380
60466
|
"items": {
|
|
59381
|
-
"$ref": "$.operator.methods[
|
|
60467
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
|
|
59382
60468
|
}
|
|
59383
60469
|
}
|
|
59384
60470
|
]
|
|
@@ -59547,13 +60633,13 @@
|
|
|
59547
60633
|
{
|
|
59548
60634
|
"type": "object",
|
|
59549
60635
|
"additionalProperties": {
|
|
59550
|
-
"$ref": "$.operator.methods[
|
|
60636
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
|
|
59551
60637
|
}
|
|
59552
60638
|
},
|
|
59553
60639
|
{
|
|
59554
60640
|
"type": "array",
|
|
59555
60641
|
"items": {
|
|
59556
|
-
"$ref": "$.operator.methods[
|
|
60642
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
|
|
59557
60643
|
}
|
|
59558
60644
|
}
|
|
59559
60645
|
]
|
|
@@ -59642,13 +60728,13 @@
|
|
|
59642
60728
|
{
|
|
59643
60729
|
"type": "object",
|
|
59644
60730
|
"additionalProperties": {
|
|
59645
|
-
"$ref": "$.operator.methods[
|
|
60731
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.work.items.properties.payload"
|
|
59646
60732
|
}
|
|
59647
60733
|
},
|
|
59648
60734
|
{
|
|
59649
60735
|
"type": "array",
|
|
59650
60736
|
"items": {
|
|
59651
|
-
"$ref": "$.operator.methods[
|
|
60737
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.work.items.properties.payload"
|
|
59652
60738
|
}
|
|
59653
60739
|
}
|
|
59654
60740
|
]
|
|
@@ -59709,13 +60795,13 @@
|
|
|
59709
60795
|
{
|
|
59710
60796
|
"type": "object",
|
|
59711
60797
|
"additionalProperties": {
|
|
59712
|
-
"$ref": "$.operator.methods[
|
|
60798
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.work.items.properties.result"
|
|
59713
60799
|
}
|
|
59714
60800
|
},
|
|
59715
60801
|
{
|
|
59716
60802
|
"type": "array",
|
|
59717
60803
|
"items": {
|
|
59718
|
-
"$ref": "$.operator.methods[
|
|
60804
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.work.items.properties.result"
|
|
59719
60805
|
}
|
|
59720
60806
|
}
|
|
59721
60807
|
]
|
|
@@ -59805,13 +60891,13 @@
|
|
|
59805
60891
|
{
|
|
59806
60892
|
"type": "object",
|
|
59807
60893
|
"additionalProperties": {
|
|
59808
|
-
"$ref": "$.operator.methods[
|
|
60894
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
|
|
59809
60895
|
}
|
|
59810
60896
|
},
|
|
59811
60897
|
{
|
|
59812
60898
|
"type": "array",
|
|
59813
60899
|
"items": {
|
|
59814
|
-
"$ref": "$.operator.methods[
|
|
60900
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
|
|
59815
60901
|
}
|
|
59816
60902
|
}
|
|
59817
60903
|
]
|
|
@@ -59899,13 +60985,13 @@
|
|
|
59899
60985
|
{
|
|
59900
60986
|
"type": "object",
|
|
59901
60987
|
"additionalProperties": {
|
|
59902
|
-
"$ref": "$.operator.methods[
|
|
60988
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
|
|
59903
60989
|
}
|
|
59904
60990
|
},
|
|
59905
60991
|
{
|
|
59906
60992
|
"type": "array",
|
|
59907
60993
|
"items": {
|
|
59908
|
-
"$ref": "$.operator.methods[
|
|
60994
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
|
|
59909
60995
|
}
|
|
59910
60996
|
}
|
|
59911
60997
|
]
|
|
@@ -60044,13 +61130,13 @@
|
|
|
60044
61130
|
{
|
|
60045
61131
|
"type": "object",
|
|
60046
61132
|
"additionalProperties": {
|
|
60047
|
-
"$ref": "$.operator.methods[
|
|
61133
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.work.properties.payload"
|
|
60048
61134
|
}
|
|
60049
61135
|
},
|
|
60050
61136
|
{
|
|
60051
61137
|
"type": "array",
|
|
60052
61138
|
"items": {
|
|
60053
|
-
"$ref": "$.operator.methods[
|
|
61139
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.work.properties.payload"
|
|
60054
61140
|
}
|
|
60055
61141
|
}
|
|
60056
61142
|
]
|
|
@@ -60111,13 +61197,13 @@
|
|
|
60111
61197
|
{
|
|
60112
61198
|
"type": "object",
|
|
60113
61199
|
"additionalProperties": {
|
|
60114
|
-
"$ref": "$.operator.methods[
|
|
61200
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.work.properties.result"
|
|
60115
61201
|
}
|
|
60116
61202
|
},
|
|
60117
61203
|
{
|
|
60118
61204
|
"type": "array",
|
|
60119
61205
|
"items": {
|
|
60120
|
-
"$ref": "$.operator.methods[
|
|
61206
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.work.properties.result"
|
|
60121
61207
|
}
|
|
60122
61208
|
}
|
|
60123
61209
|
]
|
|
@@ -60207,13 +61293,13 @@
|
|
|
60207
61293
|
{
|
|
60208
61294
|
"type": "object",
|
|
60209
61295
|
"additionalProperties": {
|
|
60210
|
-
"$ref": "$.operator.methods[
|
|
61296
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
60211
61297
|
}
|
|
60212
61298
|
},
|
|
60213
61299
|
{
|
|
60214
61300
|
"type": "array",
|
|
60215
61301
|
"items": {
|
|
60216
|
-
"$ref": "$.operator.methods[
|
|
61302
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
60217
61303
|
}
|
|
60218
61304
|
}
|
|
60219
61305
|
]
|
|
@@ -60336,13 +61422,13 @@
|
|
|
60336
61422
|
{
|
|
60337
61423
|
"type": "object",
|
|
60338
61424
|
"additionalProperties": {
|
|
60339
|
-
"$ref": "$.operator.methods[
|
|
61425
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.items.properties.payload"
|
|
60340
61426
|
}
|
|
60341
61427
|
},
|
|
60342
61428
|
{
|
|
60343
61429
|
"type": "array",
|
|
60344
61430
|
"items": {
|
|
60345
|
-
"$ref": "$.operator.methods[
|
|
61431
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.items.properties.payload"
|
|
60346
61432
|
}
|
|
60347
61433
|
}
|
|
60348
61434
|
]
|
|
@@ -60403,13 +61489,13 @@
|
|
|
60403
61489
|
{
|
|
60404
61490
|
"type": "object",
|
|
60405
61491
|
"additionalProperties": {
|
|
60406
|
-
"$ref": "$.operator.methods[
|
|
61492
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.items.properties.result"
|
|
60407
61493
|
}
|
|
60408
61494
|
},
|
|
60409
61495
|
{
|
|
60410
61496
|
"type": "array",
|
|
60411
61497
|
"items": {
|
|
60412
|
-
"$ref": "$.operator.methods[
|
|
61498
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.items.properties.result"
|
|
60413
61499
|
}
|
|
60414
61500
|
}
|
|
60415
61501
|
]
|
|
@@ -60499,13 +61585,13 @@
|
|
|
60499
61585
|
{
|
|
60500
61586
|
"type": "object",
|
|
60501
61587
|
"additionalProperties": {
|
|
60502
|
-
"$ref": "$.operator.methods[
|
|
61588
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.items.properties.metadata.additionalProperties"
|
|
60503
61589
|
}
|
|
60504
61590
|
},
|
|
60505
61591
|
{
|
|
60506
61592
|
"type": "array",
|
|
60507
61593
|
"items": {
|
|
60508
|
-
"$ref": "$.operator.methods[
|
|
61594
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.items.properties.metadata.additionalProperties"
|
|
60509
61595
|
}
|
|
60510
61596
|
}
|
|
60511
61597
|
]
|
|
@@ -60688,13 +61774,13 @@
|
|
|
60688
61774
|
{
|
|
60689
61775
|
"type": "object",
|
|
60690
61776
|
"additionalProperties": {
|
|
60691
|
-
"$ref": "$.operator.methods[
|
|
61777
|
+
"$ref": "$.operator.methods[220].inputSchema.properties.metadata.additionalProperties"
|
|
60692
61778
|
}
|
|
60693
61779
|
},
|
|
60694
61780
|
{
|
|
60695
61781
|
"type": "array",
|
|
60696
61782
|
"items": {
|
|
60697
|
-
"$ref": "$.operator.methods[
|
|
61783
|
+
"$ref": "$.operator.methods[220].inputSchema.properties.metadata.additionalProperties"
|
|
60698
61784
|
}
|
|
60699
61785
|
}
|
|
60700
61786
|
]
|
|
@@ -60821,13 +61907,13 @@
|
|
|
60821
61907
|
{
|
|
60822
61908
|
"type": "object",
|
|
60823
61909
|
"additionalProperties": {
|
|
60824
|
-
"$ref": "$.operator.methods[
|
|
61910
|
+
"$ref": "$.operator.methods[220].outputSchema.properties.metadata.additionalProperties"
|
|
60825
61911
|
}
|
|
60826
61912
|
},
|
|
60827
61913
|
{
|
|
60828
61914
|
"type": "array",
|
|
60829
61915
|
"items": {
|
|
60830
|
-
"$ref": "$.operator.methods[
|
|
61916
|
+
"$ref": "$.operator.methods[220].outputSchema.properties.metadata.additionalProperties"
|
|
60831
61917
|
}
|
|
60832
61918
|
}
|
|
60833
61919
|
]
|
|
@@ -61043,13 +62129,13 @@
|
|
|
61043
62129
|
{
|
|
61044
62130
|
"type": "object",
|
|
61045
62131
|
"additionalProperties": {
|
|
61046
|
-
"$ref": "$.operator.methods[
|
|
62132
|
+
"$ref": "$.operator.methods[222].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
61047
62133
|
}
|
|
61048
62134
|
},
|
|
61049
62135
|
{
|
|
61050
62136
|
"type": "array",
|
|
61051
62137
|
"items": {
|
|
61052
|
-
"$ref": "$.operator.methods[
|
|
62138
|
+
"$ref": "$.operator.methods[222].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
61053
62139
|
}
|
|
61054
62140
|
}
|
|
61055
62141
|
]
|
|
@@ -61151,13 +62237,13 @@
|
|
|
61151
62237
|
{
|
|
61152
62238
|
"type": "object",
|
|
61153
62239
|
"additionalProperties": {
|
|
61154
|
-
"$ref": "$.operator.methods[
|
|
62240
|
+
"$ref": "$.operator.methods[223].inputSchema.properties.metadata.additionalProperties"
|
|
61155
62241
|
}
|
|
61156
62242
|
},
|
|
61157
62243
|
{
|
|
61158
62244
|
"type": "array",
|
|
61159
62245
|
"items": {
|
|
61160
|
-
"$ref": "$.operator.methods[
|
|
62246
|
+
"$ref": "$.operator.methods[223].inputSchema.properties.metadata.additionalProperties"
|
|
61161
62247
|
}
|
|
61162
62248
|
}
|
|
61163
62249
|
]
|
|
@@ -61278,13 +62364,13 @@
|
|
|
61278
62364
|
{
|
|
61279
62365
|
"type": "object",
|
|
61280
62366
|
"additionalProperties": {
|
|
61281
|
-
"$ref": "$.operator.methods[
|
|
62367
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.metadata.additionalProperties"
|
|
61282
62368
|
}
|
|
61283
62369
|
},
|
|
61284
62370
|
{
|
|
61285
62371
|
"type": "array",
|
|
61286
62372
|
"items": {
|
|
61287
|
-
"$ref": "$.operator.methods[
|
|
62373
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.metadata.additionalProperties"
|
|
61288
62374
|
}
|
|
61289
62375
|
}
|
|
61290
62376
|
]
|
|
@@ -61458,13 +62544,13 @@
|
|
|
61458
62544
|
{
|
|
61459
62545
|
"type": "object",
|
|
61460
62546
|
"additionalProperties": {
|
|
61461
|
-
"$ref": "$.operator.methods[
|
|
62547
|
+
"$ref": "$.operator.methods[224].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
61462
62548
|
}
|
|
61463
62549
|
},
|
|
61464
62550
|
{
|
|
61465
62551
|
"type": "array",
|
|
61466
62552
|
"items": {
|
|
61467
|
-
"$ref": "$.operator.methods[
|
|
62553
|
+
"$ref": "$.operator.methods[224].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
61468
62554
|
}
|
|
61469
62555
|
}
|
|
61470
62556
|
]
|
|
@@ -61582,13 +62668,13 @@
|
|
|
61582
62668
|
{
|
|
61583
62669
|
"type": "object",
|
|
61584
62670
|
"additionalProperties": {
|
|
61585
|
-
"$ref": "$.operator.methods[
|
|
62671
|
+
"$ref": "$.operator.methods[225].outputSchema.properties.surfaces.items.properties.metadata.additionalProperties"
|
|
61586
62672
|
}
|
|
61587
62673
|
},
|
|
61588
62674
|
{
|
|
61589
62675
|
"type": "array",
|
|
61590
62676
|
"items": {
|
|
61591
|
-
"$ref": "$.operator.methods[
|
|
62677
|
+
"$ref": "$.operator.methods[225].outputSchema.properties.surfaces.items.properties.metadata.additionalProperties"
|
|
61592
62678
|
}
|
|
61593
62679
|
}
|
|
61594
62680
|
]
|
|
@@ -63656,13 +64742,13 @@
|
|
|
63656
64742
|
{
|
|
63657
64743
|
"type": "object",
|
|
63658
64744
|
"additionalProperties": {
|
|
63659
|
-
"$ref": "$.operator.methods[
|
|
64745
|
+
"$ref": "$.operator.methods[233].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
63660
64746
|
}
|
|
63661
64747
|
},
|
|
63662
64748
|
{
|
|
63663
64749
|
"type": "array",
|
|
63664
64750
|
"items": {
|
|
63665
|
-
"$ref": "$.operator.methods[
|
|
64751
|
+
"$ref": "$.operator.methods[233].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
63666
64752
|
}
|
|
63667
64753
|
}
|
|
63668
64754
|
]
|
|
@@ -63850,13 +64936,13 @@
|
|
|
63850
64936
|
{
|
|
63851
64937
|
"type": "object",
|
|
63852
64938
|
"additionalProperties": {
|
|
63853
|
-
"$ref": "$.operator.methods[
|
|
64939
|
+
"$ref": "$.operator.methods[234].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
63854
64940
|
}
|
|
63855
64941
|
},
|
|
63856
64942
|
{
|
|
63857
64943
|
"type": "array",
|
|
63858
64944
|
"items": {
|
|
63859
|
-
"$ref": "$.operator.methods[
|
|
64945
|
+
"$ref": "$.operator.methods[234].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
63860
64946
|
}
|
|
63861
64947
|
}
|
|
63862
64948
|
]
|
|
@@ -64148,13 +65234,13 @@
|
|
|
64148
65234
|
{
|
|
64149
65235
|
"type": "object",
|
|
64150
65236
|
"additionalProperties": {
|
|
64151
|
-
"$ref": "$.operator.methods[
|
|
65237
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
64152
65238
|
}
|
|
64153
65239
|
},
|
|
64154
65240
|
{
|
|
64155
65241
|
"type": "array",
|
|
64156
65242
|
"items": {
|
|
64157
|
-
"$ref": "$.operator.methods[
|
|
65243
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
64158
65244
|
}
|
|
64159
65245
|
}
|
|
64160
65246
|
]
|
|
@@ -64243,13 +65329,13 @@
|
|
|
64243
65329
|
{
|
|
64244
65330
|
"type": "object",
|
|
64245
65331
|
"additionalProperties": {
|
|
64246
|
-
"$ref": "$.operator.methods[
|
|
65332
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
64247
65333
|
}
|
|
64248
65334
|
},
|
|
64249
65335
|
{
|
|
64250
65336
|
"type": "array",
|
|
64251
65337
|
"items": {
|
|
64252
|
-
"$ref": "$.operator.methods[
|
|
65338
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
64253
65339
|
}
|
|
64254
65340
|
}
|
|
64255
65341
|
]
|
|
@@ -64353,13 +65439,13 @@
|
|
|
64353
65439
|
{
|
|
64354
65440
|
"type": "object",
|
|
64355
65441
|
"additionalProperties": {
|
|
64356
|
-
"$ref": "$.operator.methods[
|
|
65442
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
64357
65443
|
}
|
|
64358
65444
|
},
|
|
64359
65445
|
{
|
|
64360
65446
|
"type": "array",
|
|
64361
65447
|
"items": {
|
|
64362
|
-
"$ref": "$.operator.methods[
|
|
65448
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
64363
65449
|
}
|
|
64364
65450
|
}
|
|
64365
65451
|
]
|
|
@@ -64665,13 +65751,13 @@
|
|
|
64665
65751
|
{
|
|
64666
65752
|
"type": "object",
|
|
64667
65753
|
"additionalProperties": {
|
|
64668
|
-
"$ref": "$.operator.methods[
|
|
65754
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
64669
65755
|
}
|
|
64670
65756
|
},
|
|
64671
65757
|
{
|
|
64672
65758
|
"type": "array",
|
|
64673
65759
|
"items": {
|
|
64674
|
-
"$ref": "$.operator.methods[
|
|
65760
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
64675
65761
|
}
|
|
64676
65762
|
}
|
|
64677
65763
|
]
|
|
@@ -64757,13 +65843,13 @@
|
|
|
64757
65843
|
{
|
|
64758
65844
|
"type": "object",
|
|
64759
65845
|
"additionalProperties": {
|
|
64760
|
-
"$ref": "$.operator.methods[
|
|
65846
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
64761
65847
|
}
|
|
64762
65848
|
},
|
|
64763
65849
|
{
|
|
64764
65850
|
"type": "array",
|
|
64765
65851
|
"items": {
|
|
64766
|
-
"$ref": "$.operator.methods[
|
|
65852
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
64767
65853
|
}
|
|
64768
65854
|
}
|
|
64769
65855
|
]
|
|
@@ -64914,13 +66000,13 @@
|
|
|
64914
66000
|
{
|
|
64915
66001
|
"type": "object",
|
|
64916
66002
|
"additionalProperties": {
|
|
64917
|
-
"$ref": "$.operator.methods[
|
|
66003
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
64918
66004
|
}
|
|
64919
66005
|
},
|
|
64920
66006
|
{
|
|
64921
66007
|
"type": "array",
|
|
64922
66008
|
"items": {
|
|
64923
|
-
"$ref": "$.operator.methods[
|
|
66009
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
64924
66010
|
}
|
|
64925
66011
|
}
|
|
64926
66012
|
]
|
|
@@ -65206,13 +66292,13 @@
|
|
|
65206
66292
|
{
|
|
65207
66293
|
"type": "object",
|
|
65208
66294
|
"additionalProperties": {
|
|
65209
|
-
"$ref": "$.operator.methods[
|
|
66295
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
65210
66296
|
}
|
|
65211
66297
|
},
|
|
65212
66298
|
{
|
|
65213
66299
|
"type": "array",
|
|
65214
66300
|
"items": {
|
|
65215
|
-
"$ref": "$.operator.methods[
|
|
66301
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
65216
66302
|
}
|
|
65217
66303
|
}
|
|
65218
66304
|
]
|
|
@@ -65325,13 +66411,13 @@
|
|
|
65325
66411
|
{
|
|
65326
66412
|
"type": "object",
|
|
65327
66413
|
"additionalProperties": {
|
|
65328
|
-
"$ref": "$.operator.methods[
|
|
66414
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.inputs.items.properties.metadata.additionalProperties"
|
|
65329
66415
|
}
|
|
65330
66416
|
},
|
|
65331
66417
|
{
|
|
65332
66418
|
"type": "array",
|
|
65333
66419
|
"items": {
|
|
65334
|
-
"$ref": "$.operator.methods[
|
|
66420
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.inputs.items.properties.metadata.additionalProperties"
|
|
65335
66421
|
}
|
|
65336
66422
|
}
|
|
65337
66423
|
]
|
|
@@ -65708,13 +66794,13 @@
|
|
|
65708
66794
|
{
|
|
65709
66795
|
"type": "object",
|
|
65710
66796
|
"additionalProperties": {
|
|
65711
|
-
"$ref": "$.operator.methods[
|
|
66797
|
+
"$ref": "$.operator.methods[240].outputSchema.properties.sessions.items.properties.metadata.additionalProperties"
|
|
65712
66798
|
}
|
|
65713
66799
|
},
|
|
65714
66800
|
{
|
|
65715
66801
|
"type": "array",
|
|
65716
66802
|
"items": {
|
|
65717
|
-
"$ref": "$.operator.methods[
|
|
66803
|
+
"$ref": "$.operator.methods[240].outputSchema.properties.sessions.items.properties.metadata.additionalProperties"
|
|
65718
66804
|
}
|
|
65719
66805
|
}
|
|
65720
66806
|
]
|
|
@@ -66033,13 +67119,13 @@
|
|
|
66033
67119
|
{
|
|
66034
67120
|
"type": "object",
|
|
66035
67121
|
"additionalProperties": {
|
|
66036
|
-
"$ref": "$.operator.methods[
|
|
67122
|
+
"$ref": "$.operator.methods[241].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
66037
67123
|
}
|
|
66038
67124
|
},
|
|
66039
67125
|
{
|
|
66040
67126
|
"type": "array",
|
|
66041
67127
|
"items": {
|
|
66042
|
-
"$ref": "$.operator.methods[
|
|
67128
|
+
"$ref": "$.operator.methods[241].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
66043
67129
|
}
|
|
66044
67130
|
}
|
|
66045
67131
|
]
|
|
@@ -66128,13 +67214,13 @@
|
|
|
66128
67214
|
{
|
|
66129
67215
|
"type": "object",
|
|
66130
67216
|
"additionalProperties": {
|
|
66131
|
-
"$ref": "$.operator.methods[
|
|
67217
|
+
"$ref": "$.operator.methods[241].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
|
|
66132
67218
|
}
|
|
66133
67219
|
},
|
|
66134
67220
|
{
|
|
66135
67221
|
"type": "array",
|
|
66136
67222
|
"items": {
|
|
66137
|
-
"$ref": "$.operator.methods[
|
|
67223
|
+
"$ref": "$.operator.methods[241].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
|
|
66138
67224
|
}
|
|
66139
67225
|
}
|
|
66140
67226
|
]
|
|
@@ -66238,13 +67324,13 @@
|
|
|
66238
67324
|
{
|
|
66239
67325
|
"type": "object",
|
|
66240
67326
|
"additionalProperties": {
|
|
66241
|
-
"$ref": "$.operator.methods[
|
|
67327
|
+
"$ref": "$.operator.methods[241].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
|
|
66242
67328
|
}
|
|
66243
67329
|
},
|
|
66244
67330
|
{
|
|
66245
67331
|
"type": "array",
|
|
66246
67332
|
"items": {
|
|
66247
|
-
"$ref": "$.operator.methods[
|
|
67333
|
+
"$ref": "$.operator.methods[241].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
|
|
66248
67334
|
}
|
|
66249
67335
|
}
|
|
66250
67336
|
]
|
|
@@ -66558,13 +67644,13 @@
|
|
|
66558
67644
|
{
|
|
66559
67645
|
"type": "object",
|
|
66560
67646
|
"additionalProperties": {
|
|
66561
|
-
"$ref": "$.operator.methods[
|
|
67647
|
+
"$ref": "$.operator.methods[242].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
66562
67648
|
}
|
|
66563
67649
|
},
|
|
66564
67650
|
{
|
|
66565
67651
|
"type": "array",
|
|
66566
67652
|
"items": {
|
|
66567
|
-
"$ref": "$.operator.methods[
|
|
67653
|
+
"$ref": "$.operator.methods[242].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
66568
67654
|
}
|
|
66569
67655
|
}
|
|
66570
67656
|
]
|
|
@@ -66650,13 +67736,13 @@
|
|
|
66650
67736
|
{
|
|
66651
67737
|
"type": "object",
|
|
66652
67738
|
"additionalProperties": {
|
|
66653
|
-
"$ref": "$.operator.methods[
|
|
67739
|
+
"$ref": "$.operator.methods[242].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
66654
67740
|
}
|
|
66655
67741
|
},
|
|
66656
67742
|
{
|
|
66657
67743
|
"type": "array",
|
|
66658
67744
|
"items": {
|
|
66659
|
-
"$ref": "$.operator.methods[
|
|
67745
|
+
"$ref": "$.operator.methods[242].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
66660
67746
|
}
|
|
66661
67747
|
}
|
|
66662
67748
|
]
|
|
@@ -66836,13 +67922,13 @@
|
|
|
66836
67922
|
{
|
|
66837
67923
|
"type": "object",
|
|
66838
67924
|
"additionalProperties": {
|
|
66839
|
-
"$ref": "$.operator.methods[
|
|
67925
|
+
"$ref": "$.operator.methods[243].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
66840
67926
|
}
|
|
66841
67927
|
},
|
|
66842
67928
|
{
|
|
66843
67929
|
"type": "array",
|
|
66844
67930
|
"items": {
|
|
66845
|
-
"$ref": "$.operator.methods[
|
|
67931
|
+
"$ref": "$.operator.methods[243].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
66846
67932
|
}
|
|
66847
67933
|
}
|
|
66848
67934
|
]
|
|
@@ -67137,13 +68223,13 @@
|
|
|
67137
68223
|
{
|
|
67138
68224
|
"type": "object",
|
|
67139
68225
|
"additionalProperties": {
|
|
67140
|
-
"$ref": "$.operator.methods[
|
|
68226
|
+
"$ref": "$.operator.methods[244].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
67141
68227
|
}
|
|
67142
68228
|
},
|
|
67143
68229
|
{
|
|
67144
68230
|
"type": "array",
|
|
67145
68231
|
"items": {
|
|
67146
|
-
"$ref": "$.operator.methods[
|
|
68232
|
+
"$ref": "$.operator.methods[244].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
67147
68233
|
}
|
|
67148
68234
|
}
|
|
67149
68235
|
]
|
|
@@ -67232,13 +68318,13 @@
|
|
|
67232
68318
|
{
|
|
67233
68319
|
"type": "object",
|
|
67234
68320
|
"additionalProperties": {
|
|
67235
|
-
"$ref": "$.operator.methods[
|
|
68321
|
+
"$ref": "$.operator.methods[244].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
67236
68322
|
}
|
|
67237
68323
|
},
|
|
67238
68324
|
{
|
|
67239
68325
|
"type": "array",
|
|
67240
68326
|
"items": {
|
|
67241
|
-
"$ref": "$.operator.methods[
|
|
68327
|
+
"$ref": "$.operator.methods[244].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
67242
68328
|
}
|
|
67243
68329
|
}
|
|
67244
68330
|
]
|
|
@@ -67342,13 +68428,13 @@
|
|
|
67342
68428
|
{
|
|
67343
68429
|
"type": "object",
|
|
67344
68430
|
"additionalProperties": {
|
|
67345
|
-
"$ref": "$.operator.methods[
|
|
68431
|
+
"$ref": "$.operator.methods[244].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
67346
68432
|
}
|
|
67347
68433
|
},
|
|
67348
68434
|
{
|
|
67349
68435
|
"type": "array",
|
|
67350
68436
|
"items": {
|
|
67351
|
-
"$ref": "$.operator.methods[
|
|
68437
|
+
"$ref": "$.operator.methods[244].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
67352
68438
|
}
|
|
67353
68439
|
}
|
|
67354
68440
|
]
|
|
@@ -67683,13 +68769,13 @@
|
|
|
67683
68769
|
{
|
|
67684
68770
|
"type": "object",
|
|
67685
68771
|
"additionalProperties": {
|
|
67686
|
-
"$ref": "$.operator.methods[
|
|
68772
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.conflicts.items.properties.localValue"
|
|
67687
68773
|
}
|
|
67688
68774
|
},
|
|
67689
68775
|
{
|
|
67690
68776
|
"type": "array",
|
|
67691
68777
|
"items": {
|
|
67692
|
-
"$ref": "$.operator.methods[
|
|
68778
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.conflicts.items.properties.localValue"
|
|
67693
68779
|
}
|
|
67694
68780
|
}
|
|
67695
68781
|
]
|
|
@@ -67711,13 +68797,13 @@
|
|
|
67711
68797
|
{
|
|
67712
68798
|
"type": "object",
|
|
67713
68799
|
"additionalProperties": {
|
|
67714
|
-
"$ref": "$.operator.methods[
|
|
68800
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.conflicts.items.properties.incomingValue"
|
|
67715
68801
|
}
|
|
67716
68802
|
},
|
|
67717
68803
|
{
|
|
67718
68804
|
"type": "array",
|
|
67719
68805
|
"items": {
|
|
67720
|
-
"$ref": "$.operator.methods[
|
|
68806
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.conflicts.items.properties.incomingValue"
|
|
67721
68807
|
}
|
|
67722
68808
|
}
|
|
67723
68809
|
]
|
|
@@ -67820,13 +68906,13 @@
|
|
|
67820
68906
|
{
|
|
67821
68907
|
"type": "object",
|
|
67822
68908
|
"additionalProperties": {
|
|
67823
|
-
"$ref": "$.operator.methods[
|
|
68909
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.previousValue"
|
|
67824
68910
|
}
|
|
67825
68911
|
},
|
|
67826
68912
|
{
|
|
67827
68913
|
"type": "array",
|
|
67828
68914
|
"items": {
|
|
67829
|
-
"$ref": "$.operator.methods[
|
|
68915
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.previousValue"
|
|
67830
68916
|
}
|
|
67831
68917
|
}
|
|
67832
68918
|
]
|
|
@@ -67848,13 +68934,13 @@
|
|
|
67848
68934
|
{
|
|
67849
68935
|
"type": "object",
|
|
67850
68936
|
"additionalProperties": {
|
|
67851
|
-
"$ref": "$.operator.methods[
|
|
68937
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.nextValue"
|
|
67852
68938
|
}
|
|
67853
68939
|
},
|
|
67854
68940
|
{
|
|
67855
68941
|
"type": "array",
|
|
67856
68942
|
"items": {
|
|
67857
|
-
"$ref": "$.operator.methods[
|
|
68943
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.nextValue"
|
|
67858
68944
|
}
|
|
67859
68945
|
}
|
|
67860
68946
|
]
|
|
@@ -67938,13 +69024,13 @@
|
|
|
67938
69024
|
{
|
|
67939
69025
|
"type": "object",
|
|
67940
69026
|
"additionalProperties": {
|
|
67941
|
-
"$ref": "$.operator.methods[
|
|
69027
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.rollbackHistory.items.properties.previousValues.additionalProperties"
|
|
67942
69028
|
}
|
|
67943
69029
|
},
|
|
67944
69030
|
{
|
|
67945
69031
|
"type": "array",
|
|
67946
69032
|
"items": {
|
|
67947
|
-
"$ref": "$.operator.methods[
|
|
69033
|
+
"$ref": "$.operator.methods[246].outputSchema.anyOf[1].properties.rollbackHistory.items.properties.previousValues.additionalProperties"
|
|
67948
69034
|
}
|
|
67949
69035
|
}
|
|
67950
69036
|
]
|
|
@@ -68145,13 +69231,13 @@
|
|
|
68145
69231
|
{
|
|
68146
69232
|
"type": "object",
|
|
68147
69233
|
"additionalProperties": {
|
|
68148
|
-
"$ref": "$.operator.methods[
|
|
69234
|
+
"$ref": "$.operator.methods[247].outputSchema.properties.task.properties.result"
|
|
68149
69235
|
}
|
|
68150
69236
|
},
|
|
68151
69237
|
{
|
|
68152
69238
|
"type": "array",
|
|
68153
69239
|
"items": {
|
|
68154
|
-
"$ref": "$.operator.methods[
|
|
69240
|
+
"$ref": "$.operator.methods[247].outputSchema.properties.task.properties.result"
|
|
68155
69241
|
}
|
|
68156
69242
|
}
|
|
68157
69243
|
]
|
|
@@ -68370,13 +69456,13 @@
|
|
|
68370
69456
|
{
|
|
68371
69457
|
"type": "object",
|
|
68372
69458
|
"additionalProperties": {
|
|
68373
|
-
"$ref": "$.operator.methods[
|
|
69459
|
+
"$ref": "$.operator.methods[248].inputSchema.properties.metadata.additionalProperties"
|
|
68374
69460
|
}
|
|
68375
69461
|
},
|
|
68376
69462
|
{
|
|
68377
69463
|
"type": "array",
|
|
68378
69464
|
"items": {
|
|
68379
|
-
"$ref": "$.operator.methods[
|
|
69465
|
+
"$ref": "$.operator.methods[248].inputSchema.properties.metadata.additionalProperties"
|
|
68380
69466
|
}
|
|
68381
69467
|
}
|
|
68382
69468
|
]
|
|
@@ -68603,13 +69689,13 @@
|
|
|
68603
69689
|
{
|
|
68604
69690
|
"type": "object",
|
|
68605
69691
|
"additionalProperties": {
|
|
68606
|
-
"$ref": "$.operator.methods[
|
|
69692
|
+
"$ref": "$.operator.methods[249].outputSchema.properties.task.properties.result"
|
|
68607
69693
|
}
|
|
68608
69694
|
},
|
|
68609
69695
|
{
|
|
68610
69696
|
"type": "array",
|
|
68611
69697
|
"items": {
|
|
68612
|
-
"$ref": "$.operator.methods[
|
|
69698
|
+
"$ref": "$.operator.methods[249].outputSchema.properties.task.properties.result"
|
|
68613
69699
|
}
|
|
68614
69700
|
}
|
|
68615
69701
|
]
|
|
@@ -68943,13 +70029,13 @@
|
|
|
68943
70029
|
{
|
|
68944
70030
|
"type": "object",
|
|
68945
70031
|
"additionalProperties": {
|
|
68946
|
-
"$ref": "$.operator.methods[
|
|
70032
|
+
"$ref": "$.operator.methods[251].outputSchema.properties.task.properties.result"
|
|
68947
70033
|
}
|
|
68948
70034
|
},
|
|
68949
70035
|
{
|
|
68950
70036
|
"type": "array",
|
|
68951
70037
|
"items": {
|
|
68952
|
-
"$ref": "$.operator.methods[
|
|
70038
|
+
"$ref": "$.operator.methods[251].outputSchema.properties.task.properties.result"
|
|
68953
70039
|
}
|
|
68954
70040
|
}
|
|
68955
70041
|
]
|
|
@@ -69237,13 +70323,13 @@
|
|
|
69237
70323
|
{
|
|
69238
70324
|
"type": "object",
|
|
69239
70325
|
"additionalProperties": {
|
|
69240
|
-
"$ref": "$.operator.methods[
|
|
70326
|
+
"$ref": "$.operator.methods[253].outputSchema.properties.items.items.properties.payload"
|
|
69241
70327
|
}
|
|
69242
70328
|
},
|
|
69243
70329
|
{
|
|
69244
70330
|
"type": "array",
|
|
69245
70331
|
"items": {
|
|
69246
|
-
"$ref": "$.operator.methods[
|
|
70332
|
+
"$ref": "$.operator.methods[253].outputSchema.properties.items.items.properties.payload"
|
|
69247
70333
|
}
|
|
69248
70334
|
}
|
|
69249
70335
|
]
|
|
@@ -69267,13 +70353,13 @@
|
|
|
69267
70353
|
{
|
|
69268
70354
|
"type": "object",
|
|
69269
70355
|
"additionalProperties": {
|
|
69270
|
-
"$ref": "$.operator.methods[
|
|
70356
|
+
"$ref": "$.operator.methods[253].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
69271
70357
|
}
|
|
69272
70358
|
},
|
|
69273
70359
|
{
|
|
69274
70360
|
"type": "array",
|
|
69275
70361
|
"items": {
|
|
69276
|
-
"$ref": "$.operator.methods[
|
|
70362
|
+
"$ref": "$.operator.methods[253].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
69277
70363
|
}
|
|
69278
70364
|
}
|
|
69279
70365
|
]
|
|
@@ -69577,13 +70663,13 @@
|
|
|
69577
70663
|
{
|
|
69578
70664
|
"type": "object",
|
|
69579
70665
|
"additionalProperties": {
|
|
69580
|
-
"$ref": "$.operator.methods[
|
|
70666
|
+
"$ref": "$.operator.methods[254].outputSchema.properties.items.items.properties.payload"
|
|
69581
70667
|
}
|
|
69582
70668
|
},
|
|
69583
70669
|
{
|
|
69584
70670
|
"type": "array",
|
|
69585
70671
|
"items": {
|
|
69586
|
-
"$ref": "$.operator.methods[
|
|
70672
|
+
"$ref": "$.operator.methods[254].outputSchema.properties.items.items.properties.payload"
|
|
69587
70673
|
}
|
|
69588
70674
|
}
|
|
69589
70675
|
]
|
|
@@ -69607,13 +70693,13 @@
|
|
|
69607
70693
|
{
|
|
69608
70694
|
"type": "object",
|
|
69609
70695
|
"additionalProperties": {
|
|
69610
|
-
"$ref": "$.operator.methods[
|
|
70696
|
+
"$ref": "$.operator.methods[254].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
69611
70697
|
}
|
|
69612
70698
|
},
|
|
69613
70699
|
{
|
|
69614
70700
|
"type": "array",
|
|
69615
70701
|
"items": {
|
|
69616
|
-
"$ref": "$.operator.methods[
|
|
70702
|
+
"$ref": "$.operator.methods[254].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
69617
70703
|
}
|
|
69618
70704
|
}
|
|
69619
70705
|
]
|
|
@@ -70170,12 +71256,12 @@
|
|
|
70170
71256
|
"type": "null"
|
|
70171
71257
|
},
|
|
70172
71258
|
{
|
|
70173
|
-
"$ref": "$.operator.methods[
|
|
71259
|
+
"$ref": "$.operator.methods[256].outputSchema.properties.resourceLogs.items"
|
|
70174
71260
|
},
|
|
70175
71261
|
{
|
|
70176
71262
|
"type": "array",
|
|
70177
71263
|
"items": {
|
|
70178
|
-
"$ref": "$.operator.methods[
|
|
71264
|
+
"$ref": "$.operator.methods[256].outputSchema.properties.resourceLogs.items.additionalProperties"
|
|
70179
71265
|
}
|
|
70180
71266
|
}
|
|
70181
71267
|
]
|
|
@@ -70285,12 +71371,12 @@
|
|
|
70285
71371
|
"type": "null"
|
|
70286
71372
|
},
|
|
70287
71373
|
{
|
|
70288
|
-
"$ref": "$.operator.methods[
|
|
71374
|
+
"$ref": "$.operator.methods[257].outputSchema.properties.resourceMetrics.items"
|
|
70289
71375
|
},
|
|
70290
71376
|
{
|
|
70291
71377
|
"type": "array",
|
|
70292
71378
|
"items": {
|
|
70293
|
-
"$ref": "$.operator.methods[
|
|
71379
|
+
"$ref": "$.operator.methods[257].outputSchema.properties.resourceMetrics.items.additionalProperties"
|
|
70294
71380
|
}
|
|
70295
71381
|
}
|
|
70296
71382
|
]
|
|
@@ -70400,12 +71486,12 @@
|
|
|
70400
71486
|
"type": "null"
|
|
70401
71487
|
},
|
|
70402
71488
|
{
|
|
70403
|
-
"$ref": "$.operator.methods[
|
|
71489
|
+
"$ref": "$.operator.methods[258].outputSchema.properties.resourceSpans.items"
|
|
70404
71490
|
},
|
|
70405
71491
|
{
|
|
70406
71492
|
"type": "array",
|
|
70407
71493
|
"items": {
|
|
70408
|
-
"$ref": "$.operator.methods[
|
|
71494
|
+
"$ref": "$.operator.methods[258].outputSchema.properties.resourceSpans.items.additionalProperties"
|
|
70409
71495
|
}
|
|
70410
71496
|
}
|
|
70411
71497
|
]
|
|
@@ -70887,13 +71973,13 @@
|
|
|
70887
71973
|
{
|
|
70888
71974
|
"type": "object",
|
|
70889
71975
|
"additionalProperties": {
|
|
70890
|
-
"$ref": "$.operator.methods[
|
|
71976
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.events.properties.items.items.properties.payload"
|
|
70891
71977
|
}
|
|
70892
71978
|
},
|
|
70893
71979
|
{
|
|
70894
71980
|
"type": "array",
|
|
70895
71981
|
"items": {
|
|
70896
|
-
"$ref": "$.operator.methods[
|
|
71982
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.events.properties.items.items.properties.payload"
|
|
70897
71983
|
}
|
|
70898
71984
|
}
|
|
70899
71985
|
]
|
|
@@ -70917,13 +72003,13 @@
|
|
|
70917
72003
|
{
|
|
70918
72004
|
"type": "object",
|
|
70919
72005
|
"additionalProperties": {
|
|
70920
|
-
"$ref": "$.operator.methods[
|
|
72006
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.events.properties.items.items.properties.attributes.additionalProperties"
|
|
70921
72007
|
}
|
|
70922
72008
|
},
|
|
70923
72009
|
{
|
|
70924
72010
|
"type": "array",
|
|
70925
72011
|
"items": {
|
|
70926
|
-
"$ref": "$.operator.methods[
|
|
72012
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.events.properties.items.items.properties.attributes.additionalProperties"
|
|
70927
72013
|
}
|
|
70928
72014
|
}
|
|
70929
72015
|
]
|
|
@@ -71152,13 +72238,13 @@
|
|
|
71152
72238
|
{
|
|
71153
72239
|
"type": "object",
|
|
71154
72240
|
"additionalProperties": {
|
|
71155
|
-
"$ref": "$.operator.methods[
|
|
72241
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.errors.properties.items.items.properties.payload"
|
|
71156
72242
|
}
|
|
71157
72243
|
},
|
|
71158
72244
|
{
|
|
71159
72245
|
"type": "array",
|
|
71160
72246
|
"items": {
|
|
71161
|
-
"$ref": "$.operator.methods[
|
|
72247
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.errors.properties.items.items.properties.payload"
|
|
71162
72248
|
}
|
|
71163
72249
|
}
|
|
71164
72250
|
]
|
|
@@ -71182,13 +72268,13 @@
|
|
|
71182
72268
|
{
|
|
71183
72269
|
"type": "object",
|
|
71184
72270
|
"additionalProperties": {
|
|
71185
|
-
"$ref": "$.operator.methods[
|
|
72271
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.errors.properties.items.items.properties.attributes.additionalProperties"
|
|
71186
72272
|
}
|
|
71187
72273
|
},
|
|
71188
72274
|
{
|
|
71189
72275
|
"type": "array",
|
|
71190
72276
|
"items": {
|
|
71191
|
-
"$ref": "$.operator.methods[
|
|
72277
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.errors.properties.items.items.properties.attributes.additionalProperties"
|
|
71192
72278
|
}
|
|
71193
72279
|
}
|
|
71194
72280
|
]
|
|
@@ -71415,13 +72501,13 @@
|
|
|
71415
72501
|
{
|
|
71416
72502
|
"type": "object",
|
|
71417
72503
|
"additionalProperties": {
|
|
71418
|
-
"$ref": "$.operator.methods[
|
|
72504
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.spans.properties.items.items.properties.attributes.additionalProperties"
|
|
71419
72505
|
}
|
|
71420
72506
|
},
|
|
71421
72507
|
{
|
|
71422
72508
|
"type": "array",
|
|
71423
72509
|
"items": {
|
|
71424
|
-
"$ref": "$.operator.methods[
|
|
72510
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.spans.properties.items.items.properties.attributes.additionalProperties"
|
|
71425
72511
|
}
|
|
71426
72512
|
}
|
|
71427
72513
|
]
|
|
@@ -71457,13 +72543,13 @@
|
|
|
71457
72543
|
{
|
|
71458
72544
|
"type": "object",
|
|
71459
72545
|
"additionalProperties": {
|
|
71460
|
-
"$ref": "$.operator.methods[
|
|
72546
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.spans.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
71461
72547
|
}
|
|
71462
72548
|
},
|
|
71463
72549
|
{
|
|
71464
72550
|
"type": "array",
|
|
71465
72551
|
"items": {
|
|
71466
|
-
"$ref": "$.operator.methods[
|
|
72552
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.recent.properties.spans.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
71467
72553
|
}
|
|
71468
72554
|
}
|
|
71469
72555
|
]
|
|
@@ -71901,13 +72987,13 @@
|
|
|
71901
72987
|
{
|
|
71902
72988
|
"type": "object",
|
|
71903
72989
|
"additionalProperties": {
|
|
71904
|
-
"$ref": "$.operator.methods[
|
|
72990
|
+
"$ref": "$.operator.methods[261].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
71905
72991
|
}
|
|
71906
72992
|
},
|
|
71907
72993
|
{
|
|
71908
72994
|
"type": "array",
|
|
71909
72995
|
"items": {
|
|
71910
|
-
"$ref": "$.operator.methods[
|
|
72996
|
+
"$ref": "$.operator.methods[261].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
71911
72997
|
}
|
|
71912
72998
|
}
|
|
71913
72999
|
]
|
|
@@ -71943,13 +73029,13 @@
|
|
|
71943
73029
|
{
|
|
71944
73030
|
"type": "object",
|
|
71945
73031
|
"additionalProperties": {
|
|
71946
|
-
"$ref": "$.operator.methods[
|
|
73032
|
+
"$ref": "$.operator.methods[261].outputSchema.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
71947
73033
|
}
|
|
71948
73034
|
},
|
|
71949
73035
|
{
|
|
71950
73036
|
"type": "array",
|
|
71951
73037
|
"items": {
|
|
71952
|
-
"$ref": "$.operator.methods[
|
|
73038
|
+
"$ref": "$.operator.methods[261].outputSchema.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
71953
73039
|
}
|
|
71954
73040
|
}
|
|
71955
73041
|
]
|
|
@@ -72153,13 +73239,13 @@
|
|
|
72153
73239
|
{
|
|
72154
73240
|
"type": "object",
|
|
72155
73241
|
"additionalProperties": {
|
|
72156
|
-
"$ref": "$.operator.methods[
|
|
73242
|
+
"$ref": "$.operator.methods[263].inputSchema.properties.metadata.additionalProperties"
|
|
72157
73243
|
}
|
|
72158
73244
|
},
|
|
72159
73245
|
{
|
|
72160
73246
|
"type": "array",
|
|
72161
73247
|
"items": {
|
|
72162
|
-
"$ref": "$.operator.methods[
|
|
73248
|
+
"$ref": "$.operator.methods[263].inputSchema.properties.metadata.additionalProperties"
|
|
72163
73249
|
}
|
|
72164
73250
|
}
|
|
72165
73251
|
]
|
|
@@ -72211,13 +73297,13 @@
|
|
|
72211
73297
|
{
|
|
72212
73298
|
"type": "object",
|
|
72213
73299
|
"additionalProperties": {
|
|
72214
|
-
"$ref": "$.operator.methods[
|
|
73300
|
+
"$ref": "$.operator.methods[263].outputSchema.properties.metadata.additionalProperties"
|
|
72215
73301
|
}
|
|
72216
73302
|
},
|
|
72217
73303
|
{
|
|
72218
73304
|
"type": "array",
|
|
72219
73305
|
"items": {
|
|
72220
|
-
"$ref": "$.operator.methods[
|
|
73306
|
+
"$ref": "$.operator.methods[263].outputSchema.properties.metadata.additionalProperties"
|
|
72221
73307
|
}
|
|
72222
73308
|
}
|
|
72223
73309
|
]
|
|
@@ -72311,13 +73397,13 @@
|
|
|
72311
73397
|
{
|
|
72312
73398
|
"type": "object",
|
|
72313
73399
|
"additionalProperties": {
|
|
72314
|
-
"$ref": "$.operator.methods[
|
|
73400
|
+
"$ref": "$.operator.methods[264].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
72315
73401
|
}
|
|
72316
73402
|
},
|
|
72317
73403
|
{
|
|
72318
73404
|
"type": "array",
|
|
72319
73405
|
"items": {
|
|
72320
|
-
"$ref": "$.operator.methods[
|
|
73406
|
+
"$ref": "$.operator.methods[264].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
72321
73407
|
}
|
|
72322
73408
|
}
|
|
72323
73409
|
]
|
|
@@ -72413,13 +73499,13 @@
|
|
|
72413
73499
|
{
|
|
72414
73500
|
"type": "object",
|
|
72415
73501
|
"additionalProperties": {
|
|
72416
|
-
"$ref": "$.operator.methods[
|
|
73502
|
+
"$ref": "$.operator.methods[265].inputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
72417
73503
|
}
|
|
72418
73504
|
},
|
|
72419
73505
|
{
|
|
72420
73506
|
"type": "array",
|
|
72421
73507
|
"items": {
|
|
72422
|
-
"$ref": "$.operator.methods[
|
|
73508
|
+
"$ref": "$.operator.methods[265].inputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
72423
73509
|
}
|
|
72424
73510
|
}
|
|
72425
73511
|
]
|
|
@@ -72461,13 +73547,13 @@
|
|
|
72461
73547
|
{
|
|
72462
73548
|
"type": "object",
|
|
72463
73549
|
"additionalProperties": {
|
|
72464
|
-
"$ref": "$.operator.methods[
|
|
73550
|
+
"$ref": "$.operator.methods[265].inputSchema.properties.metadata.additionalProperties"
|
|
72465
73551
|
}
|
|
72466
73552
|
},
|
|
72467
73553
|
{
|
|
72468
73554
|
"type": "array",
|
|
72469
73555
|
"items": {
|
|
72470
|
-
"$ref": "$.operator.methods[
|
|
73556
|
+
"$ref": "$.operator.methods[265].inputSchema.properties.metadata.additionalProperties"
|
|
72471
73557
|
}
|
|
72472
73558
|
}
|
|
72473
73559
|
]
|
|
@@ -72534,13 +73620,13 @@
|
|
|
72534
73620
|
{
|
|
72535
73621
|
"type": "object",
|
|
72536
73622
|
"additionalProperties": {
|
|
72537
|
-
"$ref": "$.operator.methods[
|
|
73623
|
+
"$ref": "$.operator.methods[265].outputSchema.properties.metadata.additionalProperties"
|
|
72538
73624
|
}
|
|
72539
73625
|
},
|
|
72540
73626
|
{
|
|
72541
73627
|
"type": "array",
|
|
72542
73628
|
"items": {
|
|
72543
|
-
"$ref": "$.operator.methods[
|
|
73629
|
+
"$ref": "$.operator.methods[265].outputSchema.properties.metadata.additionalProperties"
|
|
72544
73630
|
}
|
|
72545
73631
|
}
|
|
72546
73632
|
]
|
|
@@ -72614,13 +73700,13 @@
|
|
|
72614
73700
|
{
|
|
72615
73701
|
"type": "object",
|
|
72616
73702
|
"additionalProperties": {
|
|
72617
|
-
"$ref": "$.operator.methods[
|
|
73703
|
+
"$ref": "$.operator.methods[266].inputSchema.properties.metadata.additionalProperties"
|
|
72618
73704
|
}
|
|
72619
73705
|
},
|
|
72620
73706
|
{
|
|
72621
73707
|
"type": "array",
|
|
72622
73708
|
"items": {
|
|
72623
|
-
"$ref": "$.operator.methods[
|
|
73709
|
+
"$ref": "$.operator.methods[266].inputSchema.properties.metadata.additionalProperties"
|
|
72624
73710
|
}
|
|
72625
73711
|
}
|
|
72626
73712
|
]
|
|
@@ -72678,13 +73764,13 @@
|
|
|
72678
73764
|
{
|
|
72679
73765
|
"type": "object",
|
|
72680
73766
|
"additionalProperties": {
|
|
72681
|
-
"$ref": "$.operator.methods[
|
|
73767
|
+
"$ref": "$.operator.methods[266].outputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
72682
73768
|
}
|
|
72683
73769
|
},
|
|
72684
73770
|
{
|
|
72685
73771
|
"type": "array",
|
|
72686
73772
|
"items": {
|
|
72687
|
-
"$ref": "$.operator.methods[
|
|
73773
|
+
"$ref": "$.operator.methods[266].outputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
72688
73774
|
}
|
|
72689
73775
|
}
|
|
72690
73776
|
]
|
|
@@ -72717,13 +73803,13 @@
|
|
|
72717
73803
|
{
|
|
72718
73804
|
"type": "object",
|
|
72719
73805
|
"additionalProperties": {
|
|
72720
|
-
"$ref": "$.operator.methods[
|
|
73806
|
+
"$ref": "$.operator.methods[266].outputSchema.properties.metadata.additionalProperties"
|
|
72721
73807
|
}
|
|
72722
73808
|
},
|
|
72723
73809
|
{
|
|
72724
73810
|
"type": "array",
|
|
72725
73811
|
"items": {
|
|
72726
|
-
"$ref": "$.operator.methods[
|
|
73812
|
+
"$ref": "$.operator.methods[266].outputSchema.properties.metadata.additionalProperties"
|
|
72727
73813
|
}
|
|
72728
73814
|
}
|
|
72729
73815
|
]
|
|
@@ -72796,13 +73882,13 @@
|
|
|
72796
73882
|
{
|
|
72797
73883
|
"type": "object",
|
|
72798
73884
|
"additionalProperties": {
|
|
72799
|
-
"$ref": "$.operator.methods[
|
|
73885
|
+
"$ref": "$.operator.methods[267].inputSchema.properties.metadata.additionalProperties"
|
|
72800
73886
|
}
|
|
72801
73887
|
},
|
|
72802
73888
|
{
|
|
72803
73889
|
"type": "array",
|
|
72804
73890
|
"items": {
|
|
72805
|
-
"$ref": "$.operator.methods[
|
|
73891
|
+
"$ref": "$.operator.methods[267].inputSchema.properties.metadata.additionalProperties"
|
|
72806
73892
|
}
|
|
72807
73893
|
}
|
|
72808
73894
|
]
|
|
@@ -72905,13 +73991,13 @@
|
|
|
72905
73991
|
{
|
|
72906
73992
|
"type": "object",
|
|
72907
73993
|
"additionalProperties": {
|
|
72908
|
-
"$ref": "$.operator.methods[
|
|
73994
|
+
"$ref": "$.operator.methods[268].outputSchema.properties.voices.items.properties.metadata.additionalProperties"
|
|
72909
73995
|
}
|
|
72910
73996
|
},
|
|
72911
73997
|
{
|
|
72912
73998
|
"type": "array",
|
|
72913
73999
|
"items": {
|
|
72914
|
-
"$ref": "$.operator.methods[
|
|
74000
|
+
"$ref": "$.operator.methods[268].outputSchema.properties.voices.items.properties.metadata.additionalProperties"
|
|
72915
74001
|
}
|
|
72916
74002
|
}
|
|
72917
74003
|
]
|
|
@@ -72995,13 +74081,13 @@
|
|
|
72995
74081
|
{
|
|
72996
74082
|
"type": "object",
|
|
72997
74083
|
"additionalProperties": {
|
|
72998
|
-
"$ref": "$.operator.methods[
|
|
74084
|
+
"$ref": "$.operator.methods[269].inputSchema.properties.metadata.additionalProperties"
|
|
72999
74085
|
}
|
|
73000
74086
|
},
|
|
73001
74087
|
{
|
|
73002
74088
|
"type": "array",
|
|
73003
74089
|
"items": {
|
|
73004
|
-
"$ref": "$.operator.methods[
|
|
74090
|
+
"$ref": "$.operator.methods[269].inputSchema.properties.metadata.additionalProperties"
|
|
73005
74091
|
}
|
|
73006
74092
|
}
|
|
73007
74093
|
]
|
|
@@ -73092,13 +74178,13 @@
|
|
|
73092
74178
|
{
|
|
73093
74179
|
"type": "object",
|
|
73094
74180
|
"additionalProperties": {
|
|
73095
|
-
"$ref": "$.operator.methods[
|
|
74181
|
+
"$ref": "$.operator.methods[269].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
73096
74182
|
}
|
|
73097
74183
|
},
|
|
73098
74184
|
{
|
|
73099
74185
|
"type": "array",
|
|
73100
74186
|
"items": {
|
|
73101
|
-
"$ref": "$.operator.methods[
|
|
74187
|
+
"$ref": "$.operator.methods[269].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
73102
74188
|
}
|
|
73103
74189
|
}
|
|
73104
74190
|
]
|
|
@@ -73156,13 +74242,13 @@
|
|
|
73156
74242
|
{
|
|
73157
74243
|
"type": "object",
|
|
73158
74244
|
"additionalProperties": {
|
|
73159
|
-
"$ref": "$.operator.methods[
|
|
74245
|
+
"$ref": "$.operator.methods[269].outputSchema.properties.metadata.additionalProperties"
|
|
73160
74246
|
}
|
|
73161
74247
|
},
|
|
73162
74248
|
{
|
|
73163
74249
|
"type": "array",
|
|
73164
74250
|
"items": {
|
|
73165
|
-
"$ref": "$.operator.methods[
|
|
74251
|
+
"$ref": "$.operator.methods[269].outputSchema.properties.metadata.additionalProperties"
|
|
73166
74252
|
}
|
|
73167
74253
|
}
|
|
73168
74254
|
]
|
|
@@ -73318,13 +74404,13 @@
|
|
|
73318
74404
|
{
|
|
73319
74405
|
"type": "object",
|
|
73320
74406
|
"additionalProperties": {
|
|
73321
|
-
"$ref": "$.operator.methods[
|
|
74407
|
+
"$ref": "$.operator.methods[271].outputSchema.properties.watchers.items.properties.source.properties.metadata.additionalProperties"
|
|
73322
74408
|
}
|
|
73323
74409
|
},
|
|
73324
74410
|
{
|
|
73325
74411
|
"type": "array",
|
|
73326
74412
|
"items": {
|
|
73327
|
-
"$ref": "$.operator.methods[
|
|
74413
|
+
"$ref": "$.operator.methods[271].outputSchema.properties.watchers.items.properties.source.properties.metadata.additionalProperties"
|
|
73328
74414
|
}
|
|
73329
74415
|
}
|
|
73330
74416
|
]
|
|
@@ -73382,13 +74468,13 @@
|
|
|
73382
74468
|
{
|
|
73383
74469
|
"type": "object",
|
|
73384
74470
|
"additionalProperties": {
|
|
73385
|
-
"$ref": "$.operator.methods[
|
|
74471
|
+
"$ref": "$.operator.methods[271].outputSchema.properties.watchers.items.properties.metadata.additionalProperties"
|
|
73386
74472
|
}
|
|
73387
74473
|
},
|
|
73388
74474
|
{
|
|
73389
74475
|
"type": "array",
|
|
73390
74476
|
"items": {
|
|
73391
|
-
"$ref": "$.operator.methods[
|
|
74477
|
+
"$ref": "$.operator.methods[271].outputSchema.properties.watchers.items.properties.metadata.additionalProperties"
|
|
73392
74478
|
}
|
|
73393
74479
|
}
|
|
73394
74480
|
]
|
|
@@ -73478,13 +74564,13 @@
|
|
|
73478
74564
|
{
|
|
73479
74565
|
"type": "object",
|
|
73480
74566
|
"additionalProperties": {
|
|
73481
|
-
"$ref": "$.operator.methods[
|
|
74567
|
+
"$ref": "$.operator.methods[272].inputSchema.properties.metadata.additionalProperties"
|
|
73482
74568
|
}
|
|
73483
74569
|
},
|
|
73484
74570
|
{
|
|
73485
74571
|
"type": "array",
|
|
73486
74572
|
"items": {
|
|
73487
|
-
"$ref": "$.operator.methods[
|
|
74573
|
+
"$ref": "$.operator.methods[272].inputSchema.properties.metadata.additionalProperties"
|
|
73488
74574
|
}
|
|
73489
74575
|
}
|
|
73490
74576
|
]
|
|
@@ -73572,13 +74658,13 @@
|
|
|
73572
74658
|
{
|
|
73573
74659
|
"type": "object",
|
|
73574
74660
|
"additionalProperties": {
|
|
73575
|
-
"$ref": "$.operator.methods[
|
|
74661
|
+
"$ref": "$.operator.methods[272].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
73576
74662
|
}
|
|
73577
74663
|
},
|
|
73578
74664
|
{
|
|
73579
74665
|
"type": "array",
|
|
73580
74666
|
"items": {
|
|
73581
|
-
"$ref": "$.operator.methods[
|
|
74667
|
+
"$ref": "$.operator.methods[272].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
73582
74668
|
}
|
|
73583
74669
|
}
|
|
73584
74670
|
]
|
|
@@ -73636,13 +74722,13 @@
|
|
|
73636
74722
|
{
|
|
73637
74723
|
"type": "object",
|
|
73638
74724
|
"additionalProperties": {
|
|
73639
|
-
"$ref": "$.operator.methods[
|
|
74725
|
+
"$ref": "$.operator.methods[272].outputSchema.properties.metadata.additionalProperties"
|
|
73640
74726
|
}
|
|
73641
74727
|
},
|
|
73642
74728
|
{
|
|
73643
74729
|
"type": "array",
|
|
73644
74730
|
"items": {
|
|
73645
|
-
"$ref": "$.operator.methods[
|
|
74731
|
+
"$ref": "$.operator.methods[272].outputSchema.properties.metadata.additionalProperties"
|
|
73646
74732
|
}
|
|
73647
74733
|
}
|
|
73648
74734
|
]
|
|
@@ -73749,13 +74835,13 @@
|
|
|
73749
74835
|
{
|
|
73750
74836
|
"type": "object",
|
|
73751
74837
|
"additionalProperties": {
|
|
73752
|
-
"$ref": "$.operator.methods[
|
|
74838
|
+
"$ref": "$.operator.methods[273].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
73753
74839
|
}
|
|
73754
74840
|
},
|
|
73755
74841
|
{
|
|
73756
74842
|
"type": "array",
|
|
73757
74843
|
"items": {
|
|
73758
|
-
"$ref": "$.operator.methods[
|
|
74844
|
+
"$ref": "$.operator.methods[273].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
73759
74845
|
}
|
|
73760
74846
|
}
|
|
73761
74847
|
]
|
|
@@ -73813,13 +74899,13 @@
|
|
|
73813
74899
|
{
|
|
73814
74900
|
"type": "object",
|
|
73815
74901
|
"additionalProperties": {
|
|
73816
|
-
"$ref": "$.operator.methods[
|
|
74902
|
+
"$ref": "$.operator.methods[273].outputSchema.properties.metadata.additionalProperties"
|
|
73817
74903
|
}
|
|
73818
74904
|
},
|
|
73819
74905
|
{
|
|
73820
74906
|
"type": "array",
|
|
73821
74907
|
"items": {
|
|
73822
|
-
"$ref": "$.operator.methods[
|
|
74908
|
+
"$ref": "$.operator.methods[273].outputSchema.properties.metadata.additionalProperties"
|
|
73823
74909
|
}
|
|
73824
74910
|
}
|
|
73825
74911
|
]
|
|
@@ -73926,13 +75012,13 @@
|
|
|
73926
75012
|
{
|
|
73927
75013
|
"type": "object",
|
|
73928
75014
|
"additionalProperties": {
|
|
73929
|
-
"$ref": "$.operator.methods[
|
|
75015
|
+
"$ref": "$.operator.methods[274].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
73930
75016
|
}
|
|
73931
75017
|
},
|
|
73932
75018
|
{
|
|
73933
75019
|
"type": "array",
|
|
73934
75020
|
"items": {
|
|
73935
|
-
"$ref": "$.operator.methods[
|
|
75021
|
+
"$ref": "$.operator.methods[274].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
73936
75022
|
}
|
|
73937
75023
|
}
|
|
73938
75024
|
]
|
|
@@ -73990,13 +75076,13 @@
|
|
|
73990
75076
|
{
|
|
73991
75077
|
"type": "object",
|
|
73992
75078
|
"additionalProperties": {
|
|
73993
|
-
"$ref": "$.operator.methods[
|
|
75079
|
+
"$ref": "$.operator.methods[274].outputSchema.properties.metadata.additionalProperties"
|
|
73994
75080
|
}
|
|
73995
75081
|
},
|
|
73996
75082
|
{
|
|
73997
75083
|
"type": "array",
|
|
73998
75084
|
"items": {
|
|
73999
|
-
"$ref": "$.operator.methods[
|
|
75085
|
+
"$ref": "$.operator.methods[274].outputSchema.properties.metadata.additionalProperties"
|
|
74000
75086
|
}
|
|
74001
75087
|
}
|
|
74002
75088
|
]
|
|
@@ -74103,13 +75189,13 @@
|
|
|
74103
75189
|
{
|
|
74104
75190
|
"type": "object",
|
|
74105
75191
|
"additionalProperties": {
|
|
74106
|
-
"$ref": "$.operator.methods[
|
|
75192
|
+
"$ref": "$.operator.methods[275].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
74107
75193
|
}
|
|
74108
75194
|
},
|
|
74109
75195
|
{
|
|
74110
75196
|
"type": "array",
|
|
74111
75197
|
"items": {
|
|
74112
|
-
"$ref": "$.operator.methods[
|
|
75198
|
+
"$ref": "$.operator.methods[275].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
74113
75199
|
}
|
|
74114
75200
|
}
|
|
74115
75201
|
]
|
|
@@ -74167,13 +75253,13 @@
|
|
|
74167
75253
|
{
|
|
74168
75254
|
"type": "object",
|
|
74169
75255
|
"additionalProperties": {
|
|
74170
|
-
"$ref": "$.operator.methods[
|
|
75256
|
+
"$ref": "$.operator.methods[275].outputSchema.properties.metadata.additionalProperties"
|
|
74171
75257
|
}
|
|
74172
75258
|
},
|
|
74173
75259
|
{
|
|
74174
75260
|
"type": "array",
|
|
74175
75261
|
"items": {
|
|
74176
|
-
"$ref": "$.operator.methods[
|
|
75262
|
+
"$ref": "$.operator.methods[275].outputSchema.properties.metadata.additionalProperties"
|
|
74177
75263
|
}
|
|
74178
75264
|
}
|
|
74179
75265
|
]
|
|
@@ -74386,13 +75472,13 @@
|
|
|
74386
75472
|
{
|
|
74387
75473
|
"type": "object",
|
|
74388
75474
|
"additionalProperties": {
|
|
74389
|
-
"$ref": "$.operator.methods[
|
|
75475
|
+
"$ref": "$.operator.methods[277].outputSchema.properties.results.items.properties.metadata.additionalProperties"
|
|
74390
75476
|
}
|
|
74391
75477
|
},
|
|
74392
75478
|
{
|
|
74393
75479
|
"type": "array",
|
|
74394
75480
|
"items": {
|
|
74395
|
-
"$ref": "$.operator.methods[
|
|
75481
|
+
"$ref": "$.operator.methods[277].outputSchema.properties.results.items.properties.metadata.additionalProperties"
|
|
74396
75482
|
}
|
|
74397
75483
|
}
|
|
74398
75484
|
]
|
|
@@ -74443,13 +75529,13 @@
|
|
|
74443
75529
|
{
|
|
74444
75530
|
"type": "object",
|
|
74445
75531
|
"additionalProperties": {
|
|
74446
|
-
"$ref": "$.operator.methods[
|
|
75532
|
+
"$ref": "$.operator.methods[277].outputSchema.properties.results.items.properties.evidence.items.properties.metadata.additionalProperties"
|
|
74447
75533
|
}
|
|
74448
75534
|
},
|
|
74449
75535
|
{
|
|
74450
75536
|
"type": "array",
|
|
74451
75537
|
"items": {
|
|
74452
|
-
"$ref": "$.operator.methods[
|
|
75538
|
+
"$ref": "$.operator.methods[277].outputSchema.properties.results.items.properties.evidence.items.properties.metadata.additionalProperties"
|
|
74453
75539
|
}
|
|
74454
75540
|
}
|
|
74455
75541
|
]
|
|
@@ -74539,13 +75625,13 @@
|
|
|
74539
75625
|
{
|
|
74540
75626
|
"type": "object",
|
|
74541
75627
|
"additionalProperties": {
|
|
74542
|
-
"$ref": "$.operator.methods[
|
|
75628
|
+
"$ref": "$.operator.methods[277].outputSchema.properties.instantAnswer.properties.metadata.additionalProperties"
|
|
74543
75629
|
}
|
|
74544
75630
|
},
|
|
74545
75631
|
{
|
|
74546
75632
|
"type": "array",
|
|
74547
75633
|
"items": {
|
|
74548
|
-
"$ref": "$.operator.methods[
|
|
75634
|
+
"$ref": "$.operator.methods[277].outputSchema.properties.instantAnswer.properties.metadata.additionalProperties"
|
|
74549
75635
|
}
|
|
74550
75636
|
}
|
|
74551
75637
|
]
|
|
@@ -74578,13 +75664,13 @@
|
|
|
74578
75664
|
{
|
|
74579
75665
|
"type": "object",
|
|
74580
75666
|
"additionalProperties": {
|
|
74581
|
-
"$ref": "$.operator.methods[
|
|
75667
|
+
"$ref": "$.operator.methods[277].outputSchema.properties.metadata.additionalProperties"
|
|
74582
75668
|
}
|
|
74583
75669
|
},
|
|
74584
75670
|
{
|
|
74585
75671
|
"type": "array",
|
|
74586
75672
|
"items": {
|
|
74587
|
-
"$ref": "$.operator.methods[
|
|
75673
|
+
"$ref": "$.operator.methods[277].outputSchema.properties.metadata.additionalProperties"
|
|
74588
75674
|
}
|
|
74589
75675
|
}
|
|
74590
75676
|
]
|
|
@@ -76304,10 +77390,10 @@
|
|
|
76304
77390
|
}
|
|
76305
77391
|
],
|
|
76306
77392
|
"schemaCoverage": {
|
|
76307
|
-
"methods":
|
|
76308
|
-
"typedInputs":
|
|
77393
|
+
"methods": 279,
|
|
77394
|
+
"typedInputs": 279,
|
|
76309
77395
|
"genericInputs": 0,
|
|
76310
|
-
"typedOutputs":
|
|
77396
|
+
"typedOutputs": 279,
|
|
76311
77397
|
"genericOutputs": 0
|
|
76312
77398
|
},
|
|
76313
77399
|
"eventCoverage": {
|