@ancplua/qyl-api-schema 7.0.0 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1021,6 +1021,376 @@
1021
1021
  "maxLength": 256,
1022
1022
  "description": "User identifier (pseudonymized for privacy)"
1023
1023
  },
1024
+ "Diagnostics.AgentDiagnosticCheckId": {
1025
+ "type": "string",
1026
+ "minLength": 1,
1027
+ "maxLength": 128,
1028
+ "pattern": "^[A-Za-z0-9_][A-Za-z0-9._:/\\[\\]-]{0,127}$",
1029
+ "description": "Stable machine identifier of one diagnostic check. This identifier is a value and must never be promoted to a telemetry key."
1030
+ },
1031
+ "Diagnostics.AgentDiagnosticCheckOutcome": {
1032
+ "type": "string",
1033
+ "enum": [
1034
+ "pass",
1035
+ "fail",
1036
+ "unknown"
1037
+ ],
1038
+ "description": "Machine-computed result of one diagnostic check. For exists, an absent or null actual variable produces fail. For every other operator, missing required operands produce unknown; incompatible operand types also produce unknown. not_evaluated is deliberately not a check outcome."
1039
+ },
1040
+ "Diagnostics.AgentDiagnosticCheckResult": {
1041
+ "type": "object",
1042
+ "required": [
1043
+ "check_id",
1044
+ "operator",
1045
+ "actual",
1046
+ "outcome"
1047
+ ],
1048
+ "properties": {
1049
+ "check_id": {
1050
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticCheckId"
1051
+ },
1052
+ "operator": {
1053
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticOperator"
1054
+ },
1055
+ "actual": {
1056
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
1057
+ },
1058
+ "expected": {
1059
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
1060
+ },
1061
+ "expected_type": {
1062
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticValueType"
1063
+ },
1064
+ "outcome": {
1065
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticCheckOutcome"
1066
+ }
1067
+ },
1068
+ "unevaluatedProperties": {
1069
+ "not": {}
1070
+ },
1071
+ "description": "One structural, machine-computed check result. actual and expected reference variable names only. For equal, not_equal, contains, less_than, and greater_than, expected is required and expected_type is omitted. For exists, both are omitted and an absent or null actual variable produces fail. For type_is, expected is omitted and expected_type is required. For operators other than exists, missing required operands produce unknown; incompatible operand types also produce unknown. not_evaluated is reserved for the snapshot aggregate when checks is empty and is not emitted for an individual check."
1072
+ },
1073
+ "Diagnostics.AgentDiagnosticClassification": {
1074
+ "type": "string",
1075
+ "enum": [
1076
+ "public",
1077
+ "internal",
1078
+ "sensitive",
1079
+ "secret"
1080
+ ],
1081
+ "description": "Data-handling classification assigned before a diagnostic variable is captured."
1082
+ },
1083
+ "Diagnostics.AgentDiagnosticExtensionId": {
1084
+ "type": "string",
1085
+ "enum": [
1086
+ "qyl.agent.diagnostic.snapshot"
1087
+ ],
1088
+ "description": "The versioned extension discriminator for a protected agent diagnostic snapshot."
1089
+ },
1090
+ "Diagnostics.AgentDiagnosticFormatVersion": {
1091
+ "type": "integer",
1092
+ "format": "int32",
1093
+ "minimum": 1,
1094
+ "maximum": 1,
1095
+ "description": "Wire-format version of an agent diagnostic snapshot. Version 1 is the only accepted format."
1096
+ },
1097
+ "Diagnostics.AgentDiagnosticOperator": {
1098
+ "type": "string",
1099
+ "enum": [
1100
+ "equal",
1101
+ "not_equal",
1102
+ "exists",
1103
+ "type_is",
1104
+ "contains",
1105
+ "less_than",
1106
+ "greater_than"
1107
+ ],
1108
+ "description": "Closed operation evaluated by a diagnostic check. Checks are structural and never carry expression strings."
1109
+ },
1110
+ "Diagnostics.AgentDiagnosticOutcome": {
1111
+ "type": "string",
1112
+ "enum": [
1113
+ "pass",
1114
+ "fail",
1115
+ "unknown",
1116
+ "not_evaluated"
1117
+ ],
1118
+ "description": "Machine-computed aggregate result of a diagnostic snapshot. unknown reports one or more unknown check outcomes. not_evaluated is reserved for a snapshot whose checks array is empty."
1119
+ },
1120
+ "Diagnostics.AgentDiagnosticPhase": {
1121
+ "type": "string",
1122
+ "enum": [
1123
+ "input",
1124
+ "output",
1125
+ "error",
1126
+ "checkpoint"
1127
+ ],
1128
+ "description": "Execution boundary at which the state frame was captured."
1129
+ },
1130
+ "Diagnostics.AgentDiagnosticProbeId": {
1131
+ "type": "string",
1132
+ "minLength": 1,
1133
+ "maxLength": 128,
1134
+ "pattern": "^[A-Za-z0-9_][A-Za-z0-9._:/\\[\\]-]{0,127}$",
1135
+ "description": "Stable machine identifier of the probe that captured a diagnostic snapshot. This identifier is a value and must never be promoted to a telemetry key."
1136
+ },
1137
+ "Diagnostics.AgentDiagnosticSnapshot": {
1138
+ "type": "object",
1139
+ "required": [
1140
+ "extension_id",
1141
+ "format_version",
1142
+ "snapshot_id",
1143
+ "capture_nonce",
1144
+ "probe_id",
1145
+ "phase",
1146
+ "variables",
1147
+ "checks",
1148
+ "outcome"
1149
+ ],
1150
+ "properties": {
1151
+ "extension_id": {
1152
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticExtensionId"
1153
+ },
1154
+ "format_version": {
1155
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticFormatVersion"
1156
+ },
1157
+ "snapshot_id": {
1158
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticSnapshotId"
1159
+ },
1160
+ "capture_nonce": {
1161
+ "type": "string",
1162
+ "minLength": 32,
1163
+ "maxLength": 32,
1164
+ "pattern": "^[0-9a-f]{32}$",
1165
+ "description": "Fresh 128-bit random nonce encoded as exactly 32 lowercase hexadecimal characters. It prevents equality inference across otherwise identical protected captures and must not be used as an identity key."
1166
+ },
1167
+ "probe_id": {
1168
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticProbeId"
1169
+ },
1170
+ "phase": {
1171
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticPhase"
1172
+ },
1173
+ "variables": {
1174
+ "type": "array",
1175
+ "items": {
1176
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariable"
1177
+ },
1178
+ "maxItems": 64
1179
+ },
1180
+ "checks": {
1181
+ "type": "array",
1182
+ "items": {
1183
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticCheckResult"
1184
+ },
1185
+ "maxItems": 64
1186
+ },
1187
+ "outcome": {
1188
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticOutcome"
1189
+ }
1190
+ },
1191
+ "unevaluatedProperties": {
1192
+ "not": {}
1193
+ },
1194
+ "description": "Version 1 protected JSON state frame captured for an artificial-intelligence agent. extension_id and format_version are its schema identity. capture_nonce is fresh entropy and is not a stable identifier. Variables and checks are bounded, dynamic names remain values, and no human-oriented message or expression text is part of the contract. Overall outcome is not_evaluated only when checks is empty. For a non-empty checks array it is fail if any check fails, otherwise unknown if any check is unknown, otherwise pass."
1195
+ },
1196
+ "Diagnostics.AgentDiagnosticSnapshotId": {
1197
+ "type": "string",
1198
+ "minLength": 1,
1199
+ "maxLength": 128,
1200
+ "pattern": "^[A-Za-z0-9_][A-Za-z0-9._:/\\[\\]-]{0,127}$",
1201
+ "description": "Stable machine identifier of one diagnostic snapshot. This identifier is a value and must never be promoted to a telemetry key."
1202
+ },
1203
+ "Diagnostics.AgentDiagnosticSnapshotSummary": {
1204
+ "type": "object",
1205
+ "required": [
1206
+ "extension_id",
1207
+ "format_version",
1208
+ "snapshot_id",
1209
+ "probe_id",
1210
+ "phase",
1211
+ "outcome",
1212
+ "variable_count",
1213
+ "check_count",
1214
+ "failed_check_count",
1215
+ "content_ref"
1216
+ ],
1217
+ "properties": {
1218
+ "extension_id": {
1219
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticExtensionId"
1220
+ },
1221
+ "format_version": {
1222
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticFormatVersion"
1223
+ },
1224
+ "snapshot_id": {
1225
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticSnapshotId"
1226
+ },
1227
+ "probe_id": {
1228
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticProbeId"
1229
+ },
1230
+ "phase": {
1231
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticPhase"
1232
+ },
1233
+ "outcome": {
1234
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticOutcome"
1235
+ },
1236
+ "variable_count": {
1237
+ "type": "integer",
1238
+ "format": "int32",
1239
+ "minimum": 0,
1240
+ "maximum": 64
1241
+ },
1242
+ "check_count": {
1243
+ "type": "integer",
1244
+ "format": "int32",
1245
+ "minimum": 0,
1246
+ "maximum": 64
1247
+ },
1248
+ "failed_check_count": {
1249
+ "type": "integer",
1250
+ "format": "int32",
1251
+ "minimum": 0,
1252
+ "maximum": 64
1253
+ },
1254
+ "content_ref": {
1255
+ "$ref": "#/$defs/Workflow.WorkflowContentRef"
1256
+ }
1257
+ },
1258
+ "unevaluatedProperties": {
1259
+ "not": {}
1260
+ },
1261
+ "description": "Value-free event-data projection for a protected agent diagnostic snapshot. Encode this shape in WorkflowEventAppend.data on the existing content_captured event kind. content_ref must also occur in that event's content_refs and identifies UTF-8 JSON conforming to AgentDiagnosticSnapshot. Counts are computed from the referenced snapshot; failed_check_count counts checks whose outcome is fail. No variable names, values, human messages, expressions, nonce, or classifications may appear in this summary."
1262
+ },
1263
+ "Diagnostics.AgentDiagnosticValueType": {
1264
+ "type": "string",
1265
+ "enum": [
1266
+ "null",
1267
+ "boolean",
1268
+ "integer",
1269
+ "number",
1270
+ "string",
1271
+ "json"
1272
+ ],
1273
+ "description": "Declared JSON-level type of a diagnostic variable."
1274
+ },
1275
+ "Diagnostics.AgentDiagnosticVariable": {
1276
+ "anyOf": [
1277
+ {
1278
+ "$ref": "#/$defs/Diagnostics.CapturedAgentDiagnosticVariable"
1279
+ },
1280
+ {
1281
+ "$ref": "#/$defs/Diagnostics.RedactedAgentDiagnosticVariable"
1282
+ },
1283
+ {
1284
+ "$ref": "#/$defs/Diagnostics.OmittedAgentDiagnosticVariable"
1285
+ }
1286
+ ],
1287
+ "description": "One dynamically named variable in a protected diagnostic snapshot. Capture is the discriminator and makes value presence unambiguous."
1288
+ },
1289
+ "Diagnostics.AgentDiagnosticVariableBase": {
1290
+ "type": "object",
1291
+ "required": [
1292
+ "name",
1293
+ "type",
1294
+ "classification"
1295
+ ],
1296
+ "properties": {
1297
+ "name": {
1298
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
1299
+ },
1300
+ "type": {
1301
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticValueType"
1302
+ },
1303
+ "classification": {
1304
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticClassification"
1305
+ }
1306
+ },
1307
+ "description": "Common identity and policy fields for one dynamic diagnostic variable."
1308
+ },
1309
+ "Diagnostics.AgentDiagnosticVariableName": {
1310
+ "type": "string",
1311
+ "minLength": 1,
1312
+ "maxLength": 128,
1313
+ "pattern": "^[A-Za-z0-9_][A-Za-z0-9._:/\\[\\]-]{0,127}$",
1314
+ "description": "Stable machine name of one dynamically captured variable. Names are data values, never telemetry attribute keys, event names, or span names."
1315
+ },
1316
+ "Diagnostics.CapturedAgentDiagnosticVariable": {
1317
+ "type": "object",
1318
+ "required": [
1319
+ "capture",
1320
+ "value"
1321
+ ],
1322
+ "properties": {
1323
+ "capture": {
1324
+ "type": "string",
1325
+ "enum": [
1326
+ "value"
1327
+ ]
1328
+ },
1329
+ "value": {
1330
+ "anyOf": [
1331
+ {},
1332
+ {
1333
+ "type": "null"
1334
+ }
1335
+ ]
1336
+ }
1337
+ },
1338
+ "unevaluatedProperties": {
1339
+ "not": {}
1340
+ },
1341
+ "allOf": [
1342
+ {
1343
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableBase"
1344
+ }
1345
+ ],
1346
+ "description": "A variable whose typed JSON value is present in protected snapshot content. The value is required and must match type: null is JSON null; boolean is a JSON boolean; integer is a signed 64-bit JSON integer; number is a finite JSON number; string is a JSON string; json is a JSON object or array. The protected content boundary, not this model, controls access to all captured values."
1347
+ },
1348
+ "Diagnostics.OmittedAgentDiagnosticVariable": {
1349
+ "type": "object",
1350
+ "required": [
1351
+ "capture"
1352
+ ],
1353
+ "properties": {
1354
+ "capture": {
1355
+ "type": "string",
1356
+ "enum": [
1357
+ "omitted"
1358
+ ]
1359
+ }
1360
+ },
1361
+ "unevaluatedProperties": {
1362
+ "not": {}
1363
+ },
1364
+ "allOf": [
1365
+ {
1366
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableBase"
1367
+ }
1368
+ ],
1369
+ "description": "A variable whose value was unavailable or deliberately not captured. A value field is forbidden."
1370
+ },
1371
+ "Diagnostics.RedactedAgentDiagnosticVariable": {
1372
+ "type": "object",
1373
+ "required": [
1374
+ "capture"
1375
+ ],
1376
+ "properties": {
1377
+ "capture": {
1378
+ "type": "string",
1379
+ "enum": [
1380
+ "redacted"
1381
+ ]
1382
+ }
1383
+ },
1384
+ "unevaluatedProperties": {
1385
+ "not": {}
1386
+ },
1387
+ "allOf": [
1388
+ {
1389
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableBase"
1390
+ }
1391
+ ],
1392
+ "description": "A variable observed by the probe whose value was replaced by policy. A value field is forbidden."
1393
+ },
1024
1394
  "Domains.Observe.Session.DeviceType": {
1025
1395
  "type": "string",
1026
1396
  "enum": [
@@ -1891,6 +2261,42 @@
1891
2261
  },
1892
2262
  "description": "Structured output for the app-only fetch_workflow_graph_updates tool."
1893
2263
  },
2264
+ "Mcp.Tools.GetActiveWorkflowRunInput": {
2265
+ "type": "object",
2266
+ "unevaluatedProperties": {
2267
+ "not": {}
2268
+ },
2269
+ "description": "Input for get_active_workflow_run."
2270
+ },
2271
+ "Mcp.Tools.GetActiveWorkflowRunOutput": {
2272
+ "type": "object",
2273
+ "required": [
2274
+ "active",
2275
+ "live_controls_available"
2276
+ ],
2277
+ "properties": {
2278
+ "active": {
2279
+ "type": "boolean"
2280
+ },
2281
+ "live_controls_available": {
2282
+ "type": "boolean"
2283
+ },
2284
+ "run_id": {
2285
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
2286
+ },
2287
+ "thread_id": {
2288
+ "type": "string"
2289
+ },
2290
+ "started_at": {
2291
+ "type": "string",
2292
+ "format": "date-time"
2293
+ }
2294
+ },
2295
+ "unevaluatedProperties": {
2296
+ "not": {}
2297
+ },
2298
+ "description": "Structured output for get_active_workflow_run."
2299
+ },
1894
2300
  "Mcp.Tools.GetTraceInput": {
1895
2301
  "type": "object",
1896
2302
  "required": [
@@ -1981,6 +2387,58 @@
1981
2387
  },
1982
2388
  "description": "Structured output for get_workflow_graph."
1983
2389
  },
2390
+ "Mcp.Tools.InspectWorkflowEventsInput": {
2391
+ "type": "object",
2392
+ "required": [
2393
+ "run_id",
2394
+ "after_sequence"
2395
+ ],
2396
+ "properties": {
2397
+ "run_id": {
2398
+ "$ref": "#/$defs/Workflow.WorkflowRunId"
2399
+ },
2400
+ "after_sequence": {
2401
+ "$ref": "#/$defs/Workflow.WorkflowJournalPosition"
2402
+ },
2403
+ "limit": {
2404
+ "type": "integer",
2405
+ "format": "int32",
2406
+ "minimum": 1,
2407
+ "maximum": 1000,
2408
+ "default": 250
2409
+ },
2410
+ "content_ref": {
2411
+ "$ref": "#/$defs/Workflow.WorkflowContentRef",
2412
+ "description": "Optional captured payload to retrieve lazily for the selected run."
2413
+ }
2414
+ },
2415
+ "unevaluatedProperties": {
2416
+ "not": {}
2417
+ },
2418
+ "description": "Input for inspect_workflow_events."
2419
+ },
2420
+ "Mcp.Tools.InspectWorkflowEventsOutput": {
2421
+ "type": "object",
2422
+ "required": [
2423
+ "page",
2424
+ "mode"
2425
+ ],
2426
+ "properties": {
2427
+ "page": {
2428
+ "$ref": "#/$defs/Workflow.WorkflowEventPage"
2429
+ },
2430
+ "content": {
2431
+ "$ref": "#/$defs/Workflow.WorkflowContent"
2432
+ },
2433
+ "mode": {
2434
+ "$ref": "#/$defs/Mcp.Tools.McpDataMode"
2435
+ }
2436
+ },
2437
+ "unevaluatedProperties": {
2438
+ "not": {}
2439
+ },
2440
+ "description": "Structured output for inspect_workflow_events."
2441
+ },
1984
2442
  "Mcp.Tools.ListSessionsInput": {
1985
2443
  "type": "object",
1986
2444
  "properties": {
@@ -2334,6 +2792,131 @@
2334
2792
  "not": {}
2335
2793
  }
2336
2794
  },
2795
+ "Mcp.Tools.RecordDiagnosticSnapshotCheckInput": {
2796
+ "type": "object",
2797
+ "required": [
2798
+ "check_id",
2799
+ "operator",
2800
+ "actual"
2801
+ ],
2802
+ "properties": {
2803
+ "check_id": {
2804
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticCheckId"
2805
+ },
2806
+ "operator": {
2807
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticOperator"
2808
+ },
2809
+ "actual": {
2810
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
2811
+ },
2812
+ "expected": {
2813
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
2814
+ },
2815
+ "expected_type": {
2816
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticValueType"
2817
+ }
2818
+ },
2819
+ "unevaluatedProperties": {
2820
+ "not": {}
2821
+ },
2822
+ "description": "One structural diagnostic check submitted for evaluation. equal, not_equal, contains, less_than, and greater_than require expected and forbid expected_type; type_is requires expected_type and forbids expected; exists forbids both."
2823
+ },
2824
+ "Mcp.Tools.RecordDiagnosticSnapshotInput": {
2825
+ "type": "object",
2826
+ "required": [
2827
+ "snapshot_id",
2828
+ "probe_id",
2829
+ "phase",
2830
+ "variables"
2831
+ ],
2832
+ "properties": {
2833
+ "snapshot_id": {
2834
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticSnapshotId"
2835
+ },
2836
+ "probe_id": {
2837
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticProbeId"
2838
+ },
2839
+ "phase": {
2840
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticPhase"
2841
+ },
2842
+ "variables": {
2843
+ "type": "array",
2844
+ "items": {
2845
+ "$ref": "#/$defs/Mcp.Tools.RecordDiagnosticSnapshotVariableInput"
2846
+ },
2847
+ "maxItems": 64
2848
+ },
2849
+ "checks": {
2850
+ "type": "array",
2851
+ "items": {
2852
+ "$ref": "#/$defs/Mcp.Tools.RecordDiagnosticSnapshotCheckInput"
2853
+ },
2854
+ "maxItems": 64,
2855
+ "default": []
2856
+ }
2857
+ },
2858
+ "unevaluatedProperties": {
2859
+ "not": {}
2860
+ },
2861
+ "description": "Input for record_diagnostic_snapshot. Reuse the same snapshot_id and semantic payload when retrying; changing the payload under an existing snapshot_id is a conflict."
2862
+ },
2863
+ "Mcp.Tools.RecordDiagnosticSnapshotOutput": {
2864
+ "type": "object",
2865
+ "required": [
2866
+ "recorded",
2867
+ "code",
2868
+ "snapshot_id"
2869
+ ],
2870
+ "properties": {
2871
+ "recorded": {
2872
+ "type": "boolean"
2873
+ },
2874
+ "code": {
2875
+ "type": "string"
2876
+ },
2877
+ "snapshot_id": {
2878
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticSnapshotId"
2879
+ },
2880
+ "event_id": {
2881
+ "$ref": "#/$defs/Workflow.WorkflowEventId"
2882
+ },
2883
+ "field": {
2884
+ "type": "string"
2885
+ }
2886
+ },
2887
+ "unevaluatedProperties": {
2888
+ "not": {}
2889
+ },
2890
+ "description": "Structured output for record_diagnostic_snapshot."
2891
+ },
2892
+ "Mcp.Tools.RecordDiagnosticSnapshotVariableInput": {
2893
+ "type": "object",
2894
+ "required": [
2895
+ "name",
2896
+ "classification",
2897
+ "value"
2898
+ ],
2899
+ "properties": {
2900
+ "name": {
2901
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
2902
+ },
2903
+ "classification": {
2904
+ "$ref": "#/$defs/Diagnostics.AgentDiagnosticClassification"
2905
+ },
2906
+ "value": {
2907
+ "anyOf": [
2908
+ {},
2909
+ {
2910
+ "type": "null"
2911
+ }
2912
+ ]
2913
+ }
2914
+ },
2915
+ "unevaluatedProperties": {
2916
+ "not": {}
2917
+ },
2918
+ "description": "One dynamically named JSON value submitted for protected diagnostic capture. Classification is applied before the frame leaves the observer bridge."
2919
+ },
2337
2920
  "Mcp.Tools.SearchLogsInput": {
2338
2921
  "type": "object",
2339
2922
  "properties": {