@openclaw/gateway-protocol 2026.8.1 → 2026.8.2
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/README.md +13 -2
- package/dist/gateway-error-details.mjs +6 -3
- package/dist/index.d.mts +92 -2
- package/dist/index.mjs +4 -2
- package/dist/{schema-modules-Ci4vzz1h.d.mts → schema-modules-BtfLOmFu.d.mts} +382 -4
- package/dist/schema.d.mts +331 -4
- package/dist/schema.mjs +9 -4
- package/dist/{worktrees-DGAMd4T8.mjs → worktrees-DtrYnQGm.mjs} +107 -31
- package/package.json +2 -2
- package/protocol.schema.json +2888 -496
package/protocol.schema.json
CHANGED
|
@@ -259,6 +259,10 @@
|
|
|
259
259
|
"since": "<=2026.7",
|
|
260
260
|
"scope": "operator.admin"
|
|
261
261
|
},
|
|
262
|
+
"openclaw.setup.activate.start": {
|
|
263
|
+
"since": "2026.8",
|
|
264
|
+
"scope": "operator.admin"
|
|
265
|
+
},
|
|
262
266
|
"openclaw.setup.auth.start": {
|
|
263
267
|
"since": "<=2026.7",
|
|
264
268
|
"scope": "operator.admin"
|
|
@@ -18039,6 +18043,54 @@
|
|
|
18039
18043
|
},
|
|
18040
18044
|
"additionalProperties": false
|
|
18041
18045
|
},
|
|
18046
|
+
"shareRoute": {
|
|
18047
|
+
"type": "object",
|
|
18048
|
+
"required": [
|
|
18049
|
+
"kind",
|
|
18050
|
+
"routeSegment",
|
|
18051
|
+
"hostId",
|
|
18052
|
+
"identifierAlphabet",
|
|
18053
|
+
"fullLength",
|
|
18054
|
+
"minPrefixLength",
|
|
18055
|
+
"lookup",
|
|
18056
|
+
"ambiguity"
|
|
18057
|
+
],
|
|
18058
|
+
"properties": {
|
|
18059
|
+
"kind": {
|
|
18060
|
+
"type": "string",
|
|
18061
|
+
"const": "thread-id-prefix"
|
|
18062
|
+
},
|
|
18063
|
+
"routeSegment": {
|
|
18064
|
+
"type": "string",
|
|
18065
|
+
"pattern": "^[a-z][a-z0-9-]*$"
|
|
18066
|
+
},
|
|
18067
|
+
"hostId": {
|
|
18068
|
+
"type": "string",
|
|
18069
|
+
"minLength": 1
|
|
18070
|
+
},
|
|
18071
|
+
"identifierAlphabet": {
|
|
18072
|
+
"type": "string",
|
|
18073
|
+
"const": "lowercase-hex"
|
|
18074
|
+
},
|
|
18075
|
+
"fullLength": {
|
|
18076
|
+
"type": "number",
|
|
18077
|
+
"const": 32
|
|
18078
|
+
},
|
|
18079
|
+
"minPrefixLength": {
|
|
18080
|
+
"type": "number",
|
|
18081
|
+
"const": 12
|
|
18082
|
+
},
|
|
18083
|
+
"lookup": {
|
|
18084
|
+
"type": "string",
|
|
18085
|
+
"const": "catalog-list-search-by-thread-id-prefix"
|
|
18086
|
+
},
|
|
18087
|
+
"ambiguity": {
|
|
18088
|
+
"type": "string",
|
|
18089
|
+
"const": "multiple-results-or-next-cursor"
|
|
18090
|
+
}
|
|
18091
|
+
},
|
|
18092
|
+
"additionalProperties": false
|
|
18093
|
+
},
|
|
18042
18094
|
"hosts": {
|
|
18043
18095
|
"type": "array",
|
|
18044
18096
|
"items": {
|
|
@@ -18488,6 +18540,187 @@
|
|
|
18488
18540
|
"model": {
|
|
18489
18541
|
"type": "string"
|
|
18490
18542
|
},
|
|
18543
|
+
"sender": {
|
|
18544
|
+
"type": "object",
|
|
18545
|
+
"required": [
|
|
18546
|
+
"identity"
|
|
18547
|
+
],
|
|
18548
|
+
"properties": {
|
|
18549
|
+
"identity": {
|
|
18550
|
+
"anyOf": [
|
|
18551
|
+
{
|
|
18552
|
+
"type": "object",
|
|
18553
|
+
"required": [
|
|
18554
|
+
"type",
|
|
18555
|
+
"id"
|
|
18556
|
+
],
|
|
18557
|
+
"properties": {
|
|
18558
|
+
"type": {
|
|
18559
|
+
"type": "string",
|
|
18560
|
+
"const": "profile"
|
|
18561
|
+
},
|
|
18562
|
+
"id": {
|
|
18563
|
+
"type": "string",
|
|
18564
|
+
"minLength": 1
|
|
18565
|
+
}
|
|
18566
|
+
},
|
|
18567
|
+
"additionalProperties": false
|
|
18568
|
+
},
|
|
18569
|
+
{
|
|
18570
|
+
"type": "object",
|
|
18571
|
+
"required": [
|
|
18572
|
+
"type",
|
|
18573
|
+
"id"
|
|
18574
|
+
],
|
|
18575
|
+
"properties": {
|
|
18576
|
+
"type": {
|
|
18577
|
+
"type": "string",
|
|
18578
|
+
"const": "agent"
|
|
18579
|
+
},
|
|
18580
|
+
"id": {
|
|
18581
|
+
"type": "string",
|
|
18582
|
+
"minLength": 1
|
|
18583
|
+
}
|
|
18584
|
+
},
|
|
18585
|
+
"additionalProperties": false
|
|
18586
|
+
},
|
|
18587
|
+
{
|
|
18588
|
+
"type": "object",
|
|
18589
|
+
"required": [
|
|
18590
|
+
"type",
|
|
18591
|
+
"pluginId",
|
|
18592
|
+
"domain",
|
|
18593
|
+
"idKind",
|
|
18594
|
+
"id"
|
|
18595
|
+
],
|
|
18596
|
+
"properties": {
|
|
18597
|
+
"type": {
|
|
18598
|
+
"type": "string",
|
|
18599
|
+
"const": "remote"
|
|
18600
|
+
},
|
|
18601
|
+
"pluginId": {
|
|
18602
|
+
"type": "string",
|
|
18603
|
+
"minLength": 1
|
|
18604
|
+
},
|
|
18605
|
+
"domain": {
|
|
18606
|
+
"type": "string",
|
|
18607
|
+
"minLength": 1
|
|
18608
|
+
},
|
|
18609
|
+
"idKind": {
|
|
18610
|
+
"type": "string",
|
|
18611
|
+
"minLength": 1
|
|
18612
|
+
},
|
|
18613
|
+
"id": {
|
|
18614
|
+
"type": "string",
|
|
18615
|
+
"minLength": 1
|
|
18616
|
+
}
|
|
18617
|
+
},
|
|
18618
|
+
"additionalProperties": false
|
|
18619
|
+
},
|
|
18620
|
+
{
|
|
18621
|
+
"type": "object",
|
|
18622
|
+
"required": [
|
|
18623
|
+
"type",
|
|
18624
|
+
"pluginId",
|
|
18625
|
+
"accountId",
|
|
18626
|
+
"senderKind",
|
|
18627
|
+
"id"
|
|
18628
|
+
],
|
|
18629
|
+
"properties": {
|
|
18630
|
+
"type": {
|
|
18631
|
+
"type": "string",
|
|
18632
|
+
"const": "observation"
|
|
18633
|
+
},
|
|
18634
|
+
"pluginId": {
|
|
18635
|
+
"anyOf": [
|
|
18636
|
+
{
|
|
18637
|
+
"type": "string",
|
|
18638
|
+
"minLength": 1
|
|
18639
|
+
},
|
|
18640
|
+
{
|
|
18641
|
+
"type": "null"
|
|
18642
|
+
}
|
|
18643
|
+
]
|
|
18644
|
+
},
|
|
18645
|
+
"accountId": {
|
|
18646
|
+
"anyOf": [
|
|
18647
|
+
{
|
|
18648
|
+
"type": "string",
|
|
18649
|
+
"minLength": 1
|
|
18650
|
+
},
|
|
18651
|
+
{
|
|
18652
|
+
"type": "null"
|
|
18653
|
+
}
|
|
18654
|
+
]
|
|
18655
|
+
},
|
|
18656
|
+
"senderKind": {
|
|
18657
|
+
"anyOf": [
|
|
18658
|
+
{
|
|
18659
|
+
"type": "string",
|
|
18660
|
+
"const": "human"
|
|
18661
|
+
},
|
|
18662
|
+
{
|
|
18663
|
+
"type": "string",
|
|
18664
|
+
"const": "bot"
|
|
18665
|
+
},
|
|
18666
|
+
{
|
|
18667
|
+
"type": "string",
|
|
18668
|
+
"const": "unknown"
|
|
18669
|
+
}
|
|
18670
|
+
]
|
|
18671
|
+
},
|
|
18672
|
+
"id": {
|
|
18673
|
+
"type": "string",
|
|
18674
|
+
"minLength": 1
|
|
18675
|
+
}
|
|
18676
|
+
},
|
|
18677
|
+
"additionalProperties": false
|
|
18678
|
+
},
|
|
18679
|
+
{
|
|
18680
|
+
"type": "object",
|
|
18681
|
+
"required": [
|
|
18682
|
+
"type",
|
|
18683
|
+
"actorType",
|
|
18684
|
+
"source",
|
|
18685
|
+
"id"
|
|
18686
|
+
],
|
|
18687
|
+
"properties": {
|
|
18688
|
+
"type": {
|
|
18689
|
+
"type": "string",
|
|
18690
|
+
"const": "legacy"
|
|
18691
|
+
},
|
|
18692
|
+
"actorType": {
|
|
18693
|
+
"type": "string"
|
|
18694
|
+
},
|
|
18695
|
+
"source": {
|
|
18696
|
+
"anyOf": [
|
|
18697
|
+
{
|
|
18698
|
+
"type": "string"
|
|
18699
|
+
},
|
|
18700
|
+
{
|
|
18701
|
+
"type": "null"
|
|
18702
|
+
}
|
|
18703
|
+
]
|
|
18704
|
+
},
|
|
18705
|
+
"id": {
|
|
18706
|
+
"type": "string"
|
|
18707
|
+
}
|
|
18708
|
+
},
|
|
18709
|
+
"additionalProperties": false
|
|
18710
|
+
}
|
|
18711
|
+
]
|
|
18712
|
+
},
|
|
18713
|
+
"label": {
|
|
18714
|
+
"type": "string",
|
|
18715
|
+
"minLength": 1
|
|
18716
|
+
},
|
|
18717
|
+
"avatarUrl": {
|
|
18718
|
+
"type": "string",
|
|
18719
|
+
"minLength": 1
|
|
18720
|
+
}
|
|
18721
|
+
},
|
|
18722
|
+
"additionalProperties": false
|
|
18723
|
+
},
|
|
18491
18724
|
"truncated": {
|
|
18492
18725
|
"type": "boolean"
|
|
18493
18726
|
},
|
|
@@ -18596,6 +18829,54 @@
|
|
|
18596
18829
|
},
|
|
18597
18830
|
"additionalProperties": false
|
|
18598
18831
|
},
|
|
18832
|
+
"shareRoute": {
|
|
18833
|
+
"type": "object",
|
|
18834
|
+
"required": [
|
|
18835
|
+
"kind",
|
|
18836
|
+
"routeSegment",
|
|
18837
|
+
"hostId",
|
|
18838
|
+
"identifierAlphabet",
|
|
18839
|
+
"fullLength",
|
|
18840
|
+
"minPrefixLength",
|
|
18841
|
+
"lookup",
|
|
18842
|
+
"ambiguity"
|
|
18843
|
+
],
|
|
18844
|
+
"properties": {
|
|
18845
|
+
"kind": {
|
|
18846
|
+
"type": "string",
|
|
18847
|
+
"const": "thread-id-prefix"
|
|
18848
|
+
},
|
|
18849
|
+
"routeSegment": {
|
|
18850
|
+
"type": "string",
|
|
18851
|
+
"pattern": "^[a-z][a-z0-9-]*$"
|
|
18852
|
+
},
|
|
18853
|
+
"hostId": {
|
|
18854
|
+
"type": "string",
|
|
18855
|
+
"minLength": 1
|
|
18856
|
+
},
|
|
18857
|
+
"identifierAlphabet": {
|
|
18858
|
+
"type": "string",
|
|
18859
|
+
"const": "lowercase-hex"
|
|
18860
|
+
},
|
|
18861
|
+
"fullLength": {
|
|
18862
|
+
"type": "number",
|
|
18863
|
+
"const": 32
|
|
18864
|
+
},
|
|
18865
|
+
"minPrefixLength": {
|
|
18866
|
+
"type": "number",
|
|
18867
|
+
"const": 12
|
|
18868
|
+
},
|
|
18869
|
+
"lookup": {
|
|
18870
|
+
"type": "string",
|
|
18871
|
+
"const": "catalog-list-search-by-thread-id-prefix"
|
|
18872
|
+
},
|
|
18873
|
+
"ambiguity": {
|
|
18874
|
+
"type": "string",
|
|
18875
|
+
"const": "multiple-results-or-next-cursor"
|
|
18876
|
+
}
|
|
18877
|
+
},
|
|
18878
|
+
"additionalProperties": false
|
|
18879
|
+
},
|
|
18599
18880
|
"hosts": {
|
|
18600
18881
|
"type": "array",
|
|
18601
18882
|
"items": {
|
|
@@ -19108,6 +19389,187 @@
|
|
|
19108
19389
|
"model": {
|
|
19109
19390
|
"type": "string"
|
|
19110
19391
|
},
|
|
19392
|
+
"sender": {
|
|
19393
|
+
"type": "object",
|
|
19394
|
+
"required": [
|
|
19395
|
+
"identity"
|
|
19396
|
+
],
|
|
19397
|
+
"properties": {
|
|
19398
|
+
"identity": {
|
|
19399
|
+
"anyOf": [
|
|
19400
|
+
{
|
|
19401
|
+
"type": "object",
|
|
19402
|
+
"required": [
|
|
19403
|
+
"type",
|
|
19404
|
+
"id"
|
|
19405
|
+
],
|
|
19406
|
+
"properties": {
|
|
19407
|
+
"type": {
|
|
19408
|
+
"type": "string",
|
|
19409
|
+
"const": "profile"
|
|
19410
|
+
},
|
|
19411
|
+
"id": {
|
|
19412
|
+
"type": "string",
|
|
19413
|
+
"minLength": 1
|
|
19414
|
+
}
|
|
19415
|
+
},
|
|
19416
|
+
"additionalProperties": false
|
|
19417
|
+
},
|
|
19418
|
+
{
|
|
19419
|
+
"type": "object",
|
|
19420
|
+
"required": [
|
|
19421
|
+
"type",
|
|
19422
|
+
"id"
|
|
19423
|
+
],
|
|
19424
|
+
"properties": {
|
|
19425
|
+
"type": {
|
|
19426
|
+
"type": "string",
|
|
19427
|
+
"const": "agent"
|
|
19428
|
+
},
|
|
19429
|
+
"id": {
|
|
19430
|
+
"type": "string",
|
|
19431
|
+
"minLength": 1
|
|
19432
|
+
}
|
|
19433
|
+
},
|
|
19434
|
+
"additionalProperties": false
|
|
19435
|
+
},
|
|
19436
|
+
{
|
|
19437
|
+
"type": "object",
|
|
19438
|
+
"required": [
|
|
19439
|
+
"type",
|
|
19440
|
+
"pluginId",
|
|
19441
|
+
"domain",
|
|
19442
|
+
"idKind",
|
|
19443
|
+
"id"
|
|
19444
|
+
],
|
|
19445
|
+
"properties": {
|
|
19446
|
+
"type": {
|
|
19447
|
+
"type": "string",
|
|
19448
|
+
"const": "remote"
|
|
19449
|
+
},
|
|
19450
|
+
"pluginId": {
|
|
19451
|
+
"type": "string",
|
|
19452
|
+
"minLength": 1
|
|
19453
|
+
},
|
|
19454
|
+
"domain": {
|
|
19455
|
+
"type": "string",
|
|
19456
|
+
"minLength": 1
|
|
19457
|
+
},
|
|
19458
|
+
"idKind": {
|
|
19459
|
+
"type": "string",
|
|
19460
|
+
"minLength": 1
|
|
19461
|
+
},
|
|
19462
|
+
"id": {
|
|
19463
|
+
"type": "string",
|
|
19464
|
+
"minLength": 1
|
|
19465
|
+
}
|
|
19466
|
+
},
|
|
19467
|
+
"additionalProperties": false
|
|
19468
|
+
},
|
|
19469
|
+
{
|
|
19470
|
+
"type": "object",
|
|
19471
|
+
"required": [
|
|
19472
|
+
"type",
|
|
19473
|
+
"pluginId",
|
|
19474
|
+
"accountId",
|
|
19475
|
+
"senderKind",
|
|
19476
|
+
"id"
|
|
19477
|
+
],
|
|
19478
|
+
"properties": {
|
|
19479
|
+
"type": {
|
|
19480
|
+
"type": "string",
|
|
19481
|
+
"const": "observation"
|
|
19482
|
+
},
|
|
19483
|
+
"pluginId": {
|
|
19484
|
+
"anyOf": [
|
|
19485
|
+
{
|
|
19486
|
+
"type": "string",
|
|
19487
|
+
"minLength": 1
|
|
19488
|
+
},
|
|
19489
|
+
{
|
|
19490
|
+
"type": "null"
|
|
19491
|
+
}
|
|
19492
|
+
]
|
|
19493
|
+
},
|
|
19494
|
+
"accountId": {
|
|
19495
|
+
"anyOf": [
|
|
19496
|
+
{
|
|
19497
|
+
"type": "string",
|
|
19498
|
+
"minLength": 1
|
|
19499
|
+
},
|
|
19500
|
+
{
|
|
19501
|
+
"type": "null"
|
|
19502
|
+
}
|
|
19503
|
+
]
|
|
19504
|
+
},
|
|
19505
|
+
"senderKind": {
|
|
19506
|
+
"anyOf": [
|
|
19507
|
+
{
|
|
19508
|
+
"type": "string",
|
|
19509
|
+
"const": "human"
|
|
19510
|
+
},
|
|
19511
|
+
{
|
|
19512
|
+
"type": "string",
|
|
19513
|
+
"const": "bot"
|
|
19514
|
+
},
|
|
19515
|
+
{
|
|
19516
|
+
"type": "string",
|
|
19517
|
+
"const": "unknown"
|
|
19518
|
+
}
|
|
19519
|
+
]
|
|
19520
|
+
},
|
|
19521
|
+
"id": {
|
|
19522
|
+
"type": "string",
|
|
19523
|
+
"minLength": 1
|
|
19524
|
+
}
|
|
19525
|
+
},
|
|
19526
|
+
"additionalProperties": false
|
|
19527
|
+
},
|
|
19528
|
+
{
|
|
19529
|
+
"type": "object",
|
|
19530
|
+
"required": [
|
|
19531
|
+
"type",
|
|
19532
|
+
"actorType",
|
|
19533
|
+
"source",
|
|
19534
|
+
"id"
|
|
19535
|
+
],
|
|
19536
|
+
"properties": {
|
|
19537
|
+
"type": {
|
|
19538
|
+
"type": "string",
|
|
19539
|
+
"const": "legacy"
|
|
19540
|
+
},
|
|
19541
|
+
"actorType": {
|
|
19542
|
+
"type": "string"
|
|
19543
|
+
},
|
|
19544
|
+
"source": {
|
|
19545
|
+
"anyOf": [
|
|
19546
|
+
{
|
|
19547
|
+
"type": "string"
|
|
19548
|
+
},
|
|
19549
|
+
{
|
|
19550
|
+
"type": "null"
|
|
19551
|
+
}
|
|
19552
|
+
]
|
|
19553
|
+
},
|
|
19554
|
+
"id": {
|
|
19555
|
+
"type": "string"
|
|
19556
|
+
}
|
|
19557
|
+
},
|
|
19558
|
+
"additionalProperties": false
|
|
19559
|
+
}
|
|
19560
|
+
]
|
|
19561
|
+
},
|
|
19562
|
+
"label": {
|
|
19563
|
+
"type": "string",
|
|
19564
|
+
"minLength": 1
|
|
19565
|
+
},
|
|
19566
|
+
"avatarUrl": {
|
|
19567
|
+
"type": "string",
|
|
19568
|
+
"minLength": 1
|
|
19569
|
+
}
|
|
19570
|
+
},
|
|
19571
|
+
"additionalProperties": false
|
|
19572
|
+
},
|
|
19111
19573
|
"truncated": {
|
|
19112
19574
|
"type": "boolean"
|
|
19113
19575
|
},
|
|
@@ -21507,6 +21969,9 @@
|
|
|
21507
21969
|
}
|
|
21508
21970
|
]
|
|
21509
21971
|
},
|
|
21972
|
+
"permissionModePending": {
|
|
21973
|
+
"type": "boolean"
|
|
21974
|
+
},
|
|
21510
21975
|
"sessionRoot": {
|
|
21511
21976
|
"type": "string"
|
|
21512
21977
|
},
|
|
@@ -32792,6 +33257,78 @@
|
|
|
32792
33257
|
"type": "string",
|
|
32793
33258
|
"minLength": 1
|
|
32794
33259
|
},
|
|
33260
|
+
"expectedPermissionMode": {
|
|
33261
|
+
"anyOf": [
|
|
33262
|
+
{
|
|
33263
|
+
"anyOf": [
|
|
33264
|
+
{
|
|
33265
|
+
"type": "string",
|
|
33266
|
+
"const": "read-only"
|
|
33267
|
+
},
|
|
33268
|
+
{
|
|
33269
|
+
"type": "string",
|
|
33270
|
+
"const": "guarded"
|
|
33271
|
+
},
|
|
33272
|
+
{
|
|
33273
|
+
"type": "string",
|
|
33274
|
+
"const": "workspace"
|
|
33275
|
+
},
|
|
33276
|
+
{
|
|
33277
|
+
"type": "string",
|
|
33278
|
+
"const": "full"
|
|
33279
|
+
}
|
|
33280
|
+
]
|
|
33281
|
+
},
|
|
33282
|
+
{
|
|
33283
|
+
"type": "null"
|
|
33284
|
+
}
|
|
33285
|
+
]
|
|
33286
|
+
},
|
|
33287
|
+
"expectedToolOverrides": {
|
|
33288
|
+
"anyOf": [
|
|
33289
|
+
{
|
|
33290
|
+
"type": "object",
|
|
33291
|
+
"properties": {
|
|
33292
|
+
"mcpServers": {
|
|
33293
|
+
"type": "object",
|
|
33294
|
+
"patternProperties": {
|
|
33295
|
+
"^.*$": {
|
|
33296
|
+
"type": "boolean"
|
|
33297
|
+
}
|
|
33298
|
+
}
|
|
33299
|
+
},
|
|
33300
|
+
"mcpToolsDeny": {
|
|
33301
|
+
"type": "object",
|
|
33302
|
+
"patternProperties": {
|
|
33303
|
+
"^.*$": {
|
|
33304
|
+
"type": "array",
|
|
33305
|
+
"items": {
|
|
33306
|
+
"type": "string",
|
|
33307
|
+
"minLength": 1
|
|
33308
|
+
}
|
|
33309
|
+
}
|
|
33310
|
+
}
|
|
33311
|
+
},
|
|
33312
|
+
"skills": {
|
|
33313
|
+
"type": "object",
|
|
33314
|
+
"patternProperties": {
|
|
33315
|
+
"^.*$": {
|
|
33316
|
+
"type": "boolean"
|
|
33317
|
+
}
|
|
33318
|
+
}
|
|
33319
|
+
},
|
|
33320
|
+
"webSearch": {
|
|
33321
|
+
"type": "boolean"
|
|
33322
|
+
}
|
|
33323
|
+
},
|
|
33324
|
+
"additionalProperties": false
|
|
33325
|
+
},
|
|
33326
|
+
{
|
|
33327
|
+
"type": "null"
|
|
33328
|
+
}
|
|
33329
|
+
],
|
|
33330
|
+
"description": "Replace toolOverrides only when the current sparse overlay still matches this value; null asserts no overlay."
|
|
33331
|
+
},
|
|
32795
33332
|
"expectedMarkedUnreadAt": {
|
|
32796
33333
|
"anyOf": [
|
|
32797
33334
|
{
|
|
@@ -48984,6 +49521,286 @@
|
|
|
48984
49521
|
},
|
|
48985
49522
|
"additionalProperties": false
|
|
48986
49523
|
},
|
|
49524
|
+
"SystemAgentSetupActivateStartParams": {
|
|
49525
|
+
"type": "object",
|
|
49526
|
+
"required": [
|
|
49527
|
+
"kind",
|
|
49528
|
+
"sessionId"
|
|
49529
|
+
],
|
|
49530
|
+
"properties": {
|
|
49531
|
+
"agentId": {
|
|
49532
|
+
"type": "string",
|
|
49533
|
+
"minLength": 1
|
|
49534
|
+
},
|
|
49535
|
+
"kind": {
|
|
49536
|
+
"anyOf": [
|
|
49537
|
+
{
|
|
49538
|
+
"type": "string",
|
|
49539
|
+
"const": "existing-model"
|
|
49540
|
+
},
|
|
49541
|
+
{
|
|
49542
|
+
"type": "string",
|
|
49543
|
+
"const": "openai-api-key"
|
|
49544
|
+
},
|
|
49545
|
+
{
|
|
49546
|
+
"type": "string",
|
|
49547
|
+
"const": "anthropic-api-key"
|
|
49548
|
+
},
|
|
49549
|
+
{
|
|
49550
|
+
"type": "string",
|
|
49551
|
+
"const": "claude-cli"
|
|
49552
|
+
},
|
|
49553
|
+
{
|
|
49554
|
+
"type": "string",
|
|
49555
|
+
"const": "codex-cli"
|
|
49556
|
+
},
|
|
49557
|
+
{
|
|
49558
|
+
"type": "string",
|
|
49559
|
+
"const": "gemini-cli"
|
|
49560
|
+
},
|
|
49561
|
+
{
|
|
49562
|
+
"type": "string",
|
|
49563
|
+
"pattern": "^provider-auto:.+$"
|
|
49564
|
+
},
|
|
49565
|
+
{
|
|
49566
|
+
"type": "string",
|
|
49567
|
+
"const": "api-key"
|
|
49568
|
+
}
|
|
49569
|
+
]
|
|
49570
|
+
},
|
|
49571
|
+
"modelRef": {
|
|
49572
|
+
"type": "string",
|
|
49573
|
+
"minLength": 1
|
|
49574
|
+
},
|
|
49575
|
+
"authChoice": {
|
|
49576
|
+
"type": "string"
|
|
49577
|
+
},
|
|
49578
|
+
"apiKey": {
|
|
49579
|
+
"type": "string"
|
|
49580
|
+
},
|
|
49581
|
+
"workspace": {
|
|
49582
|
+
"type": "string"
|
|
49583
|
+
},
|
|
49584
|
+
"sessionId": {
|
|
49585
|
+
"type": "string",
|
|
49586
|
+
"minLength": 1
|
|
49587
|
+
}
|
|
49588
|
+
},
|
|
49589
|
+
"additionalProperties": false
|
|
49590
|
+
},
|
|
49591
|
+
"SystemAgentSetupActivateStartResult": {
|
|
49592
|
+
"type": "object",
|
|
49593
|
+
"required": [
|
|
49594
|
+
"sessionId",
|
|
49595
|
+
"done"
|
|
49596
|
+
],
|
|
49597
|
+
"properties": {
|
|
49598
|
+
"sessionId": {
|
|
49599
|
+
"type": "string",
|
|
49600
|
+
"minLength": 1
|
|
49601
|
+
},
|
|
49602
|
+
"done": {
|
|
49603
|
+
"type": "boolean"
|
|
49604
|
+
},
|
|
49605
|
+
"step": {
|
|
49606
|
+
"type": "object",
|
|
49607
|
+
"required": [
|
|
49608
|
+
"id",
|
|
49609
|
+
"type"
|
|
49610
|
+
],
|
|
49611
|
+
"properties": {
|
|
49612
|
+
"id": {
|
|
49613
|
+
"type": "string",
|
|
49614
|
+
"minLength": 1
|
|
49615
|
+
},
|
|
49616
|
+
"type": {
|
|
49617
|
+
"anyOf": [
|
|
49618
|
+
{
|
|
49619
|
+
"type": "string",
|
|
49620
|
+
"const": "note"
|
|
49621
|
+
},
|
|
49622
|
+
{
|
|
49623
|
+
"type": "string",
|
|
49624
|
+
"const": "select"
|
|
49625
|
+
},
|
|
49626
|
+
{
|
|
49627
|
+
"type": "string",
|
|
49628
|
+
"const": "text"
|
|
49629
|
+
},
|
|
49630
|
+
{
|
|
49631
|
+
"type": "string",
|
|
49632
|
+
"const": "confirm"
|
|
49633
|
+
},
|
|
49634
|
+
{
|
|
49635
|
+
"type": "string",
|
|
49636
|
+
"const": "multiselect"
|
|
49637
|
+
},
|
|
49638
|
+
{
|
|
49639
|
+
"type": "string",
|
|
49640
|
+
"const": "progress"
|
|
49641
|
+
},
|
|
49642
|
+
{
|
|
49643
|
+
"type": "string",
|
|
49644
|
+
"const": "action"
|
|
49645
|
+
}
|
|
49646
|
+
]
|
|
49647
|
+
},
|
|
49648
|
+
"title": {
|
|
49649
|
+
"type": "string"
|
|
49650
|
+
},
|
|
49651
|
+
"message": {
|
|
49652
|
+
"type": "string"
|
|
49653
|
+
},
|
|
49654
|
+
"format": {
|
|
49655
|
+
"anyOf": [
|
|
49656
|
+
{
|
|
49657
|
+
"type": "string",
|
|
49658
|
+
"const": "plain"
|
|
49659
|
+
}
|
|
49660
|
+
]
|
|
49661
|
+
},
|
|
49662
|
+
"options": {
|
|
49663
|
+
"type": "array",
|
|
49664
|
+
"items": {
|
|
49665
|
+
"type": "object",
|
|
49666
|
+
"required": [
|
|
49667
|
+
"value",
|
|
49668
|
+
"label"
|
|
49669
|
+
],
|
|
49670
|
+
"properties": {
|
|
49671
|
+
"value": {},
|
|
49672
|
+
"label": {
|
|
49673
|
+
"type": "string",
|
|
49674
|
+
"minLength": 1
|
|
49675
|
+
},
|
|
49676
|
+
"hint": {
|
|
49677
|
+
"type": "string"
|
|
49678
|
+
}
|
|
49679
|
+
},
|
|
49680
|
+
"additionalProperties": false
|
|
49681
|
+
}
|
|
49682
|
+
},
|
|
49683
|
+
"initialValue": {},
|
|
49684
|
+
"placeholder": {
|
|
49685
|
+
"type": "string"
|
|
49686
|
+
},
|
|
49687
|
+
"sensitive": {
|
|
49688
|
+
"type": "boolean"
|
|
49689
|
+
},
|
|
49690
|
+
"executor": {
|
|
49691
|
+
"anyOf": [
|
|
49692
|
+
{
|
|
49693
|
+
"type": "string",
|
|
49694
|
+
"const": "gateway"
|
|
49695
|
+
},
|
|
49696
|
+
{
|
|
49697
|
+
"type": "string",
|
|
49698
|
+
"const": "client"
|
|
49699
|
+
}
|
|
49700
|
+
]
|
|
49701
|
+
},
|
|
49702
|
+
"externalUrl": {
|
|
49703
|
+
"type": "string"
|
|
49704
|
+
},
|
|
49705
|
+
"deviceCode": {
|
|
49706
|
+
"type": "object",
|
|
49707
|
+
"required": [
|
|
49708
|
+
"code"
|
|
49709
|
+
],
|
|
49710
|
+
"properties": {
|
|
49711
|
+
"code": {
|
|
49712
|
+
"type": "string",
|
|
49713
|
+
"minLength": 1
|
|
49714
|
+
},
|
|
49715
|
+
"expiresInMinutes": {
|
|
49716
|
+
"type": "integer",
|
|
49717
|
+
"minimum": 1,
|
|
49718
|
+
"maximum": 1440
|
|
49719
|
+
},
|
|
49720
|
+
"message": {
|
|
49721
|
+
"type": "string"
|
|
49722
|
+
}
|
|
49723
|
+
},
|
|
49724
|
+
"additionalProperties": false
|
|
49725
|
+
}
|
|
49726
|
+
},
|
|
49727
|
+
"additionalProperties": false
|
|
49728
|
+
},
|
|
49729
|
+
"status": {
|
|
49730
|
+
"anyOf": [
|
|
49731
|
+
{
|
|
49732
|
+
"type": "string",
|
|
49733
|
+
"const": "running"
|
|
49734
|
+
},
|
|
49735
|
+
{
|
|
49736
|
+
"type": "string",
|
|
49737
|
+
"const": "done"
|
|
49738
|
+
},
|
|
49739
|
+
{
|
|
49740
|
+
"type": "string",
|
|
49741
|
+
"const": "cancelled"
|
|
49742
|
+
},
|
|
49743
|
+
{
|
|
49744
|
+
"type": "string",
|
|
49745
|
+
"const": "error"
|
|
49746
|
+
}
|
|
49747
|
+
]
|
|
49748
|
+
},
|
|
49749
|
+
"error": {
|
|
49750
|
+
"type": "string"
|
|
49751
|
+
},
|
|
49752
|
+
"channels": {
|
|
49753
|
+
"type": "array",
|
|
49754
|
+
"items": {
|
|
49755
|
+
"type": "string",
|
|
49756
|
+
"minLength": 1
|
|
49757
|
+
}
|
|
49758
|
+
},
|
|
49759
|
+
"accounts": {
|
|
49760
|
+
"type": "array",
|
|
49761
|
+
"items": {
|
|
49762
|
+
"type": "object",
|
|
49763
|
+
"required": [
|
|
49764
|
+
"channel",
|
|
49765
|
+
"accountId"
|
|
49766
|
+
],
|
|
49767
|
+
"properties": {
|
|
49768
|
+
"channel": {
|
|
49769
|
+
"type": "string",
|
|
49770
|
+
"minLength": 1
|
|
49771
|
+
},
|
|
49772
|
+
"accountId": {
|
|
49773
|
+
"type": "string",
|
|
49774
|
+
"minLength": 1
|
|
49775
|
+
}
|
|
49776
|
+
},
|
|
49777
|
+
"additionalProperties": false
|
|
49778
|
+
}
|
|
49779
|
+
},
|
|
49780
|
+
"preparedModelRef": {
|
|
49781
|
+
"type": "string",
|
|
49782
|
+
"minLength": 1
|
|
49783
|
+
},
|
|
49784
|
+
"modelActivation": {
|
|
49785
|
+
"type": "object",
|
|
49786
|
+
"required": [
|
|
49787
|
+
"modelRef"
|
|
49788
|
+
],
|
|
49789
|
+
"properties": {
|
|
49790
|
+
"modelRef": {
|
|
49791
|
+
"type": "string",
|
|
49792
|
+
"minLength": 1
|
|
49793
|
+
},
|
|
49794
|
+
"gatewayRestartRequired": {
|
|
49795
|
+
"type": "boolean",
|
|
49796
|
+
"const": true
|
|
49797
|
+
}
|
|
49798
|
+
},
|
|
49799
|
+
"additionalProperties": false
|
|
49800
|
+
}
|
|
49801
|
+
},
|
|
49802
|
+
"additionalProperties": false
|
|
49803
|
+
},
|
|
48987
49804
|
"SystemAgentSetupAuthStartParams": {
|
|
48988
49805
|
"type": "object",
|
|
48989
49806
|
"required": [
|
|
@@ -56178,10 +56995,6 @@
|
|
|
56178
56995
|
{
|
|
56179
56996
|
"type": "string",
|
|
56180
56997
|
"const": "tools"
|
|
56181
|
-
},
|
|
56182
|
-
{
|
|
56183
|
-
"type": "string",
|
|
56184
|
-
"const": "docks"
|
|
56185
56998
|
}
|
|
56186
56999
|
]
|
|
56187
57000
|
},
|
|
@@ -56429,10 +57242,6 @@
|
|
|
56429
57242
|
{
|
|
56430
57243
|
"type": "string",
|
|
56431
57244
|
"const": "tools"
|
|
56432
|
-
},
|
|
56433
|
-
{
|
|
56434
|
-
"type": "string",
|
|
56435
|
-
"const": "docks"
|
|
56436
57245
|
}
|
|
56437
57246
|
]
|
|
56438
57247
|
},
|
|
@@ -76474,6 +77283,39 @@
|
|
|
76474
77283
|
}
|
|
76475
77284
|
]
|
|
76476
77285
|
},
|
|
77286
|
+
"PluginApprovalExternalResolution": {
|
|
77287
|
+
"type": "object",
|
|
77288
|
+
"required": [
|
|
77289
|
+
"label",
|
|
77290
|
+
"decisions"
|
|
77291
|
+
],
|
|
77292
|
+
"properties": {
|
|
77293
|
+
"label": {
|
|
77294
|
+
"type": "string",
|
|
77295
|
+
"minLength": 1,
|
|
77296
|
+
"maxLength": 80
|
|
77297
|
+
},
|
|
77298
|
+
"decisions": {
|
|
77299
|
+
"type": "array",
|
|
77300
|
+
"items": {
|
|
77301
|
+
"anyOf": [
|
|
77302
|
+
{
|
|
77303
|
+
"type": "string",
|
|
77304
|
+
"const": "allow-once"
|
|
77305
|
+
},
|
|
77306
|
+
{
|
|
77307
|
+
"type": "string",
|
|
77308
|
+
"const": "allow-always"
|
|
77309
|
+
}
|
|
77310
|
+
]
|
|
77311
|
+
},
|
|
77312
|
+
"minItems": 1,
|
|
77313
|
+
"maxItems": 2,
|
|
77314
|
+
"uniqueItems": true
|
|
77315
|
+
}
|
|
77316
|
+
},
|
|
77317
|
+
"additionalProperties": false
|
|
77318
|
+
},
|
|
76477
77319
|
"ExecApprovalPresentation": {
|
|
76478
77320
|
"type": "object",
|
|
76479
77321
|
"required": [
|
|
@@ -76963,6 +77805,39 @@
|
|
|
76963
77805
|
"const": "deny"
|
|
76964
77806
|
},
|
|
76965
77807
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
77808
|
+
},
|
|
77809
|
+
"externalResolution": {
|
|
77810
|
+
"type": "object",
|
|
77811
|
+
"required": [
|
|
77812
|
+
"label",
|
|
77813
|
+
"decisions"
|
|
77814
|
+
],
|
|
77815
|
+
"properties": {
|
|
77816
|
+
"label": {
|
|
77817
|
+
"type": "string",
|
|
77818
|
+
"minLength": 1,
|
|
77819
|
+
"maxLength": 80
|
|
77820
|
+
},
|
|
77821
|
+
"decisions": {
|
|
77822
|
+
"type": "array",
|
|
77823
|
+
"items": {
|
|
77824
|
+
"anyOf": [
|
|
77825
|
+
{
|
|
77826
|
+
"type": "string",
|
|
77827
|
+
"const": "allow-once"
|
|
77828
|
+
},
|
|
77829
|
+
{
|
|
77830
|
+
"type": "string",
|
|
77831
|
+
"const": "allow-always"
|
|
77832
|
+
}
|
|
77833
|
+
]
|
|
77834
|
+
},
|
|
77835
|
+
"minItems": 1,
|
|
77836
|
+
"maxItems": 2,
|
|
77837
|
+
"uniqueItems": true
|
|
77838
|
+
}
|
|
77839
|
+
},
|
|
77840
|
+
"additionalProperties": false
|
|
76966
77841
|
}
|
|
76967
77842
|
},
|
|
76968
77843
|
"additionalProperties": false
|
|
@@ -77263,258 +78138,291 @@
|
|
|
77263
78138
|
"const": "deny"
|
|
77264
78139
|
},
|
|
77265
78140
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
77266
|
-
}
|
|
77267
|
-
},
|
|
77268
|
-
"additionalProperties": false,
|
|
77269
|
-
"description": "Reviewer-safe exec presentation. Runtime cwd, environment, system-run binding, and execution plan are intentionally excluded."
|
|
77270
|
-
},
|
|
77271
|
-
{
|
|
77272
|
-
"type": "object",
|
|
77273
|
-
"required": [
|
|
77274
|
-
"kind",
|
|
77275
|
-
"title",
|
|
77276
|
-
"description",
|
|
77277
|
-
"severity",
|
|
77278
|
-
"allowedDecisions"
|
|
77279
|
-
],
|
|
77280
|
-
"properties": {
|
|
77281
|
-
"kind": {
|
|
77282
|
-
"type": "string",
|
|
77283
|
-
"const": "plugin"
|
|
78141
|
+
}
|
|
78142
|
+
},
|
|
78143
|
+
"additionalProperties": false,
|
|
78144
|
+
"description": "Reviewer-safe exec presentation. Runtime cwd, environment, system-run binding, and execution plan are intentionally excluded."
|
|
78145
|
+
},
|
|
78146
|
+
{
|
|
78147
|
+
"type": "object",
|
|
78148
|
+
"required": [
|
|
78149
|
+
"kind",
|
|
78150
|
+
"title",
|
|
78151
|
+
"description",
|
|
78152
|
+
"severity",
|
|
78153
|
+
"allowedDecisions"
|
|
78154
|
+
],
|
|
78155
|
+
"properties": {
|
|
78156
|
+
"kind": {
|
|
78157
|
+
"type": "string",
|
|
78158
|
+
"const": "plugin"
|
|
78159
|
+
},
|
|
78160
|
+
"title": {
|
|
78161
|
+
"type": "string",
|
|
78162
|
+
"minLength": 1,
|
|
78163
|
+
"maxLength": 80
|
|
78164
|
+
},
|
|
78165
|
+
"description": {
|
|
78166
|
+
"type": "string",
|
|
78167
|
+
"minLength": 1,
|
|
78168
|
+
"maxLength": 512
|
|
78169
|
+
},
|
|
78170
|
+
"detail": {
|
|
78171
|
+
"type": "string",
|
|
78172
|
+
"minLength": 1,
|
|
78173
|
+
"maxLength": 16384
|
|
78174
|
+
},
|
|
78175
|
+
"severity": {
|
|
78176
|
+
"anyOf": [
|
|
78177
|
+
{
|
|
78178
|
+
"type": "string",
|
|
78179
|
+
"const": "info"
|
|
78180
|
+
},
|
|
78181
|
+
{
|
|
78182
|
+
"type": "string",
|
|
78183
|
+
"const": "warning"
|
|
78184
|
+
},
|
|
78185
|
+
{
|
|
78186
|
+
"type": "string",
|
|
78187
|
+
"const": "critical"
|
|
78188
|
+
}
|
|
78189
|
+
]
|
|
78190
|
+
},
|
|
78191
|
+
"pluginId": {
|
|
78192
|
+
"anyOf": [
|
|
78193
|
+
{
|
|
78194
|
+
"type": "string",
|
|
78195
|
+
"minLength": 1
|
|
78196
|
+
},
|
|
78197
|
+
{
|
|
78198
|
+
"type": "null"
|
|
78199
|
+
}
|
|
78200
|
+
]
|
|
78201
|
+
},
|
|
78202
|
+
"toolName": {
|
|
78203
|
+
"anyOf": [
|
|
78204
|
+
{
|
|
78205
|
+
"type": "string",
|
|
78206
|
+
"minLength": 1
|
|
78207
|
+
},
|
|
78208
|
+
{
|
|
78209
|
+
"type": "null"
|
|
78210
|
+
}
|
|
78211
|
+
]
|
|
78212
|
+
},
|
|
78213
|
+
"agentId": {
|
|
78214
|
+
"anyOf": [
|
|
78215
|
+
{
|
|
78216
|
+
"type": "string",
|
|
78217
|
+
"minLength": 1
|
|
78218
|
+
},
|
|
78219
|
+
{
|
|
78220
|
+
"type": "null"
|
|
78221
|
+
}
|
|
78222
|
+
]
|
|
78223
|
+
},
|
|
78224
|
+
"scope": {
|
|
78225
|
+
"anyOf": [
|
|
78226
|
+
{
|
|
78227
|
+
"type": "object",
|
|
78228
|
+
"required": [
|
|
78229
|
+
"kind",
|
|
78230
|
+
"target",
|
|
78231
|
+
"recipientCount"
|
|
78232
|
+
],
|
|
78233
|
+
"properties": {
|
|
78234
|
+
"kind": {
|
|
78235
|
+
"type": "string",
|
|
78236
|
+
"const": "message-send"
|
|
78237
|
+
},
|
|
78238
|
+
"target": {
|
|
78239
|
+
"type": "string",
|
|
78240
|
+
"minLength": 1,
|
|
78241
|
+
"maxLength": 128
|
|
78242
|
+
},
|
|
78243
|
+
"recipientCount": {
|
|
78244
|
+
"type": "integer",
|
|
78245
|
+
"minimum": 1,
|
|
78246
|
+
"maximum": 1000000
|
|
78247
|
+
},
|
|
78248
|
+
"recipients": {
|
|
78249
|
+
"type": "array",
|
|
78250
|
+
"items": {
|
|
78251
|
+
"type": "string",
|
|
78252
|
+
"minLength": 1,
|
|
78253
|
+
"maxLength": 128
|
|
78254
|
+
},
|
|
78255
|
+
"maxItems": 5
|
|
78256
|
+
},
|
|
78257
|
+
"audience": {
|
|
78258
|
+
"anyOf": [
|
|
78259
|
+
{
|
|
78260
|
+
"type": "string",
|
|
78261
|
+
"const": "internal"
|
|
78262
|
+
},
|
|
78263
|
+
{
|
|
78264
|
+
"type": "string",
|
|
78265
|
+
"const": "external"
|
|
78266
|
+
}
|
|
78267
|
+
]
|
|
78268
|
+
}
|
|
78269
|
+
},
|
|
78270
|
+
"additionalProperties": false
|
|
78271
|
+
},
|
|
78272
|
+
{
|
|
78273
|
+
"type": "object",
|
|
78274
|
+
"required": [
|
|
78275
|
+
"kind",
|
|
78276
|
+
"amount",
|
|
78277
|
+
"currency",
|
|
78278
|
+
"target"
|
|
78279
|
+
],
|
|
78280
|
+
"properties": {
|
|
78281
|
+
"kind": {
|
|
78282
|
+
"type": "string",
|
|
78283
|
+
"const": "payment"
|
|
78284
|
+
},
|
|
78285
|
+
"amount": {
|
|
78286
|
+
"type": "string",
|
|
78287
|
+
"minLength": 1,
|
|
78288
|
+
"maxLength": 40
|
|
78289
|
+
},
|
|
78290
|
+
"currency": {
|
|
78291
|
+
"type": "string",
|
|
78292
|
+
"minLength": 1,
|
|
78293
|
+
"maxLength": 12
|
|
78294
|
+
},
|
|
78295
|
+
"target": {
|
|
78296
|
+
"type": "string",
|
|
78297
|
+
"minLength": 1,
|
|
78298
|
+
"maxLength": 128
|
|
78299
|
+
}
|
|
78300
|
+
},
|
|
78301
|
+
"additionalProperties": false
|
|
78302
|
+
},
|
|
78303
|
+
{
|
|
78304
|
+
"type": "object",
|
|
78305
|
+
"required": [
|
|
78306
|
+
"kind",
|
|
78307
|
+
"target",
|
|
78308
|
+
"visibility"
|
|
78309
|
+
],
|
|
78310
|
+
"properties": {
|
|
78311
|
+
"kind": {
|
|
78312
|
+
"type": "string",
|
|
78313
|
+
"const": "external-post"
|
|
78314
|
+
},
|
|
78315
|
+
"target": {
|
|
78316
|
+
"type": "string",
|
|
78317
|
+
"minLength": 1,
|
|
78318
|
+
"maxLength": 128
|
|
78319
|
+
},
|
|
78320
|
+
"visibility": {
|
|
78321
|
+
"anyOf": [
|
|
78322
|
+
{
|
|
78323
|
+
"type": "string",
|
|
78324
|
+
"const": "public"
|
|
78325
|
+
},
|
|
78326
|
+
{
|
|
78327
|
+
"type": "string",
|
|
78328
|
+
"const": "restricted"
|
|
78329
|
+
}
|
|
78330
|
+
]
|
|
78331
|
+
}
|
|
78332
|
+
},
|
|
78333
|
+
"additionalProperties": false
|
|
78334
|
+
},
|
|
78335
|
+
{
|
|
78336
|
+
"type": "object",
|
|
78337
|
+
"required": [
|
|
78338
|
+
"kind",
|
|
78339
|
+
"automation",
|
|
78340
|
+
"command"
|
|
78341
|
+
],
|
|
78342
|
+
"properties": {
|
|
78343
|
+
"kind": {
|
|
78344
|
+
"type": "string",
|
|
78345
|
+
"const": "standing-grant"
|
|
78346
|
+
},
|
|
78347
|
+
"automation": {
|
|
78348
|
+
"type": "string",
|
|
78349
|
+
"minLength": 1,
|
|
78350
|
+
"maxLength": 128
|
|
78351
|
+
},
|
|
78352
|
+
"command": {
|
|
78353
|
+
"type": "string",
|
|
78354
|
+
"minLength": 1,
|
|
78355
|
+
"maxLength": 256
|
|
78356
|
+
},
|
|
78357
|
+
"expiresInDays": {
|
|
78358
|
+
"type": "integer",
|
|
78359
|
+
"minimum": 1,
|
|
78360
|
+
"maximum": 3650
|
|
78361
|
+
}
|
|
78362
|
+
},
|
|
78363
|
+
"additionalProperties": false
|
|
78364
|
+
}
|
|
78365
|
+
]
|
|
78366
|
+
},
|
|
78367
|
+
"allowedDecisions": {
|
|
78368
|
+
"type": "array",
|
|
78369
|
+
"items": {
|
|
78370
|
+
"anyOf": [
|
|
78371
|
+
{
|
|
78372
|
+
"type": "string",
|
|
78373
|
+
"const": "allow-once"
|
|
78374
|
+
},
|
|
78375
|
+
{
|
|
78376
|
+
"type": "string",
|
|
78377
|
+
"const": "allow-always"
|
|
78378
|
+
},
|
|
78379
|
+
{
|
|
78380
|
+
"type": "string",
|
|
78381
|
+
"const": "deny"
|
|
78382
|
+
}
|
|
78383
|
+
]
|
|
78384
|
+
},
|
|
78385
|
+
"minItems": 1,
|
|
78386
|
+
"maxItems": 3,
|
|
78387
|
+
"uniqueItems": true,
|
|
78388
|
+
"contains": {
|
|
78389
|
+
"type": "string",
|
|
78390
|
+
"const": "deny"
|
|
78391
|
+
},
|
|
78392
|
+
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
77284
78393
|
},
|
|
77285
|
-
"
|
|
77286
|
-
"type": "
|
|
77287
|
-
"
|
|
77288
|
-
|
|
77289
|
-
|
|
77290
|
-
|
|
77291
|
-
"
|
|
77292
|
-
|
|
77293
|
-
"maxLength": 512
|
|
77294
|
-
},
|
|
77295
|
-
"detail": {
|
|
77296
|
-
"type": "string",
|
|
77297
|
-
"minLength": 1,
|
|
77298
|
-
"maxLength": 16384
|
|
77299
|
-
},
|
|
77300
|
-
"severity": {
|
|
77301
|
-
"anyOf": [
|
|
77302
|
-
{
|
|
77303
|
-
"type": "string",
|
|
77304
|
-
"const": "info"
|
|
77305
|
-
},
|
|
77306
|
-
{
|
|
77307
|
-
"type": "string",
|
|
77308
|
-
"const": "warning"
|
|
77309
|
-
},
|
|
77310
|
-
{
|
|
77311
|
-
"type": "string",
|
|
77312
|
-
"const": "critical"
|
|
77313
|
-
}
|
|
77314
|
-
]
|
|
77315
|
-
},
|
|
77316
|
-
"pluginId": {
|
|
77317
|
-
"anyOf": [
|
|
77318
|
-
{
|
|
77319
|
-
"type": "string",
|
|
77320
|
-
"minLength": 1
|
|
77321
|
-
},
|
|
77322
|
-
{
|
|
77323
|
-
"type": "null"
|
|
77324
|
-
}
|
|
77325
|
-
]
|
|
77326
|
-
},
|
|
77327
|
-
"toolName": {
|
|
77328
|
-
"anyOf": [
|
|
77329
|
-
{
|
|
77330
|
-
"type": "string",
|
|
77331
|
-
"minLength": 1
|
|
77332
|
-
},
|
|
77333
|
-
{
|
|
77334
|
-
"type": "null"
|
|
77335
|
-
}
|
|
77336
|
-
]
|
|
77337
|
-
},
|
|
77338
|
-
"agentId": {
|
|
77339
|
-
"anyOf": [
|
|
77340
|
-
{
|
|
78394
|
+
"externalResolution": {
|
|
78395
|
+
"type": "object",
|
|
78396
|
+
"required": [
|
|
78397
|
+
"label",
|
|
78398
|
+
"decisions"
|
|
78399
|
+
],
|
|
78400
|
+
"properties": {
|
|
78401
|
+
"label": {
|
|
77341
78402
|
"type": "string",
|
|
77342
|
-
"minLength": 1
|
|
78403
|
+
"minLength": 1,
|
|
78404
|
+
"maxLength": 80
|
|
77343
78405
|
},
|
|
77344
|
-
{
|
|
77345
|
-
"type": "
|
|
77346
|
-
|
|
77347
|
-
|
|
77348
|
-
|
|
77349
|
-
"scope": {
|
|
77350
|
-
"anyOf": [
|
|
77351
|
-
{
|
|
77352
|
-
"type": "object",
|
|
77353
|
-
"required": [
|
|
77354
|
-
"kind",
|
|
77355
|
-
"target",
|
|
77356
|
-
"recipientCount"
|
|
77357
|
-
],
|
|
77358
|
-
"properties": {
|
|
77359
|
-
"kind": {
|
|
77360
|
-
"type": "string",
|
|
77361
|
-
"const": "message-send"
|
|
77362
|
-
},
|
|
77363
|
-
"target": {
|
|
77364
|
-
"type": "string",
|
|
77365
|
-
"minLength": 1,
|
|
77366
|
-
"maxLength": 128
|
|
77367
|
-
},
|
|
77368
|
-
"recipientCount": {
|
|
77369
|
-
"type": "integer",
|
|
77370
|
-
"minimum": 1,
|
|
77371
|
-
"maximum": 1000000
|
|
77372
|
-
},
|
|
77373
|
-
"recipients": {
|
|
77374
|
-
"type": "array",
|
|
77375
|
-
"items": {
|
|
78406
|
+
"decisions": {
|
|
78407
|
+
"type": "array",
|
|
78408
|
+
"items": {
|
|
78409
|
+
"anyOf": [
|
|
78410
|
+
{
|
|
77376
78411
|
"type": "string",
|
|
77377
|
-
"
|
|
77378
|
-
"maxLength": 128
|
|
78412
|
+
"const": "allow-once"
|
|
77379
78413
|
},
|
|
77380
|
-
|
|
77381
|
-
|
|
77382
|
-
|
|
77383
|
-
|
|
77384
|
-
|
|
77385
|
-
"type": "string",
|
|
77386
|
-
"const": "internal"
|
|
77387
|
-
},
|
|
77388
|
-
{
|
|
77389
|
-
"type": "string",
|
|
77390
|
-
"const": "external"
|
|
77391
|
-
}
|
|
77392
|
-
]
|
|
77393
|
-
}
|
|
77394
|
-
},
|
|
77395
|
-
"additionalProperties": false
|
|
77396
|
-
},
|
|
77397
|
-
{
|
|
77398
|
-
"type": "object",
|
|
77399
|
-
"required": [
|
|
77400
|
-
"kind",
|
|
77401
|
-
"amount",
|
|
77402
|
-
"currency",
|
|
77403
|
-
"target"
|
|
77404
|
-
],
|
|
77405
|
-
"properties": {
|
|
77406
|
-
"kind": {
|
|
77407
|
-
"type": "string",
|
|
77408
|
-
"const": "payment"
|
|
77409
|
-
},
|
|
77410
|
-
"amount": {
|
|
77411
|
-
"type": "string",
|
|
77412
|
-
"minLength": 1,
|
|
77413
|
-
"maxLength": 40
|
|
77414
|
-
},
|
|
77415
|
-
"currency": {
|
|
77416
|
-
"type": "string",
|
|
77417
|
-
"minLength": 1,
|
|
77418
|
-
"maxLength": 12
|
|
77419
|
-
},
|
|
77420
|
-
"target": {
|
|
77421
|
-
"type": "string",
|
|
77422
|
-
"minLength": 1,
|
|
77423
|
-
"maxLength": 128
|
|
77424
|
-
}
|
|
77425
|
-
},
|
|
77426
|
-
"additionalProperties": false
|
|
77427
|
-
},
|
|
77428
|
-
{
|
|
77429
|
-
"type": "object",
|
|
77430
|
-
"required": [
|
|
77431
|
-
"kind",
|
|
77432
|
-
"target",
|
|
77433
|
-
"visibility"
|
|
77434
|
-
],
|
|
77435
|
-
"properties": {
|
|
77436
|
-
"kind": {
|
|
77437
|
-
"type": "string",
|
|
77438
|
-
"const": "external-post"
|
|
77439
|
-
},
|
|
77440
|
-
"target": {
|
|
77441
|
-
"type": "string",
|
|
77442
|
-
"minLength": 1,
|
|
77443
|
-
"maxLength": 128
|
|
77444
|
-
},
|
|
77445
|
-
"visibility": {
|
|
77446
|
-
"anyOf": [
|
|
77447
|
-
{
|
|
77448
|
-
"type": "string",
|
|
77449
|
-
"const": "public"
|
|
77450
|
-
},
|
|
77451
|
-
{
|
|
77452
|
-
"type": "string",
|
|
77453
|
-
"const": "restricted"
|
|
77454
|
-
}
|
|
77455
|
-
]
|
|
77456
|
-
}
|
|
77457
|
-
},
|
|
77458
|
-
"additionalProperties": false
|
|
77459
|
-
},
|
|
77460
|
-
{
|
|
77461
|
-
"type": "object",
|
|
77462
|
-
"required": [
|
|
77463
|
-
"kind",
|
|
77464
|
-
"automation",
|
|
77465
|
-
"command"
|
|
77466
|
-
],
|
|
77467
|
-
"properties": {
|
|
77468
|
-
"kind": {
|
|
77469
|
-
"type": "string",
|
|
77470
|
-
"const": "standing-grant"
|
|
77471
|
-
},
|
|
77472
|
-
"automation": {
|
|
77473
|
-
"type": "string",
|
|
77474
|
-
"minLength": 1,
|
|
77475
|
-
"maxLength": 128
|
|
77476
|
-
},
|
|
77477
|
-
"command": {
|
|
77478
|
-
"type": "string",
|
|
77479
|
-
"minLength": 1,
|
|
77480
|
-
"maxLength": 256
|
|
77481
|
-
},
|
|
77482
|
-
"expiresInDays": {
|
|
77483
|
-
"type": "integer",
|
|
77484
|
-
"minimum": 1,
|
|
77485
|
-
"maximum": 3650
|
|
77486
|
-
}
|
|
78414
|
+
{
|
|
78415
|
+
"type": "string",
|
|
78416
|
+
"const": "allow-always"
|
|
78417
|
+
}
|
|
78418
|
+
]
|
|
77487
78419
|
},
|
|
77488
|
-
"
|
|
78420
|
+
"minItems": 1,
|
|
78421
|
+
"maxItems": 2,
|
|
78422
|
+
"uniqueItems": true
|
|
77489
78423
|
}
|
|
77490
|
-
]
|
|
77491
|
-
},
|
|
77492
|
-
"allowedDecisions": {
|
|
77493
|
-
"type": "array",
|
|
77494
|
-
"items": {
|
|
77495
|
-
"anyOf": [
|
|
77496
|
-
{
|
|
77497
|
-
"type": "string",
|
|
77498
|
-
"const": "allow-once"
|
|
77499
|
-
},
|
|
77500
|
-
{
|
|
77501
|
-
"type": "string",
|
|
77502
|
-
"const": "allow-always"
|
|
77503
|
-
},
|
|
77504
|
-
{
|
|
77505
|
-
"type": "string",
|
|
77506
|
-
"const": "deny"
|
|
77507
|
-
}
|
|
77508
|
-
]
|
|
77509
78424
|
},
|
|
77510
|
-
"
|
|
77511
|
-
"maxItems": 3,
|
|
77512
|
-
"uniqueItems": true,
|
|
77513
|
-
"contains": {
|
|
77514
|
-
"type": "string",
|
|
77515
|
-
"const": "deny"
|
|
77516
|
-
},
|
|
77517
|
-
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
78425
|
+
"additionalProperties": false
|
|
77518
78426
|
}
|
|
77519
78427
|
},
|
|
77520
78428
|
"additionalProperties": false
|
|
@@ -78098,6 +79006,39 @@
|
|
|
78098
79006
|
"const": "deny"
|
|
78099
79007
|
},
|
|
78100
79008
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
79009
|
+
},
|
|
79010
|
+
"externalResolution": {
|
|
79011
|
+
"type": "object",
|
|
79012
|
+
"required": [
|
|
79013
|
+
"label",
|
|
79014
|
+
"decisions"
|
|
79015
|
+
],
|
|
79016
|
+
"properties": {
|
|
79017
|
+
"label": {
|
|
79018
|
+
"type": "string",
|
|
79019
|
+
"minLength": 1,
|
|
79020
|
+
"maxLength": 80
|
|
79021
|
+
},
|
|
79022
|
+
"decisions": {
|
|
79023
|
+
"type": "array",
|
|
79024
|
+
"items": {
|
|
79025
|
+
"anyOf": [
|
|
79026
|
+
{
|
|
79027
|
+
"type": "string",
|
|
79028
|
+
"const": "allow-once"
|
|
79029
|
+
},
|
|
79030
|
+
{
|
|
79031
|
+
"type": "string",
|
|
79032
|
+
"const": "allow-always"
|
|
79033
|
+
}
|
|
79034
|
+
]
|
|
79035
|
+
},
|
|
79036
|
+
"minItems": 1,
|
|
79037
|
+
"maxItems": 2,
|
|
79038
|
+
"uniqueItems": true
|
|
79039
|
+
}
|
|
79040
|
+
},
|
|
79041
|
+
"additionalProperties": false
|
|
78101
79042
|
}
|
|
78102
79043
|
},
|
|
78103
79044
|
"additionalProperties": false
|
|
@@ -78695,6 +79636,39 @@
|
|
|
78695
79636
|
"const": "deny"
|
|
78696
79637
|
},
|
|
78697
79638
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
79639
|
+
},
|
|
79640
|
+
"externalResolution": {
|
|
79641
|
+
"type": "object",
|
|
79642
|
+
"required": [
|
|
79643
|
+
"label",
|
|
79644
|
+
"decisions"
|
|
79645
|
+
],
|
|
79646
|
+
"properties": {
|
|
79647
|
+
"label": {
|
|
79648
|
+
"type": "string",
|
|
79649
|
+
"minLength": 1,
|
|
79650
|
+
"maxLength": 80
|
|
79651
|
+
},
|
|
79652
|
+
"decisions": {
|
|
79653
|
+
"type": "array",
|
|
79654
|
+
"items": {
|
|
79655
|
+
"anyOf": [
|
|
79656
|
+
{
|
|
79657
|
+
"type": "string",
|
|
79658
|
+
"const": "allow-once"
|
|
79659
|
+
},
|
|
79660
|
+
{
|
|
79661
|
+
"type": "string",
|
|
79662
|
+
"const": "allow-always"
|
|
79663
|
+
}
|
|
79664
|
+
]
|
|
79665
|
+
},
|
|
79666
|
+
"minItems": 1,
|
|
79667
|
+
"maxItems": 2,
|
|
79668
|
+
"uniqueItems": true
|
|
79669
|
+
}
|
|
79670
|
+
},
|
|
79671
|
+
"additionalProperties": false
|
|
78698
79672
|
}
|
|
78699
79673
|
},
|
|
78700
79674
|
"additionalProperties": false
|
|
@@ -79107,258 +80081,291 @@
|
|
|
79107
80081
|
"const": "deny"
|
|
79108
80082
|
},
|
|
79109
80083
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
79110
|
-
}
|
|
79111
|
-
},
|
|
79112
|
-
"additionalProperties": false,
|
|
79113
|
-
"description": "Reviewer-safe exec presentation. Runtime cwd, environment, system-run binding, and execution plan are intentionally excluded."
|
|
79114
|
-
},
|
|
79115
|
-
{
|
|
79116
|
-
"type": "object",
|
|
79117
|
-
"required": [
|
|
79118
|
-
"kind",
|
|
79119
|
-
"title",
|
|
79120
|
-
"description",
|
|
79121
|
-
"severity",
|
|
79122
|
-
"allowedDecisions"
|
|
79123
|
-
],
|
|
79124
|
-
"properties": {
|
|
79125
|
-
"kind": {
|
|
79126
|
-
"type": "string",
|
|
79127
|
-
"const": "plugin"
|
|
80084
|
+
}
|
|
80085
|
+
},
|
|
80086
|
+
"additionalProperties": false,
|
|
80087
|
+
"description": "Reviewer-safe exec presentation. Runtime cwd, environment, system-run binding, and execution plan are intentionally excluded."
|
|
80088
|
+
},
|
|
80089
|
+
{
|
|
80090
|
+
"type": "object",
|
|
80091
|
+
"required": [
|
|
80092
|
+
"kind",
|
|
80093
|
+
"title",
|
|
80094
|
+
"description",
|
|
80095
|
+
"severity",
|
|
80096
|
+
"allowedDecisions"
|
|
80097
|
+
],
|
|
80098
|
+
"properties": {
|
|
80099
|
+
"kind": {
|
|
80100
|
+
"type": "string",
|
|
80101
|
+
"const": "plugin"
|
|
80102
|
+
},
|
|
80103
|
+
"title": {
|
|
80104
|
+
"type": "string",
|
|
80105
|
+
"minLength": 1,
|
|
80106
|
+
"maxLength": 80
|
|
80107
|
+
},
|
|
80108
|
+
"description": {
|
|
80109
|
+
"type": "string",
|
|
80110
|
+
"minLength": 1,
|
|
80111
|
+
"maxLength": 512
|
|
80112
|
+
},
|
|
80113
|
+
"detail": {
|
|
80114
|
+
"type": "string",
|
|
80115
|
+
"minLength": 1,
|
|
80116
|
+
"maxLength": 16384
|
|
80117
|
+
},
|
|
80118
|
+
"severity": {
|
|
80119
|
+
"anyOf": [
|
|
80120
|
+
{
|
|
80121
|
+
"type": "string",
|
|
80122
|
+
"const": "info"
|
|
80123
|
+
},
|
|
80124
|
+
{
|
|
80125
|
+
"type": "string",
|
|
80126
|
+
"const": "warning"
|
|
80127
|
+
},
|
|
80128
|
+
{
|
|
80129
|
+
"type": "string",
|
|
80130
|
+
"const": "critical"
|
|
80131
|
+
}
|
|
80132
|
+
]
|
|
80133
|
+
},
|
|
80134
|
+
"pluginId": {
|
|
80135
|
+
"anyOf": [
|
|
80136
|
+
{
|
|
80137
|
+
"type": "string",
|
|
80138
|
+
"minLength": 1
|
|
80139
|
+
},
|
|
80140
|
+
{
|
|
80141
|
+
"type": "null"
|
|
80142
|
+
}
|
|
80143
|
+
]
|
|
80144
|
+
},
|
|
80145
|
+
"toolName": {
|
|
80146
|
+
"anyOf": [
|
|
80147
|
+
{
|
|
80148
|
+
"type": "string",
|
|
80149
|
+
"minLength": 1
|
|
80150
|
+
},
|
|
80151
|
+
{
|
|
80152
|
+
"type": "null"
|
|
80153
|
+
}
|
|
80154
|
+
]
|
|
80155
|
+
},
|
|
80156
|
+
"agentId": {
|
|
80157
|
+
"anyOf": [
|
|
80158
|
+
{
|
|
80159
|
+
"type": "string",
|
|
80160
|
+
"minLength": 1
|
|
80161
|
+
},
|
|
80162
|
+
{
|
|
80163
|
+
"type": "null"
|
|
80164
|
+
}
|
|
80165
|
+
]
|
|
80166
|
+
},
|
|
80167
|
+
"scope": {
|
|
80168
|
+
"anyOf": [
|
|
80169
|
+
{
|
|
80170
|
+
"type": "object",
|
|
80171
|
+
"required": [
|
|
80172
|
+
"kind",
|
|
80173
|
+
"target",
|
|
80174
|
+
"recipientCount"
|
|
80175
|
+
],
|
|
80176
|
+
"properties": {
|
|
80177
|
+
"kind": {
|
|
80178
|
+
"type": "string",
|
|
80179
|
+
"const": "message-send"
|
|
80180
|
+
},
|
|
80181
|
+
"target": {
|
|
80182
|
+
"type": "string",
|
|
80183
|
+
"minLength": 1,
|
|
80184
|
+
"maxLength": 128
|
|
80185
|
+
},
|
|
80186
|
+
"recipientCount": {
|
|
80187
|
+
"type": "integer",
|
|
80188
|
+
"minimum": 1,
|
|
80189
|
+
"maximum": 1000000
|
|
80190
|
+
},
|
|
80191
|
+
"recipients": {
|
|
80192
|
+
"type": "array",
|
|
80193
|
+
"items": {
|
|
80194
|
+
"type": "string",
|
|
80195
|
+
"minLength": 1,
|
|
80196
|
+
"maxLength": 128
|
|
80197
|
+
},
|
|
80198
|
+
"maxItems": 5
|
|
80199
|
+
},
|
|
80200
|
+
"audience": {
|
|
80201
|
+
"anyOf": [
|
|
80202
|
+
{
|
|
80203
|
+
"type": "string",
|
|
80204
|
+
"const": "internal"
|
|
80205
|
+
},
|
|
80206
|
+
{
|
|
80207
|
+
"type": "string",
|
|
80208
|
+
"const": "external"
|
|
80209
|
+
}
|
|
80210
|
+
]
|
|
80211
|
+
}
|
|
80212
|
+
},
|
|
80213
|
+
"additionalProperties": false
|
|
80214
|
+
},
|
|
80215
|
+
{
|
|
80216
|
+
"type": "object",
|
|
80217
|
+
"required": [
|
|
80218
|
+
"kind",
|
|
80219
|
+
"amount",
|
|
80220
|
+
"currency",
|
|
80221
|
+
"target"
|
|
80222
|
+
],
|
|
80223
|
+
"properties": {
|
|
80224
|
+
"kind": {
|
|
80225
|
+
"type": "string",
|
|
80226
|
+
"const": "payment"
|
|
80227
|
+
},
|
|
80228
|
+
"amount": {
|
|
80229
|
+
"type": "string",
|
|
80230
|
+
"minLength": 1,
|
|
80231
|
+
"maxLength": 40
|
|
80232
|
+
},
|
|
80233
|
+
"currency": {
|
|
80234
|
+
"type": "string",
|
|
80235
|
+
"minLength": 1,
|
|
80236
|
+
"maxLength": 12
|
|
80237
|
+
},
|
|
80238
|
+
"target": {
|
|
80239
|
+
"type": "string",
|
|
80240
|
+
"minLength": 1,
|
|
80241
|
+
"maxLength": 128
|
|
80242
|
+
}
|
|
80243
|
+
},
|
|
80244
|
+
"additionalProperties": false
|
|
80245
|
+
},
|
|
80246
|
+
{
|
|
80247
|
+
"type": "object",
|
|
80248
|
+
"required": [
|
|
80249
|
+
"kind",
|
|
80250
|
+
"target",
|
|
80251
|
+
"visibility"
|
|
80252
|
+
],
|
|
80253
|
+
"properties": {
|
|
80254
|
+
"kind": {
|
|
80255
|
+
"type": "string",
|
|
80256
|
+
"const": "external-post"
|
|
80257
|
+
},
|
|
80258
|
+
"target": {
|
|
80259
|
+
"type": "string",
|
|
80260
|
+
"minLength": 1,
|
|
80261
|
+
"maxLength": 128
|
|
80262
|
+
},
|
|
80263
|
+
"visibility": {
|
|
80264
|
+
"anyOf": [
|
|
80265
|
+
{
|
|
80266
|
+
"type": "string",
|
|
80267
|
+
"const": "public"
|
|
80268
|
+
},
|
|
80269
|
+
{
|
|
80270
|
+
"type": "string",
|
|
80271
|
+
"const": "restricted"
|
|
80272
|
+
}
|
|
80273
|
+
]
|
|
80274
|
+
}
|
|
80275
|
+
},
|
|
80276
|
+
"additionalProperties": false
|
|
80277
|
+
},
|
|
80278
|
+
{
|
|
80279
|
+
"type": "object",
|
|
80280
|
+
"required": [
|
|
80281
|
+
"kind",
|
|
80282
|
+
"automation",
|
|
80283
|
+
"command"
|
|
80284
|
+
],
|
|
80285
|
+
"properties": {
|
|
80286
|
+
"kind": {
|
|
80287
|
+
"type": "string",
|
|
80288
|
+
"const": "standing-grant"
|
|
80289
|
+
},
|
|
80290
|
+
"automation": {
|
|
80291
|
+
"type": "string",
|
|
80292
|
+
"minLength": 1,
|
|
80293
|
+
"maxLength": 128
|
|
80294
|
+
},
|
|
80295
|
+
"command": {
|
|
80296
|
+
"type": "string",
|
|
80297
|
+
"minLength": 1,
|
|
80298
|
+
"maxLength": 256
|
|
80299
|
+
},
|
|
80300
|
+
"expiresInDays": {
|
|
80301
|
+
"type": "integer",
|
|
80302
|
+
"minimum": 1,
|
|
80303
|
+
"maximum": 3650
|
|
80304
|
+
}
|
|
80305
|
+
},
|
|
80306
|
+
"additionalProperties": false
|
|
80307
|
+
}
|
|
80308
|
+
]
|
|
80309
|
+
},
|
|
80310
|
+
"allowedDecisions": {
|
|
80311
|
+
"type": "array",
|
|
80312
|
+
"items": {
|
|
80313
|
+
"anyOf": [
|
|
80314
|
+
{
|
|
80315
|
+
"type": "string",
|
|
80316
|
+
"const": "allow-once"
|
|
80317
|
+
},
|
|
80318
|
+
{
|
|
80319
|
+
"type": "string",
|
|
80320
|
+
"const": "allow-always"
|
|
80321
|
+
},
|
|
80322
|
+
{
|
|
80323
|
+
"type": "string",
|
|
80324
|
+
"const": "deny"
|
|
80325
|
+
}
|
|
80326
|
+
]
|
|
80327
|
+
},
|
|
80328
|
+
"minItems": 1,
|
|
80329
|
+
"maxItems": 3,
|
|
80330
|
+
"uniqueItems": true,
|
|
80331
|
+
"contains": {
|
|
80332
|
+
"type": "string",
|
|
80333
|
+
"const": "deny"
|
|
80334
|
+
},
|
|
80335
|
+
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
79128
80336
|
},
|
|
79129
|
-
"
|
|
79130
|
-
"type": "
|
|
79131
|
-
"
|
|
79132
|
-
|
|
79133
|
-
|
|
79134
|
-
|
|
79135
|
-
"
|
|
79136
|
-
|
|
79137
|
-
"maxLength": 512
|
|
79138
|
-
},
|
|
79139
|
-
"detail": {
|
|
79140
|
-
"type": "string",
|
|
79141
|
-
"minLength": 1,
|
|
79142
|
-
"maxLength": 16384
|
|
79143
|
-
},
|
|
79144
|
-
"severity": {
|
|
79145
|
-
"anyOf": [
|
|
79146
|
-
{
|
|
79147
|
-
"type": "string",
|
|
79148
|
-
"const": "info"
|
|
79149
|
-
},
|
|
79150
|
-
{
|
|
79151
|
-
"type": "string",
|
|
79152
|
-
"const": "warning"
|
|
79153
|
-
},
|
|
79154
|
-
{
|
|
79155
|
-
"type": "string",
|
|
79156
|
-
"const": "critical"
|
|
79157
|
-
}
|
|
79158
|
-
]
|
|
79159
|
-
},
|
|
79160
|
-
"pluginId": {
|
|
79161
|
-
"anyOf": [
|
|
79162
|
-
{
|
|
79163
|
-
"type": "string",
|
|
79164
|
-
"minLength": 1
|
|
79165
|
-
},
|
|
79166
|
-
{
|
|
79167
|
-
"type": "null"
|
|
79168
|
-
}
|
|
79169
|
-
]
|
|
79170
|
-
},
|
|
79171
|
-
"toolName": {
|
|
79172
|
-
"anyOf": [
|
|
79173
|
-
{
|
|
79174
|
-
"type": "string",
|
|
79175
|
-
"minLength": 1
|
|
79176
|
-
},
|
|
79177
|
-
{
|
|
79178
|
-
"type": "null"
|
|
79179
|
-
}
|
|
79180
|
-
]
|
|
79181
|
-
},
|
|
79182
|
-
"agentId": {
|
|
79183
|
-
"anyOf": [
|
|
79184
|
-
{
|
|
80337
|
+
"externalResolution": {
|
|
80338
|
+
"type": "object",
|
|
80339
|
+
"required": [
|
|
80340
|
+
"label",
|
|
80341
|
+
"decisions"
|
|
80342
|
+
],
|
|
80343
|
+
"properties": {
|
|
80344
|
+
"label": {
|
|
79185
80345
|
"type": "string",
|
|
79186
|
-
"minLength": 1
|
|
80346
|
+
"minLength": 1,
|
|
80347
|
+
"maxLength": 80
|
|
79187
80348
|
},
|
|
79188
|
-
{
|
|
79189
|
-
"type": "
|
|
79190
|
-
|
|
79191
|
-
|
|
79192
|
-
|
|
79193
|
-
"scope": {
|
|
79194
|
-
"anyOf": [
|
|
79195
|
-
{
|
|
79196
|
-
"type": "object",
|
|
79197
|
-
"required": [
|
|
79198
|
-
"kind",
|
|
79199
|
-
"target",
|
|
79200
|
-
"recipientCount"
|
|
79201
|
-
],
|
|
79202
|
-
"properties": {
|
|
79203
|
-
"kind": {
|
|
79204
|
-
"type": "string",
|
|
79205
|
-
"const": "message-send"
|
|
79206
|
-
},
|
|
79207
|
-
"target": {
|
|
79208
|
-
"type": "string",
|
|
79209
|
-
"minLength": 1,
|
|
79210
|
-
"maxLength": 128
|
|
79211
|
-
},
|
|
79212
|
-
"recipientCount": {
|
|
79213
|
-
"type": "integer",
|
|
79214
|
-
"minimum": 1,
|
|
79215
|
-
"maximum": 1000000
|
|
79216
|
-
},
|
|
79217
|
-
"recipients": {
|
|
79218
|
-
"type": "array",
|
|
79219
|
-
"items": {
|
|
80349
|
+
"decisions": {
|
|
80350
|
+
"type": "array",
|
|
80351
|
+
"items": {
|
|
80352
|
+
"anyOf": [
|
|
80353
|
+
{
|
|
79220
80354
|
"type": "string",
|
|
79221
|
-
"
|
|
79222
|
-
"maxLength": 128
|
|
80355
|
+
"const": "allow-once"
|
|
79223
80356
|
},
|
|
79224
|
-
|
|
79225
|
-
|
|
79226
|
-
|
|
79227
|
-
|
|
79228
|
-
|
|
79229
|
-
"type": "string",
|
|
79230
|
-
"const": "internal"
|
|
79231
|
-
},
|
|
79232
|
-
{
|
|
79233
|
-
"type": "string",
|
|
79234
|
-
"const": "external"
|
|
79235
|
-
}
|
|
79236
|
-
]
|
|
79237
|
-
}
|
|
79238
|
-
},
|
|
79239
|
-
"additionalProperties": false
|
|
79240
|
-
},
|
|
79241
|
-
{
|
|
79242
|
-
"type": "object",
|
|
79243
|
-
"required": [
|
|
79244
|
-
"kind",
|
|
79245
|
-
"amount",
|
|
79246
|
-
"currency",
|
|
79247
|
-
"target"
|
|
79248
|
-
],
|
|
79249
|
-
"properties": {
|
|
79250
|
-
"kind": {
|
|
79251
|
-
"type": "string",
|
|
79252
|
-
"const": "payment"
|
|
79253
|
-
},
|
|
79254
|
-
"amount": {
|
|
79255
|
-
"type": "string",
|
|
79256
|
-
"minLength": 1,
|
|
79257
|
-
"maxLength": 40
|
|
79258
|
-
},
|
|
79259
|
-
"currency": {
|
|
79260
|
-
"type": "string",
|
|
79261
|
-
"minLength": 1,
|
|
79262
|
-
"maxLength": 12
|
|
79263
|
-
},
|
|
79264
|
-
"target": {
|
|
79265
|
-
"type": "string",
|
|
79266
|
-
"minLength": 1,
|
|
79267
|
-
"maxLength": 128
|
|
79268
|
-
}
|
|
79269
|
-
},
|
|
79270
|
-
"additionalProperties": false
|
|
79271
|
-
},
|
|
79272
|
-
{
|
|
79273
|
-
"type": "object",
|
|
79274
|
-
"required": [
|
|
79275
|
-
"kind",
|
|
79276
|
-
"target",
|
|
79277
|
-
"visibility"
|
|
79278
|
-
],
|
|
79279
|
-
"properties": {
|
|
79280
|
-
"kind": {
|
|
79281
|
-
"type": "string",
|
|
79282
|
-
"const": "external-post"
|
|
79283
|
-
},
|
|
79284
|
-
"target": {
|
|
79285
|
-
"type": "string",
|
|
79286
|
-
"minLength": 1,
|
|
79287
|
-
"maxLength": 128
|
|
79288
|
-
},
|
|
79289
|
-
"visibility": {
|
|
79290
|
-
"anyOf": [
|
|
79291
|
-
{
|
|
79292
|
-
"type": "string",
|
|
79293
|
-
"const": "public"
|
|
79294
|
-
},
|
|
79295
|
-
{
|
|
79296
|
-
"type": "string",
|
|
79297
|
-
"const": "restricted"
|
|
79298
|
-
}
|
|
79299
|
-
]
|
|
79300
|
-
}
|
|
79301
|
-
},
|
|
79302
|
-
"additionalProperties": false
|
|
79303
|
-
},
|
|
79304
|
-
{
|
|
79305
|
-
"type": "object",
|
|
79306
|
-
"required": [
|
|
79307
|
-
"kind",
|
|
79308
|
-
"automation",
|
|
79309
|
-
"command"
|
|
79310
|
-
],
|
|
79311
|
-
"properties": {
|
|
79312
|
-
"kind": {
|
|
79313
|
-
"type": "string",
|
|
79314
|
-
"const": "standing-grant"
|
|
79315
|
-
},
|
|
79316
|
-
"automation": {
|
|
79317
|
-
"type": "string",
|
|
79318
|
-
"minLength": 1,
|
|
79319
|
-
"maxLength": 128
|
|
79320
|
-
},
|
|
79321
|
-
"command": {
|
|
79322
|
-
"type": "string",
|
|
79323
|
-
"minLength": 1,
|
|
79324
|
-
"maxLength": 256
|
|
79325
|
-
},
|
|
79326
|
-
"expiresInDays": {
|
|
79327
|
-
"type": "integer",
|
|
79328
|
-
"minimum": 1,
|
|
79329
|
-
"maximum": 3650
|
|
79330
|
-
}
|
|
80357
|
+
{
|
|
80358
|
+
"type": "string",
|
|
80359
|
+
"const": "allow-always"
|
|
80360
|
+
}
|
|
80361
|
+
]
|
|
79331
80362
|
},
|
|
79332
|
-
"
|
|
80363
|
+
"minItems": 1,
|
|
80364
|
+
"maxItems": 2,
|
|
80365
|
+
"uniqueItems": true
|
|
79333
80366
|
}
|
|
79334
|
-
]
|
|
79335
|
-
},
|
|
79336
|
-
"allowedDecisions": {
|
|
79337
|
-
"type": "array",
|
|
79338
|
-
"items": {
|
|
79339
|
-
"anyOf": [
|
|
79340
|
-
{
|
|
79341
|
-
"type": "string",
|
|
79342
|
-
"const": "allow-once"
|
|
79343
|
-
},
|
|
79344
|
-
{
|
|
79345
|
-
"type": "string",
|
|
79346
|
-
"const": "allow-always"
|
|
79347
|
-
},
|
|
79348
|
-
{
|
|
79349
|
-
"type": "string",
|
|
79350
|
-
"const": "deny"
|
|
79351
|
-
}
|
|
79352
|
-
]
|
|
79353
80367
|
},
|
|
79354
|
-
"
|
|
79355
|
-
"maxItems": 3,
|
|
79356
|
-
"uniqueItems": true,
|
|
79357
|
-
"contains": {
|
|
79358
|
-
"type": "string",
|
|
79359
|
-
"const": "deny"
|
|
79360
|
-
},
|
|
79361
|
-
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
80368
|
+
"additionalProperties": false
|
|
79362
80369
|
}
|
|
79363
80370
|
},
|
|
79364
80371
|
"additionalProperties": false
|
|
@@ -80026,6 +81033,39 @@
|
|
|
80026
81033
|
"const": "deny"
|
|
80027
81034
|
},
|
|
80028
81035
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
81036
|
+
},
|
|
81037
|
+
"externalResolution": {
|
|
81038
|
+
"type": "object",
|
|
81039
|
+
"required": [
|
|
81040
|
+
"label",
|
|
81041
|
+
"decisions"
|
|
81042
|
+
],
|
|
81043
|
+
"properties": {
|
|
81044
|
+
"label": {
|
|
81045
|
+
"type": "string",
|
|
81046
|
+
"minLength": 1,
|
|
81047
|
+
"maxLength": 80
|
|
81048
|
+
},
|
|
81049
|
+
"decisions": {
|
|
81050
|
+
"type": "array",
|
|
81051
|
+
"items": {
|
|
81052
|
+
"anyOf": [
|
|
81053
|
+
{
|
|
81054
|
+
"type": "string",
|
|
81055
|
+
"const": "allow-once"
|
|
81056
|
+
},
|
|
81057
|
+
{
|
|
81058
|
+
"type": "string",
|
|
81059
|
+
"const": "allow-always"
|
|
81060
|
+
}
|
|
81061
|
+
]
|
|
81062
|
+
},
|
|
81063
|
+
"minItems": 1,
|
|
81064
|
+
"maxItems": 2,
|
|
81065
|
+
"uniqueItems": true
|
|
81066
|
+
}
|
|
81067
|
+
},
|
|
81068
|
+
"additionalProperties": false
|
|
80029
81069
|
}
|
|
80030
81070
|
},
|
|
80031
81071
|
"additionalProperties": false
|
|
@@ -80677,6 +81717,39 @@
|
|
|
80677
81717
|
"const": "deny"
|
|
80678
81718
|
},
|
|
80679
81719
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
81720
|
+
},
|
|
81721
|
+
"externalResolution": {
|
|
81722
|
+
"type": "object",
|
|
81723
|
+
"required": [
|
|
81724
|
+
"label",
|
|
81725
|
+
"decisions"
|
|
81726
|
+
],
|
|
81727
|
+
"properties": {
|
|
81728
|
+
"label": {
|
|
81729
|
+
"type": "string",
|
|
81730
|
+
"minLength": 1,
|
|
81731
|
+
"maxLength": 80
|
|
81732
|
+
},
|
|
81733
|
+
"decisions": {
|
|
81734
|
+
"type": "array",
|
|
81735
|
+
"items": {
|
|
81736
|
+
"anyOf": [
|
|
81737
|
+
{
|
|
81738
|
+
"type": "string",
|
|
81739
|
+
"const": "allow-once"
|
|
81740
|
+
},
|
|
81741
|
+
{
|
|
81742
|
+
"type": "string",
|
|
81743
|
+
"const": "allow-always"
|
|
81744
|
+
}
|
|
81745
|
+
]
|
|
81746
|
+
},
|
|
81747
|
+
"minItems": 1,
|
|
81748
|
+
"maxItems": 2,
|
|
81749
|
+
"uniqueItems": true
|
|
81750
|
+
}
|
|
81751
|
+
},
|
|
81752
|
+
"additionalProperties": false
|
|
80680
81753
|
}
|
|
80681
81754
|
},
|
|
80682
81755
|
"additionalProperties": false
|
|
@@ -81332,6 +82405,39 @@
|
|
|
81332
82405
|
"const": "deny"
|
|
81333
82406
|
},
|
|
81334
82407
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
82408
|
+
},
|
|
82409
|
+
"externalResolution": {
|
|
82410
|
+
"type": "object",
|
|
82411
|
+
"required": [
|
|
82412
|
+
"label",
|
|
82413
|
+
"decisions"
|
|
82414
|
+
],
|
|
82415
|
+
"properties": {
|
|
82416
|
+
"label": {
|
|
82417
|
+
"type": "string",
|
|
82418
|
+
"minLength": 1,
|
|
82419
|
+
"maxLength": 80
|
|
82420
|
+
},
|
|
82421
|
+
"decisions": {
|
|
82422
|
+
"type": "array",
|
|
82423
|
+
"items": {
|
|
82424
|
+
"anyOf": [
|
|
82425
|
+
{
|
|
82426
|
+
"type": "string",
|
|
82427
|
+
"const": "allow-once"
|
|
82428
|
+
},
|
|
82429
|
+
{
|
|
82430
|
+
"type": "string",
|
|
82431
|
+
"const": "allow-always"
|
|
82432
|
+
}
|
|
82433
|
+
]
|
|
82434
|
+
},
|
|
82435
|
+
"minItems": 1,
|
|
82436
|
+
"maxItems": 2,
|
|
82437
|
+
"uniqueItems": true
|
|
82438
|
+
}
|
|
82439
|
+
},
|
|
82440
|
+
"additionalProperties": false
|
|
81335
82441
|
}
|
|
81336
82442
|
},
|
|
81337
82443
|
"additionalProperties": false
|
|
@@ -81929,6 +83035,39 @@
|
|
|
81929
83035
|
"const": "deny"
|
|
81930
83036
|
},
|
|
81931
83037
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
83038
|
+
},
|
|
83039
|
+
"externalResolution": {
|
|
83040
|
+
"type": "object",
|
|
83041
|
+
"required": [
|
|
83042
|
+
"label",
|
|
83043
|
+
"decisions"
|
|
83044
|
+
],
|
|
83045
|
+
"properties": {
|
|
83046
|
+
"label": {
|
|
83047
|
+
"type": "string",
|
|
83048
|
+
"minLength": 1,
|
|
83049
|
+
"maxLength": 80
|
|
83050
|
+
},
|
|
83051
|
+
"decisions": {
|
|
83052
|
+
"type": "array",
|
|
83053
|
+
"items": {
|
|
83054
|
+
"anyOf": [
|
|
83055
|
+
{
|
|
83056
|
+
"type": "string",
|
|
83057
|
+
"const": "allow-once"
|
|
83058
|
+
},
|
|
83059
|
+
{
|
|
83060
|
+
"type": "string",
|
|
83061
|
+
"const": "allow-always"
|
|
83062
|
+
}
|
|
83063
|
+
]
|
|
83064
|
+
},
|
|
83065
|
+
"minItems": 1,
|
|
83066
|
+
"maxItems": 2,
|
|
83067
|
+
"uniqueItems": true
|
|
83068
|
+
}
|
|
83069
|
+
},
|
|
83070
|
+
"additionalProperties": false
|
|
81932
83071
|
}
|
|
81933
83072
|
},
|
|
81934
83073
|
"additionalProperties": false
|
|
@@ -82593,6 +83732,39 @@
|
|
|
82593
83732
|
"const": "deny"
|
|
82594
83733
|
},
|
|
82595
83734
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
83735
|
+
},
|
|
83736
|
+
"externalResolution": {
|
|
83737
|
+
"type": "object",
|
|
83738
|
+
"required": [
|
|
83739
|
+
"label",
|
|
83740
|
+
"decisions"
|
|
83741
|
+
],
|
|
83742
|
+
"properties": {
|
|
83743
|
+
"label": {
|
|
83744
|
+
"type": "string",
|
|
83745
|
+
"minLength": 1,
|
|
83746
|
+
"maxLength": 80
|
|
83747
|
+
},
|
|
83748
|
+
"decisions": {
|
|
83749
|
+
"type": "array",
|
|
83750
|
+
"items": {
|
|
83751
|
+
"anyOf": [
|
|
83752
|
+
{
|
|
83753
|
+
"type": "string",
|
|
83754
|
+
"const": "allow-once"
|
|
83755
|
+
},
|
|
83756
|
+
{
|
|
83757
|
+
"type": "string",
|
|
83758
|
+
"const": "allow-always"
|
|
83759
|
+
}
|
|
83760
|
+
]
|
|
83761
|
+
},
|
|
83762
|
+
"minItems": 1,
|
|
83763
|
+
"maxItems": 2,
|
|
83764
|
+
"uniqueItems": true
|
|
83765
|
+
}
|
|
83766
|
+
},
|
|
83767
|
+
"additionalProperties": false
|
|
82596
83768
|
}
|
|
82597
83769
|
},
|
|
82598
83770
|
"additionalProperties": false
|
|
@@ -83260,6 +84432,39 @@
|
|
|
83260
84432
|
"const": "deny"
|
|
83261
84433
|
},
|
|
83262
84434
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
84435
|
+
},
|
|
84436
|
+
"externalResolution": {
|
|
84437
|
+
"type": "object",
|
|
84438
|
+
"required": [
|
|
84439
|
+
"label",
|
|
84440
|
+
"decisions"
|
|
84441
|
+
],
|
|
84442
|
+
"properties": {
|
|
84443
|
+
"label": {
|
|
84444
|
+
"type": "string",
|
|
84445
|
+
"minLength": 1,
|
|
84446
|
+
"maxLength": 80
|
|
84447
|
+
},
|
|
84448
|
+
"decisions": {
|
|
84449
|
+
"type": "array",
|
|
84450
|
+
"items": {
|
|
84451
|
+
"anyOf": [
|
|
84452
|
+
{
|
|
84453
|
+
"type": "string",
|
|
84454
|
+
"const": "allow-once"
|
|
84455
|
+
},
|
|
84456
|
+
{
|
|
84457
|
+
"type": "string",
|
|
84458
|
+
"const": "allow-always"
|
|
84459
|
+
}
|
|
84460
|
+
]
|
|
84461
|
+
},
|
|
84462
|
+
"minItems": 1,
|
|
84463
|
+
"maxItems": 2,
|
|
84464
|
+
"uniqueItems": true
|
|
84465
|
+
}
|
|
84466
|
+
},
|
|
84467
|
+
"additionalProperties": false
|
|
83263
84468
|
}
|
|
83264
84469
|
},
|
|
83265
84470
|
"additionalProperties": false
|
|
@@ -83911,6 +85116,39 @@
|
|
|
83911
85116
|
"const": "deny"
|
|
83912
85117
|
},
|
|
83913
85118
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
85119
|
+
},
|
|
85120
|
+
"externalResolution": {
|
|
85121
|
+
"type": "object",
|
|
85122
|
+
"required": [
|
|
85123
|
+
"label",
|
|
85124
|
+
"decisions"
|
|
85125
|
+
],
|
|
85126
|
+
"properties": {
|
|
85127
|
+
"label": {
|
|
85128
|
+
"type": "string",
|
|
85129
|
+
"minLength": 1,
|
|
85130
|
+
"maxLength": 80
|
|
85131
|
+
},
|
|
85132
|
+
"decisions": {
|
|
85133
|
+
"type": "array",
|
|
85134
|
+
"items": {
|
|
85135
|
+
"anyOf": [
|
|
85136
|
+
{
|
|
85137
|
+
"type": "string",
|
|
85138
|
+
"const": "allow-once"
|
|
85139
|
+
},
|
|
85140
|
+
{
|
|
85141
|
+
"type": "string",
|
|
85142
|
+
"const": "allow-always"
|
|
85143
|
+
}
|
|
85144
|
+
]
|
|
85145
|
+
},
|
|
85146
|
+
"minItems": 1,
|
|
85147
|
+
"maxItems": 2,
|
|
85148
|
+
"uniqueItems": true
|
|
85149
|
+
}
|
|
85150
|
+
},
|
|
85151
|
+
"additionalProperties": false
|
|
83914
85152
|
}
|
|
83915
85153
|
},
|
|
83916
85154
|
"additionalProperties": false
|
|
@@ -84603,6 +85841,39 @@
|
|
|
84603
85841
|
"const": "deny"
|
|
84604
85842
|
},
|
|
84605
85843
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
85844
|
+
},
|
|
85845
|
+
"externalResolution": {
|
|
85846
|
+
"type": "object",
|
|
85847
|
+
"required": [
|
|
85848
|
+
"label",
|
|
85849
|
+
"decisions"
|
|
85850
|
+
],
|
|
85851
|
+
"properties": {
|
|
85852
|
+
"label": {
|
|
85853
|
+
"type": "string",
|
|
85854
|
+
"minLength": 1,
|
|
85855
|
+
"maxLength": 80
|
|
85856
|
+
},
|
|
85857
|
+
"decisions": {
|
|
85858
|
+
"type": "array",
|
|
85859
|
+
"items": {
|
|
85860
|
+
"anyOf": [
|
|
85861
|
+
{
|
|
85862
|
+
"type": "string",
|
|
85863
|
+
"const": "allow-once"
|
|
85864
|
+
},
|
|
85865
|
+
{
|
|
85866
|
+
"type": "string",
|
|
85867
|
+
"const": "allow-always"
|
|
85868
|
+
}
|
|
85869
|
+
]
|
|
85870
|
+
},
|
|
85871
|
+
"minItems": 1,
|
|
85872
|
+
"maxItems": 2,
|
|
85873
|
+
"uniqueItems": true
|
|
85874
|
+
}
|
|
85875
|
+
},
|
|
85876
|
+
"additionalProperties": false
|
|
84606
85877
|
}
|
|
84607
85878
|
},
|
|
84608
85879
|
"additionalProperties": false
|
|
@@ -85267,6 +86538,39 @@
|
|
|
85267
86538
|
"const": "deny"
|
|
85268
86539
|
},
|
|
85269
86540
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
86541
|
+
},
|
|
86542
|
+
"externalResolution": {
|
|
86543
|
+
"type": "object",
|
|
86544
|
+
"required": [
|
|
86545
|
+
"label",
|
|
86546
|
+
"decisions"
|
|
86547
|
+
],
|
|
86548
|
+
"properties": {
|
|
86549
|
+
"label": {
|
|
86550
|
+
"type": "string",
|
|
86551
|
+
"minLength": 1,
|
|
86552
|
+
"maxLength": 80
|
|
86553
|
+
},
|
|
86554
|
+
"decisions": {
|
|
86555
|
+
"type": "array",
|
|
86556
|
+
"items": {
|
|
86557
|
+
"anyOf": [
|
|
86558
|
+
{
|
|
86559
|
+
"type": "string",
|
|
86560
|
+
"const": "allow-once"
|
|
86561
|
+
},
|
|
86562
|
+
{
|
|
86563
|
+
"type": "string",
|
|
86564
|
+
"const": "allow-always"
|
|
86565
|
+
}
|
|
86566
|
+
]
|
|
86567
|
+
},
|
|
86568
|
+
"minItems": 1,
|
|
86569
|
+
"maxItems": 2,
|
|
86570
|
+
"uniqueItems": true
|
|
86571
|
+
}
|
|
86572
|
+
},
|
|
86573
|
+
"additionalProperties": false
|
|
85270
86574
|
}
|
|
85271
86575
|
},
|
|
85272
86576
|
"additionalProperties": false
|
|
@@ -85934,6 +87238,39 @@
|
|
|
85934
87238
|
"const": "deny"
|
|
85935
87239
|
},
|
|
85936
87240
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
87241
|
+
},
|
|
87242
|
+
"externalResolution": {
|
|
87243
|
+
"type": "object",
|
|
87244
|
+
"required": [
|
|
87245
|
+
"label",
|
|
87246
|
+
"decisions"
|
|
87247
|
+
],
|
|
87248
|
+
"properties": {
|
|
87249
|
+
"label": {
|
|
87250
|
+
"type": "string",
|
|
87251
|
+
"minLength": 1,
|
|
87252
|
+
"maxLength": 80
|
|
87253
|
+
},
|
|
87254
|
+
"decisions": {
|
|
87255
|
+
"type": "array",
|
|
87256
|
+
"items": {
|
|
87257
|
+
"anyOf": [
|
|
87258
|
+
{
|
|
87259
|
+
"type": "string",
|
|
87260
|
+
"const": "allow-once"
|
|
87261
|
+
},
|
|
87262
|
+
{
|
|
87263
|
+
"type": "string",
|
|
87264
|
+
"const": "allow-always"
|
|
87265
|
+
}
|
|
87266
|
+
]
|
|
87267
|
+
},
|
|
87268
|
+
"minItems": 1,
|
|
87269
|
+
"maxItems": 2,
|
|
87270
|
+
"uniqueItems": true
|
|
87271
|
+
}
|
|
87272
|
+
},
|
|
87273
|
+
"additionalProperties": false
|
|
85937
87274
|
}
|
|
85938
87275
|
},
|
|
85939
87276
|
"additionalProperties": false
|
|
@@ -86585,6 +87922,39 @@
|
|
|
86585
87922
|
"const": "deny"
|
|
86586
87923
|
},
|
|
86587
87924
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
87925
|
+
},
|
|
87926
|
+
"externalResolution": {
|
|
87927
|
+
"type": "object",
|
|
87928
|
+
"required": [
|
|
87929
|
+
"label",
|
|
87930
|
+
"decisions"
|
|
87931
|
+
],
|
|
87932
|
+
"properties": {
|
|
87933
|
+
"label": {
|
|
87934
|
+
"type": "string",
|
|
87935
|
+
"minLength": 1,
|
|
87936
|
+
"maxLength": 80
|
|
87937
|
+
},
|
|
87938
|
+
"decisions": {
|
|
87939
|
+
"type": "array",
|
|
87940
|
+
"items": {
|
|
87941
|
+
"anyOf": [
|
|
87942
|
+
{
|
|
87943
|
+
"type": "string",
|
|
87944
|
+
"const": "allow-once"
|
|
87945
|
+
},
|
|
87946
|
+
{
|
|
87947
|
+
"type": "string",
|
|
87948
|
+
"const": "allow-always"
|
|
87949
|
+
}
|
|
87950
|
+
]
|
|
87951
|
+
},
|
|
87952
|
+
"minItems": 1,
|
|
87953
|
+
"maxItems": 2,
|
|
87954
|
+
"uniqueItems": true
|
|
87955
|
+
}
|
|
87956
|
+
},
|
|
87957
|
+
"additionalProperties": false
|
|
86588
87958
|
}
|
|
86589
87959
|
},
|
|
86590
87960
|
"additionalProperties": false
|
|
@@ -87263,6 +88633,39 @@
|
|
|
87263
88633
|
"const": "deny"
|
|
87264
88634
|
},
|
|
87265
88635
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
88636
|
+
},
|
|
88637
|
+
"externalResolution": {
|
|
88638
|
+
"type": "object",
|
|
88639
|
+
"required": [
|
|
88640
|
+
"label",
|
|
88641
|
+
"decisions"
|
|
88642
|
+
],
|
|
88643
|
+
"properties": {
|
|
88644
|
+
"label": {
|
|
88645
|
+
"type": "string",
|
|
88646
|
+
"minLength": 1,
|
|
88647
|
+
"maxLength": 80
|
|
88648
|
+
},
|
|
88649
|
+
"decisions": {
|
|
88650
|
+
"type": "array",
|
|
88651
|
+
"items": {
|
|
88652
|
+
"anyOf": [
|
|
88653
|
+
{
|
|
88654
|
+
"type": "string",
|
|
88655
|
+
"const": "allow-once"
|
|
88656
|
+
},
|
|
88657
|
+
{
|
|
88658
|
+
"type": "string",
|
|
88659
|
+
"const": "allow-always"
|
|
88660
|
+
}
|
|
88661
|
+
]
|
|
88662
|
+
},
|
|
88663
|
+
"minItems": 1,
|
|
88664
|
+
"maxItems": 2,
|
|
88665
|
+
"uniqueItems": true
|
|
88666
|
+
}
|
|
88667
|
+
},
|
|
88668
|
+
"additionalProperties": false
|
|
87266
88669
|
}
|
|
87267
88670
|
},
|
|
87268
88671
|
"additionalProperties": false
|
|
@@ -87860,6 +89263,39 @@
|
|
|
87860
89263
|
"const": "deny"
|
|
87861
89264
|
},
|
|
87862
89265
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
89266
|
+
},
|
|
89267
|
+
"externalResolution": {
|
|
89268
|
+
"type": "object",
|
|
89269
|
+
"required": [
|
|
89270
|
+
"label",
|
|
89271
|
+
"decisions"
|
|
89272
|
+
],
|
|
89273
|
+
"properties": {
|
|
89274
|
+
"label": {
|
|
89275
|
+
"type": "string",
|
|
89276
|
+
"minLength": 1,
|
|
89277
|
+
"maxLength": 80
|
|
89278
|
+
},
|
|
89279
|
+
"decisions": {
|
|
89280
|
+
"type": "array",
|
|
89281
|
+
"items": {
|
|
89282
|
+
"anyOf": [
|
|
89283
|
+
{
|
|
89284
|
+
"type": "string",
|
|
89285
|
+
"const": "allow-once"
|
|
89286
|
+
},
|
|
89287
|
+
{
|
|
89288
|
+
"type": "string",
|
|
89289
|
+
"const": "allow-always"
|
|
89290
|
+
}
|
|
89291
|
+
]
|
|
89292
|
+
},
|
|
89293
|
+
"minItems": 1,
|
|
89294
|
+
"maxItems": 2,
|
|
89295
|
+
"uniqueItems": true
|
|
89296
|
+
}
|
|
89297
|
+
},
|
|
89298
|
+
"additionalProperties": false
|
|
87863
89299
|
}
|
|
87864
89300
|
},
|
|
87865
89301
|
"additionalProperties": false
|
|
@@ -88524,6 +89960,39 @@
|
|
|
88524
89960
|
"const": "deny"
|
|
88525
89961
|
},
|
|
88526
89962
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
89963
|
+
},
|
|
89964
|
+
"externalResolution": {
|
|
89965
|
+
"type": "object",
|
|
89966
|
+
"required": [
|
|
89967
|
+
"label",
|
|
89968
|
+
"decisions"
|
|
89969
|
+
],
|
|
89970
|
+
"properties": {
|
|
89971
|
+
"label": {
|
|
89972
|
+
"type": "string",
|
|
89973
|
+
"minLength": 1,
|
|
89974
|
+
"maxLength": 80
|
|
89975
|
+
},
|
|
89976
|
+
"decisions": {
|
|
89977
|
+
"type": "array",
|
|
89978
|
+
"items": {
|
|
89979
|
+
"anyOf": [
|
|
89980
|
+
{
|
|
89981
|
+
"type": "string",
|
|
89982
|
+
"const": "allow-once"
|
|
89983
|
+
},
|
|
89984
|
+
{
|
|
89985
|
+
"type": "string",
|
|
89986
|
+
"const": "allow-always"
|
|
89987
|
+
}
|
|
89988
|
+
]
|
|
89989
|
+
},
|
|
89990
|
+
"minItems": 1,
|
|
89991
|
+
"maxItems": 2,
|
|
89992
|
+
"uniqueItems": true
|
|
89993
|
+
}
|
|
89994
|
+
},
|
|
89995
|
+
"additionalProperties": false
|
|
88527
89996
|
}
|
|
88528
89997
|
},
|
|
88529
89998
|
"additionalProperties": false
|
|
@@ -89191,6 +90660,39 @@
|
|
|
89191
90660
|
"const": "deny"
|
|
89192
90661
|
},
|
|
89193
90662
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
90663
|
+
},
|
|
90664
|
+
"externalResolution": {
|
|
90665
|
+
"type": "object",
|
|
90666
|
+
"required": [
|
|
90667
|
+
"label",
|
|
90668
|
+
"decisions"
|
|
90669
|
+
],
|
|
90670
|
+
"properties": {
|
|
90671
|
+
"label": {
|
|
90672
|
+
"type": "string",
|
|
90673
|
+
"minLength": 1,
|
|
90674
|
+
"maxLength": 80
|
|
90675
|
+
},
|
|
90676
|
+
"decisions": {
|
|
90677
|
+
"type": "array",
|
|
90678
|
+
"items": {
|
|
90679
|
+
"anyOf": [
|
|
90680
|
+
{
|
|
90681
|
+
"type": "string",
|
|
90682
|
+
"const": "allow-once"
|
|
90683
|
+
},
|
|
90684
|
+
{
|
|
90685
|
+
"type": "string",
|
|
90686
|
+
"const": "allow-always"
|
|
90687
|
+
}
|
|
90688
|
+
]
|
|
90689
|
+
},
|
|
90690
|
+
"minItems": 1,
|
|
90691
|
+
"maxItems": 2,
|
|
90692
|
+
"uniqueItems": true
|
|
90693
|
+
}
|
|
90694
|
+
},
|
|
90695
|
+
"additionalProperties": false
|
|
89194
90696
|
}
|
|
89195
90697
|
},
|
|
89196
90698
|
"additionalProperties": false
|
|
@@ -89842,6 +91344,39 @@
|
|
|
89842
91344
|
"const": "deny"
|
|
89843
91345
|
},
|
|
89844
91346
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
91347
|
+
},
|
|
91348
|
+
"externalResolution": {
|
|
91349
|
+
"type": "object",
|
|
91350
|
+
"required": [
|
|
91351
|
+
"label",
|
|
91352
|
+
"decisions"
|
|
91353
|
+
],
|
|
91354
|
+
"properties": {
|
|
91355
|
+
"label": {
|
|
91356
|
+
"type": "string",
|
|
91357
|
+
"minLength": 1,
|
|
91358
|
+
"maxLength": 80
|
|
91359
|
+
},
|
|
91360
|
+
"decisions": {
|
|
91361
|
+
"type": "array",
|
|
91362
|
+
"items": {
|
|
91363
|
+
"anyOf": [
|
|
91364
|
+
{
|
|
91365
|
+
"type": "string",
|
|
91366
|
+
"const": "allow-once"
|
|
91367
|
+
},
|
|
91368
|
+
{
|
|
91369
|
+
"type": "string",
|
|
91370
|
+
"const": "allow-always"
|
|
91371
|
+
}
|
|
91372
|
+
]
|
|
91373
|
+
},
|
|
91374
|
+
"minItems": 1,
|
|
91375
|
+
"maxItems": 2,
|
|
91376
|
+
"uniqueItems": true
|
|
91377
|
+
}
|
|
91378
|
+
},
|
|
91379
|
+
"additionalProperties": false
|
|
89845
91380
|
}
|
|
89846
91381
|
},
|
|
89847
91382
|
"additionalProperties": false
|
|
@@ -90545,6 +92080,39 @@
|
|
|
90545
92080
|
"const": "deny"
|
|
90546
92081
|
},
|
|
90547
92082
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
92083
|
+
},
|
|
92084
|
+
"externalResolution": {
|
|
92085
|
+
"type": "object",
|
|
92086
|
+
"required": [
|
|
92087
|
+
"label",
|
|
92088
|
+
"decisions"
|
|
92089
|
+
],
|
|
92090
|
+
"properties": {
|
|
92091
|
+
"label": {
|
|
92092
|
+
"type": "string",
|
|
92093
|
+
"minLength": 1,
|
|
92094
|
+
"maxLength": 80
|
|
92095
|
+
},
|
|
92096
|
+
"decisions": {
|
|
92097
|
+
"type": "array",
|
|
92098
|
+
"items": {
|
|
92099
|
+
"anyOf": [
|
|
92100
|
+
{
|
|
92101
|
+
"type": "string",
|
|
92102
|
+
"const": "allow-once"
|
|
92103
|
+
},
|
|
92104
|
+
{
|
|
92105
|
+
"type": "string",
|
|
92106
|
+
"const": "allow-always"
|
|
92107
|
+
}
|
|
92108
|
+
]
|
|
92109
|
+
},
|
|
92110
|
+
"minItems": 1,
|
|
92111
|
+
"maxItems": 2,
|
|
92112
|
+
"uniqueItems": true
|
|
92113
|
+
}
|
|
92114
|
+
},
|
|
92115
|
+
"additionalProperties": false
|
|
90548
92116
|
}
|
|
90549
92117
|
},
|
|
90550
92118
|
"additionalProperties": false
|
|
@@ -91209,6 +92777,39 @@
|
|
|
91209
92777
|
"const": "deny"
|
|
91210
92778
|
},
|
|
91211
92779
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
92780
|
+
},
|
|
92781
|
+
"externalResolution": {
|
|
92782
|
+
"type": "object",
|
|
92783
|
+
"required": [
|
|
92784
|
+
"label",
|
|
92785
|
+
"decisions"
|
|
92786
|
+
],
|
|
92787
|
+
"properties": {
|
|
92788
|
+
"label": {
|
|
92789
|
+
"type": "string",
|
|
92790
|
+
"minLength": 1,
|
|
92791
|
+
"maxLength": 80
|
|
92792
|
+
},
|
|
92793
|
+
"decisions": {
|
|
92794
|
+
"type": "array",
|
|
92795
|
+
"items": {
|
|
92796
|
+
"anyOf": [
|
|
92797
|
+
{
|
|
92798
|
+
"type": "string",
|
|
92799
|
+
"const": "allow-once"
|
|
92800
|
+
},
|
|
92801
|
+
{
|
|
92802
|
+
"type": "string",
|
|
92803
|
+
"const": "allow-always"
|
|
92804
|
+
}
|
|
92805
|
+
]
|
|
92806
|
+
},
|
|
92807
|
+
"minItems": 1,
|
|
92808
|
+
"maxItems": 2,
|
|
92809
|
+
"uniqueItems": true
|
|
92810
|
+
}
|
|
92811
|
+
},
|
|
92812
|
+
"additionalProperties": false
|
|
91212
92813
|
}
|
|
91213
92814
|
},
|
|
91214
92815
|
"additionalProperties": false
|
|
@@ -91876,6 +93477,39 @@
|
|
|
91876
93477
|
"const": "deny"
|
|
91877
93478
|
},
|
|
91878
93479
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
93480
|
+
},
|
|
93481
|
+
"externalResolution": {
|
|
93482
|
+
"type": "object",
|
|
93483
|
+
"required": [
|
|
93484
|
+
"label",
|
|
93485
|
+
"decisions"
|
|
93486
|
+
],
|
|
93487
|
+
"properties": {
|
|
93488
|
+
"label": {
|
|
93489
|
+
"type": "string",
|
|
93490
|
+
"minLength": 1,
|
|
93491
|
+
"maxLength": 80
|
|
93492
|
+
},
|
|
93493
|
+
"decisions": {
|
|
93494
|
+
"type": "array",
|
|
93495
|
+
"items": {
|
|
93496
|
+
"anyOf": [
|
|
93497
|
+
{
|
|
93498
|
+
"type": "string",
|
|
93499
|
+
"const": "allow-once"
|
|
93500
|
+
},
|
|
93501
|
+
{
|
|
93502
|
+
"type": "string",
|
|
93503
|
+
"const": "allow-always"
|
|
93504
|
+
}
|
|
93505
|
+
]
|
|
93506
|
+
},
|
|
93507
|
+
"minItems": 1,
|
|
93508
|
+
"maxItems": 2,
|
|
93509
|
+
"uniqueItems": true
|
|
93510
|
+
}
|
|
93511
|
+
},
|
|
93512
|
+
"additionalProperties": false
|
|
91879
93513
|
}
|
|
91880
93514
|
},
|
|
91881
93515
|
"additionalProperties": false
|
|
@@ -92527,6 +94161,39 @@
|
|
|
92527
94161
|
"const": "deny"
|
|
92528
94162
|
},
|
|
92529
94163
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
94164
|
+
},
|
|
94165
|
+
"externalResolution": {
|
|
94166
|
+
"type": "object",
|
|
94167
|
+
"required": [
|
|
94168
|
+
"label",
|
|
94169
|
+
"decisions"
|
|
94170
|
+
],
|
|
94171
|
+
"properties": {
|
|
94172
|
+
"label": {
|
|
94173
|
+
"type": "string",
|
|
94174
|
+
"minLength": 1,
|
|
94175
|
+
"maxLength": 80
|
|
94176
|
+
},
|
|
94177
|
+
"decisions": {
|
|
94178
|
+
"type": "array",
|
|
94179
|
+
"items": {
|
|
94180
|
+
"anyOf": [
|
|
94181
|
+
{
|
|
94182
|
+
"type": "string",
|
|
94183
|
+
"const": "allow-once"
|
|
94184
|
+
},
|
|
94185
|
+
{
|
|
94186
|
+
"type": "string",
|
|
94187
|
+
"const": "allow-always"
|
|
94188
|
+
}
|
|
94189
|
+
]
|
|
94190
|
+
},
|
|
94191
|
+
"minItems": 1,
|
|
94192
|
+
"maxItems": 2,
|
|
94193
|
+
"uniqueItems": true
|
|
94194
|
+
}
|
|
94195
|
+
},
|
|
94196
|
+
"additionalProperties": false
|
|
92530
94197
|
}
|
|
92531
94198
|
},
|
|
92532
94199
|
"additionalProperties": false
|
|
@@ -93283,6 +94950,39 @@
|
|
|
93283
94950
|
"const": "deny"
|
|
93284
94951
|
},
|
|
93285
94952
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
94953
|
+
},
|
|
94954
|
+
"externalResolution": {
|
|
94955
|
+
"type": "object",
|
|
94956
|
+
"required": [
|
|
94957
|
+
"label",
|
|
94958
|
+
"decisions"
|
|
94959
|
+
],
|
|
94960
|
+
"properties": {
|
|
94961
|
+
"label": {
|
|
94962
|
+
"type": "string",
|
|
94963
|
+
"minLength": 1,
|
|
94964
|
+
"maxLength": 80
|
|
94965
|
+
},
|
|
94966
|
+
"decisions": {
|
|
94967
|
+
"type": "array",
|
|
94968
|
+
"items": {
|
|
94969
|
+
"anyOf": [
|
|
94970
|
+
{
|
|
94971
|
+
"type": "string",
|
|
94972
|
+
"const": "allow-once"
|
|
94973
|
+
},
|
|
94974
|
+
{
|
|
94975
|
+
"type": "string",
|
|
94976
|
+
"const": "allow-always"
|
|
94977
|
+
}
|
|
94978
|
+
]
|
|
94979
|
+
},
|
|
94980
|
+
"minItems": 1,
|
|
94981
|
+
"maxItems": 2,
|
|
94982
|
+
"uniqueItems": true
|
|
94983
|
+
}
|
|
94984
|
+
},
|
|
94985
|
+
"additionalProperties": false
|
|
93286
94986
|
}
|
|
93287
94987
|
},
|
|
93288
94988
|
"additionalProperties": false
|
|
@@ -93947,6 +95647,39 @@
|
|
|
93947
95647
|
"const": "deny"
|
|
93948
95648
|
},
|
|
93949
95649
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
95650
|
+
},
|
|
95651
|
+
"externalResolution": {
|
|
95652
|
+
"type": "object",
|
|
95653
|
+
"required": [
|
|
95654
|
+
"label",
|
|
95655
|
+
"decisions"
|
|
95656
|
+
],
|
|
95657
|
+
"properties": {
|
|
95658
|
+
"label": {
|
|
95659
|
+
"type": "string",
|
|
95660
|
+
"minLength": 1,
|
|
95661
|
+
"maxLength": 80
|
|
95662
|
+
},
|
|
95663
|
+
"decisions": {
|
|
95664
|
+
"type": "array",
|
|
95665
|
+
"items": {
|
|
95666
|
+
"anyOf": [
|
|
95667
|
+
{
|
|
95668
|
+
"type": "string",
|
|
95669
|
+
"const": "allow-once"
|
|
95670
|
+
},
|
|
95671
|
+
{
|
|
95672
|
+
"type": "string",
|
|
95673
|
+
"const": "allow-always"
|
|
95674
|
+
}
|
|
95675
|
+
]
|
|
95676
|
+
},
|
|
95677
|
+
"minItems": 1,
|
|
95678
|
+
"maxItems": 2,
|
|
95679
|
+
"uniqueItems": true
|
|
95680
|
+
}
|
|
95681
|
+
},
|
|
95682
|
+
"additionalProperties": false
|
|
93950
95683
|
}
|
|
93951
95684
|
},
|
|
93952
95685
|
"additionalProperties": false
|
|
@@ -94614,6 +96347,39 @@
|
|
|
94614
96347
|
"const": "deny"
|
|
94615
96348
|
},
|
|
94616
96349
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
96350
|
+
},
|
|
96351
|
+
"externalResolution": {
|
|
96352
|
+
"type": "object",
|
|
96353
|
+
"required": [
|
|
96354
|
+
"label",
|
|
96355
|
+
"decisions"
|
|
96356
|
+
],
|
|
96357
|
+
"properties": {
|
|
96358
|
+
"label": {
|
|
96359
|
+
"type": "string",
|
|
96360
|
+
"minLength": 1,
|
|
96361
|
+
"maxLength": 80
|
|
96362
|
+
},
|
|
96363
|
+
"decisions": {
|
|
96364
|
+
"type": "array",
|
|
96365
|
+
"items": {
|
|
96366
|
+
"anyOf": [
|
|
96367
|
+
{
|
|
96368
|
+
"type": "string",
|
|
96369
|
+
"const": "allow-once"
|
|
96370
|
+
},
|
|
96371
|
+
{
|
|
96372
|
+
"type": "string",
|
|
96373
|
+
"const": "allow-always"
|
|
96374
|
+
}
|
|
96375
|
+
]
|
|
96376
|
+
},
|
|
96377
|
+
"minItems": 1,
|
|
96378
|
+
"maxItems": 2,
|
|
96379
|
+
"uniqueItems": true
|
|
96380
|
+
}
|
|
96381
|
+
},
|
|
96382
|
+
"additionalProperties": false
|
|
94617
96383
|
}
|
|
94618
96384
|
},
|
|
94619
96385
|
"additionalProperties": false
|
|
@@ -95265,6 +97031,39 @@
|
|
|
95265
97031
|
"const": "deny"
|
|
95266
97032
|
},
|
|
95267
97033
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
97034
|
+
},
|
|
97035
|
+
"externalResolution": {
|
|
97036
|
+
"type": "object",
|
|
97037
|
+
"required": [
|
|
97038
|
+
"label",
|
|
97039
|
+
"decisions"
|
|
97040
|
+
],
|
|
97041
|
+
"properties": {
|
|
97042
|
+
"label": {
|
|
97043
|
+
"type": "string",
|
|
97044
|
+
"minLength": 1,
|
|
97045
|
+
"maxLength": 80
|
|
97046
|
+
},
|
|
97047
|
+
"decisions": {
|
|
97048
|
+
"type": "array",
|
|
97049
|
+
"items": {
|
|
97050
|
+
"anyOf": [
|
|
97051
|
+
{
|
|
97052
|
+
"type": "string",
|
|
97053
|
+
"const": "allow-once"
|
|
97054
|
+
},
|
|
97055
|
+
{
|
|
97056
|
+
"type": "string",
|
|
97057
|
+
"const": "allow-always"
|
|
97058
|
+
}
|
|
97059
|
+
]
|
|
97060
|
+
},
|
|
97061
|
+
"minItems": 1,
|
|
97062
|
+
"maxItems": 2,
|
|
97063
|
+
"uniqueItems": true
|
|
97064
|
+
}
|
|
97065
|
+
},
|
|
97066
|
+
"additionalProperties": false
|
|
95268
97067
|
}
|
|
95269
97068
|
},
|
|
95270
97069
|
"additionalProperties": false
|
|
@@ -95948,6 +97747,39 @@
|
|
|
95948
97747
|
"const": "deny"
|
|
95949
97748
|
},
|
|
95950
97749
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
97750
|
+
},
|
|
97751
|
+
"externalResolution": {
|
|
97752
|
+
"type": "object",
|
|
97753
|
+
"required": [
|
|
97754
|
+
"label",
|
|
97755
|
+
"decisions"
|
|
97756
|
+
],
|
|
97757
|
+
"properties": {
|
|
97758
|
+
"label": {
|
|
97759
|
+
"type": "string",
|
|
97760
|
+
"minLength": 1,
|
|
97761
|
+
"maxLength": 80
|
|
97762
|
+
},
|
|
97763
|
+
"decisions": {
|
|
97764
|
+
"type": "array",
|
|
97765
|
+
"items": {
|
|
97766
|
+
"anyOf": [
|
|
97767
|
+
{
|
|
97768
|
+
"type": "string",
|
|
97769
|
+
"const": "allow-once"
|
|
97770
|
+
},
|
|
97771
|
+
{
|
|
97772
|
+
"type": "string",
|
|
97773
|
+
"const": "allow-always"
|
|
97774
|
+
}
|
|
97775
|
+
]
|
|
97776
|
+
},
|
|
97777
|
+
"minItems": 1,
|
|
97778
|
+
"maxItems": 2,
|
|
97779
|
+
"uniqueItems": true
|
|
97780
|
+
}
|
|
97781
|
+
},
|
|
97782
|
+
"additionalProperties": false
|
|
95951
97783
|
}
|
|
95952
97784
|
},
|
|
95953
97785
|
"additionalProperties": false
|
|
@@ -96576,6 +98408,39 @@
|
|
|
96576
98408
|
"const": "deny"
|
|
96577
98409
|
},
|
|
96578
98410
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
98411
|
+
},
|
|
98412
|
+
"externalResolution": {
|
|
98413
|
+
"type": "object",
|
|
98414
|
+
"required": [
|
|
98415
|
+
"label",
|
|
98416
|
+
"decisions"
|
|
98417
|
+
],
|
|
98418
|
+
"properties": {
|
|
98419
|
+
"label": {
|
|
98420
|
+
"type": "string",
|
|
98421
|
+
"minLength": 1,
|
|
98422
|
+
"maxLength": 80
|
|
98423
|
+
},
|
|
98424
|
+
"decisions": {
|
|
98425
|
+
"type": "array",
|
|
98426
|
+
"items": {
|
|
98427
|
+
"anyOf": [
|
|
98428
|
+
{
|
|
98429
|
+
"type": "string",
|
|
98430
|
+
"const": "allow-once"
|
|
98431
|
+
},
|
|
98432
|
+
{
|
|
98433
|
+
"type": "string",
|
|
98434
|
+
"const": "allow-always"
|
|
98435
|
+
}
|
|
98436
|
+
]
|
|
98437
|
+
},
|
|
98438
|
+
"minItems": 1,
|
|
98439
|
+
"maxItems": 2,
|
|
98440
|
+
"uniqueItems": true
|
|
98441
|
+
}
|
|
98442
|
+
},
|
|
98443
|
+
"additionalProperties": false
|
|
96579
98444
|
}
|
|
96580
98445
|
},
|
|
96581
98446
|
"additionalProperties": false
|
|
@@ -97240,6 +99105,39 @@
|
|
|
97240
99105
|
"const": "deny"
|
|
97241
99106
|
},
|
|
97242
99107
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
99108
|
+
},
|
|
99109
|
+
"externalResolution": {
|
|
99110
|
+
"type": "object",
|
|
99111
|
+
"required": [
|
|
99112
|
+
"label",
|
|
99113
|
+
"decisions"
|
|
99114
|
+
],
|
|
99115
|
+
"properties": {
|
|
99116
|
+
"label": {
|
|
99117
|
+
"type": "string",
|
|
99118
|
+
"minLength": 1,
|
|
99119
|
+
"maxLength": 80
|
|
99120
|
+
},
|
|
99121
|
+
"decisions": {
|
|
99122
|
+
"type": "array",
|
|
99123
|
+
"items": {
|
|
99124
|
+
"anyOf": [
|
|
99125
|
+
{
|
|
99126
|
+
"type": "string",
|
|
99127
|
+
"const": "allow-once"
|
|
99128
|
+
},
|
|
99129
|
+
{
|
|
99130
|
+
"type": "string",
|
|
99131
|
+
"const": "allow-always"
|
|
99132
|
+
}
|
|
99133
|
+
]
|
|
99134
|
+
},
|
|
99135
|
+
"minItems": 1,
|
|
99136
|
+
"maxItems": 2,
|
|
99137
|
+
"uniqueItems": true
|
|
99138
|
+
}
|
|
99139
|
+
},
|
|
99140
|
+
"additionalProperties": false
|
|
97243
99141
|
}
|
|
97244
99142
|
},
|
|
97245
99143
|
"additionalProperties": false
|
|
@@ -97907,6 +99805,39 @@
|
|
|
97907
99805
|
"const": "deny"
|
|
97908
99806
|
},
|
|
97909
99807
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
99808
|
+
},
|
|
99809
|
+
"externalResolution": {
|
|
99810
|
+
"type": "object",
|
|
99811
|
+
"required": [
|
|
99812
|
+
"label",
|
|
99813
|
+
"decisions"
|
|
99814
|
+
],
|
|
99815
|
+
"properties": {
|
|
99816
|
+
"label": {
|
|
99817
|
+
"type": "string",
|
|
99818
|
+
"minLength": 1,
|
|
99819
|
+
"maxLength": 80
|
|
99820
|
+
},
|
|
99821
|
+
"decisions": {
|
|
99822
|
+
"type": "array",
|
|
99823
|
+
"items": {
|
|
99824
|
+
"anyOf": [
|
|
99825
|
+
{
|
|
99826
|
+
"type": "string",
|
|
99827
|
+
"const": "allow-once"
|
|
99828
|
+
},
|
|
99829
|
+
{
|
|
99830
|
+
"type": "string",
|
|
99831
|
+
"const": "allow-always"
|
|
99832
|
+
}
|
|
99833
|
+
]
|
|
99834
|
+
},
|
|
99835
|
+
"minItems": 1,
|
|
99836
|
+
"maxItems": 2,
|
|
99837
|
+
"uniqueItems": true
|
|
99838
|
+
}
|
|
99839
|
+
},
|
|
99840
|
+
"additionalProperties": false
|
|
97910
99841
|
}
|
|
97911
99842
|
},
|
|
97912
99843
|
"additionalProperties": false
|
|
@@ -98558,6 +100489,39 @@
|
|
|
98558
100489
|
"const": "deny"
|
|
98559
100490
|
},
|
|
98560
100491
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
100492
|
+
},
|
|
100493
|
+
"externalResolution": {
|
|
100494
|
+
"type": "object",
|
|
100495
|
+
"required": [
|
|
100496
|
+
"label",
|
|
100497
|
+
"decisions"
|
|
100498
|
+
],
|
|
100499
|
+
"properties": {
|
|
100500
|
+
"label": {
|
|
100501
|
+
"type": "string",
|
|
100502
|
+
"minLength": 1,
|
|
100503
|
+
"maxLength": 80
|
|
100504
|
+
},
|
|
100505
|
+
"decisions": {
|
|
100506
|
+
"type": "array",
|
|
100507
|
+
"items": {
|
|
100508
|
+
"anyOf": [
|
|
100509
|
+
{
|
|
100510
|
+
"type": "string",
|
|
100511
|
+
"const": "allow-once"
|
|
100512
|
+
},
|
|
100513
|
+
{
|
|
100514
|
+
"type": "string",
|
|
100515
|
+
"const": "allow-always"
|
|
100516
|
+
}
|
|
100517
|
+
]
|
|
100518
|
+
},
|
|
100519
|
+
"minItems": 1,
|
|
100520
|
+
"maxItems": 2,
|
|
100521
|
+
"uniqueItems": true
|
|
100522
|
+
}
|
|
100523
|
+
},
|
|
100524
|
+
"additionalProperties": false
|
|
98561
100525
|
}
|
|
98562
100526
|
},
|
|
98563
100527
|
"additionalProperties": false
|
|
@@ -99244,6 +101208,39 @@
|
|
|
99244
101208
|
"const": "deny"
|
|
99245
101209
|
},
|
|
99246
101210
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
101211
|
+
},
|
|
101212
|
+
"externalResolution": {
|
|
101213
|
+
"type": "object",
|
|
101214
|
+
"required": [
|
|
101215
|
+
"label",
|
|
101216
|
+
"decisions"
|
|
101217
|
+
],
|
|
101218
|
+
"properties": {
|
|
101219
|
+
"label": {
|
|
101220
|
+
"type": "string",
|
|
101221
|
+
"minLength": 1,
|
|
101222
|
+
"maxLength": 80
|
|
101223
|
+
},
|
|
101224
|
+
"decisions": {
|
|
101225
|
+
"type": "array",
|
|
101226
|
+
"items": {
|
|
101227
|
+
"anyOf": [
|
|
101228
|
+
{
|
|
101229
|
+
"type": "string",
|
|
101230
|
+
"const": "allow-once"
|
|
101231
|
+
},
|
|
101232
|
+
{
|
|
101233
|
+
"type": "string",
|
|
101234
|
+
"const": "allow-always"
|
|
101235
|
+
}
|
|
101236
|
+
]
|
|
101237
|
+
},
|
|
101238
|
+
"minItems": 1,
|
|
101239
|
+
"maxItems": 2,
|
|
101240
|
+
"uniqueItems": true
|
|
101241
|
+
}
|
|
101242
|
+
},
|
|
101243
|
+
"additionalProperties": false
|
|
99247
101244
|
}
|
|
99248
101245
|
},
|
|
99249
101246
|
"additionalProperties": false
|
|
@@ -99872,6 +101869,39 @@
|
|
|
99872
101869
|
"const": "deny"
|
|
99873
101870
|
},
|
|
99874
101871
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
101872
|
+
},
|
|
101873
|
+
"externalResolution": {
|
|
101874
|
+
"type": "object",
|
|
101875
|
+
"required": [
|
|
101876
|
+
"label",
|
|
101877
|
+
"decisions"
|
|
101878
|
+
],
|
|
101879
|
+
"properties": {
|
|
101880
|
+
"label": {
|
|
101881
|
+
"type": "string",
|
|
101882
|
+
"minLength": 1,
|
|
101883
|
+
"maxLength": 80
|
|
101884
|
+
},
|
|
101885
|
+
"decisions": {
|
|
101886
|
+
"type": "array",
|
|
101887
|
+
"items": {
|
|
101888
|
+
"anyOf": [
|
|
101889
|
+
{
|
|
101890
|
+
"type": "string",
|
|
101891
|
+
"const": "allow-once"
|
|
101892
|
+
},
|
|
101893
|
+
{
|
|
101894
|
+
"type": "string",
|
|
101895
|
+
"const": "allow-always"
|
|
101896
|
+
}
|
|
101897
|
+
]
|
|
101898
|
+
},
|
|
101899
|
+
"minItems": 1,
|
|
101900
|
+
"maxItems": 2,
|
|
101901
|
+
"uniqueItems": true
|
|
101902
|
+
}
|
|
101903
|
+
},
|
|
101904
|
+
"additionalProperties": false
|
|
99875
101905
|
}
|
|
99876
101906
|
},
|
|
99877
101907
|
"additionalProperties": false
|
|
@@ -100536,6 +102566,39 @@
|
|
|
100536
102566
|
"const": "deny"
|
|
100537
102567
|
},
|
|
100538
102568
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
102569
|
+
},
|
|
102570
|
+
"externalResolution": {
|
|
102571
|
+
"type": "object",
|
|
102572
|
+
"required": [
|
|
102573
|
+
"label",
|
|
102574
|
+
"decisions"
|
|
102575
|
+
],
|
|
102576
|
+
"properties": {
|
|
102577
|
+
"label": {
|
|
102578
|
+
"type": "string",
|
|
102579
|
+
"minLength": 1,
|
|
102580
|
+
"maxLength": 80
|
|
102581
|
+
},
|
|
102582
|
+
"decisions": {
|
|
102583
|
+
"type": "array",
|
|
102584
|
+
"items": {
|
|
102585
|
+
"anyOf": [
|
|
102586
|
+
{
|
|
102587
|
+
"type": "string",
|
|
102588
|
+
"const": "allow-once"
|
|
102589
|
+
},
|
|
102590
|
+
{
|
|
102591
|
+
"type": "string",
|
|
102592
|
+
"const": "allow-always"
|
|
102593
|
+
}
|
|
102594
|
+
]
|
|
102595
|
+
},
|
|
102596
|
+
"minItems": 1,
|
|
102597
|
+
"maxItems": 2,
|
|
102598
|
+
"uniqueItems": true
|
|
102599
|
+
}
|
|
102600
|
+
},
|
|
102601
|
+
"additionalProperties": false
|
|
100539
102602
|
}
|
|
100540
102603
|
},
|
|
100541
102604
|
"additionalProperties": false
|
|
@@ -101203,6 +103266,39 @@
|
|
|
101203
103266
|
"const": "deny"
|
|
101204
103267
|
},
|
|
101205
103268
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
103269
|
+
},
|
|
103270
|
+
"externalResolution": {
|
|
103271
|
+
"type": "object",
|
|
103272
|
+
"required": [
|
|
103273
|
+
"label",
|
|
103274
|
+
"decisions"
|
|
103275
|
+
],
|
|
103276
|
+
"properties": {
|
|
103277
|
+
"label": {
|
|
103278
|
+
"type": "string",
|
|
103279
|
+
"minLength": 1,
|
|
103280
|
+
"maxLength": 80
|
|
103281
|
+
},
|
|
103282
|
+
"decisions": {
|
|
103283
|
+
"type": "array",
|
|
103284
|
+
"items": {
|
|
103285
|
+
"anyOf": [
|
|
103286
|
+
{
|
|
103287
|
+
"type": "string",
|
|
103288
|
+
"const": "allow-once"
|
|
103289
|
+
},
|
|
103290
|
+
{
|
|
103291
|
+
"type": "string",
|
|
103292
|
+
"const": "allow-always"
|
|
103293
|
+
}
|
|
103294
|
+
]
|
|
103295
|
+
},
|
|
103296
|
+
"minItems": 1,
|
|
103297
|
+
"maxItems": 2,
|
|
103298
|
+
"uniqueItems": true
|
|
103299
|
+
}
|
|
103300
|
+
},
|
|
103301
|
+
"additionalProperties": false
|
|
101206
103302
|
}
|
|
101207
103303
|
},
|
|
101208
103304
|
"additionalProperties": false
|
|
@@ -101854,6 +103950,39 @@
|
|
|
101854
103950
|
"const": "deny"
|
|
101855
103951
|
},
|
|
101856
103952
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
103953
|
+
},
|
|
103954
|
+
"externalResolution": {
|
|
103955
|
+
"type": "object",
|
|
103956
|
+
"required": [
|
|
103957
|
+
"label",
|
|
103958
|
+
"decisions"
|
|
103959
|
+
],
|
|
103960
|
+
"properties": {
|
|
103961
|
+
"label": {
|
|
103962
|
+
"type": "string",
|
|
103963
|
+
"minLength": 1,
|
|
103964
|
+
"maxLength": 80
|
|
103965
|
+
},
|
|
103966
|
+
"decisions": {
|
|
103967
|
+
"type": "array",
|
|
103968
|
+
"items": {
|
|
103969
|
+
"anyOf": [
|
|
103970
|
+
{
|
|
103971
|
+
"type": "string",
|
|
103972
|
+
"const": "allow-once"
|
|
103973
|
+
},
|
|
103974
|
+
{
|
|
103975
|
+
"type": "string",
|
|
103976
|
+
"const": "allow-always"
|
|
103977
|
+
}
|
|
103978
|
+
]
|
|
103979
|
+
},
|
|
103980
|
+
"minItems": 1,
|
|
103981
|
+
"maxItems": 2,
|
|
103982
|
+
"uniqueItems": true
|
|
103983
|
+
}
|
|
103984
|
+
},
|
|
103985
|
+
"additionalProperties": false
|
|
101857
103986
|
}
|
|
101858
103987
|
},
|
|
101859
103988
|
"additionalProperties": false
|
|
@@ -102535,6 +104664,39 @@
|
|
|
102535
104664
|
"const": "deny"
|
|
102536
104665
|
},
|
|
102537
104666
|
"description": "Available reviewer decisions. Deny is always available so malformed or unsafe input can fail closed."
|
|
104667
|
+
},
|
|
104668
|
+
"externalResolution": {
|
|
104669
|
+
"type": "object",
|
|
104670
|
+
"required": [
|
|
104671
|
+
"label",
|
|
104672
|
+
"decisions"
|
|
104673
|
+
],
|
|
104674
|
+
"properties": {
|
|
104675
|
+
"label": {
|
|
104676
|
+
"type": "string",
|
|
104677
|
+
"minLength": 1,
|
|
104678
|
+
"maxLength": 80
|
|
104679
|
+
},
|
|
104680
|
+
"decisions": {
|
|
104681
|
+
"type": "array",
|
|
104682
|
+
"items": {
|
|
104683
|
+
"anyOf": [
|
|
104684
|
+
{
|
|
104685
|
+
"type": "string",
|
|
104686
|
+
"const": "allow-once"
|
|
104687
|
+
},
|
|
104688
|
+
{
|
|
104689
|
+
"type": "string",
|
|
104690
|
+
"const": "allow-always"
|
|
104691
|
+
}
|
|
104692
|
+
]
|
|
104693
|
+
},
|
|
104694
|
+
"minItems": 1,
|
|
104695
|
+
"maxItems": 2,
|
|
104696
|
+
"uniqueItems": true
|
|
104697
|
+
}
|
|
104698
|
+
},
|
|
104699
|
+
"additionalProperties": false
|
|
102538
104700
|
}
|
|
102539
104701
|
},
|
|
102540
104702
|
"additionalProperties": false
|
|
@@ -109370,6 +111532,17 @@
|
|
|
109370
111532
|
"type": "integer",
|
|
109371
111533
|
"minimum": 1
|
|
109372
111534
|
},
|
|
111535
|
+
"inputRunIds": {
|
|
111536
|
+
"type": "array",
|
|
111537
|
+
"items": {
|
|
111538
|
+
"type": "string",
|
|
111539
|
+
"minLength": 1,
|
|
111540
|
+
"maxLength": 256
|
|
111541
|
+
},
|
|
111542
|
+
"minItems": 1,
|
|
111543
|
+
"maxItems": 50,
|
|
111544
|
+
"uniqueItems": true
|
|
111545
|
+
},
|
|
109373
111546
|
"messageId": {
|
|
109374
111547
|
"type": "string",
|
|
109375
111548
|
"minLength": 1
|
|
@@ -109464,6 +111637,80 @@
|
|
|
109464
111637
|
}
|
|
109465
111638
|
},
|
|
109466
111639
|
"additionalProperties": false
|
|
111640
|
+
},
|
|
111641
|
+
"inputReceipts": {
|
|
111642
|
+
"type": "array",
|
|
111643
|
+
"items": {
|
|
111644
|
+
"anyOf": [
|
|
111645
|
+
{
|
|
111646
|
+
"type": "object",
|
|
111647
|
+
"required": [
|
|
111648
|
+
"runId",
|
|
111649
|
+
"state"
|
|
111650
|
+
],
|
|
111651
|
+
"properties": {
|
|
111652
|
+
"runId": {
|
|
111653
|
+
"type": "string",
|
|
111654
|
+
"minLength": 1,
|
|
111655
|
+
"maxLength": 256
|
|
111656
|
+
},
|
|
111657
|
+
"state": {
|
|
111658
|
+
"type": "string",
|
|
111659
|
+
"const": "pending"
|
|
111660
|
+
}
|
|
111661
|
+
},
|
|
111662
|
+
"additionalProperties": false
|
|
111663
|
+
},
|
|
111664
|
+
{
|
|
111665
|
+
"type": "object",
|
|
111666
|
+
"required": [
|
|
111667
|
+
"runId",
|
|
111668
|
+
"state",
|
|
111669
|
+
"consumedByEventId"
|
|
111670
|
+
],
|
|
111671
|
+
"properties": {
|
|
111672
|
+
"runId": {
|
|
111673
|
+
"type": "string",
|
|
111674
|
+
"minLength": 1,
|
|
111675
|
+
"maxLength": 256
|
|
111676
|
+
},
|
|
111677
|
+
"state": {
|
|
111678
|
+
"type": "string",
|
|
111679
|
+
"const": "consumed"
|
|
111680
|
+
},
|
|
111681
|
+
"consumedByEventId": {
|
|
111682
|
+
"type": "string",
|
|
111683
|
+
"minLength": 1
|
|
111684
|
+
}
|
|
111685
|
+
},
|
|
111686
|
+
"additionalProperties": false
|
|
111687
|
+
}
|
|
111688
|
+
]
|
|
111689
|
+
},
|
|
111690
|
+
"maxItems": 50
|
|
111691
|
+
},
|
|
111692
|
+
"inputConsumptions": {
|
|
111693
|
+
"type": "array",
|
|
111694
|
+
"items": {
|
|
111695
|
+
"type": "object",
|
|
111696
|
+
"required": [
|
|
111697
|
+
"runId",
|
|
111698
|
+
"consumedByEventId"
|
|
111699
|
+
],
|
|
111700
|
+
"properties": {
|
|
111701
|
+
"runId": {
|
|
111702
|
+
"type": "string",
|
|
111703
|
+
"minLength": 1,
|
|
111704
|
+
"maxLength": 256
|
|
111705
|
+
},
|
|
111706
|
+
"consumedByEventId": {
|
|
111707
|
+
"type": "string",
|
|
111708
|
+
"minLength": 1
|
|
111709
|
+
}
|
|
111710
|
+
},
|
|
111711
|
+
"additionalProperties": false
|
|
111712
|
+
},
|
|
111713
|
+
"maxItems": 50
|
|
109467
111714
|
}
|
|
109468
111715
|
},
|
|
109469
111716
|
"additionalProperties": false
|
|
@@ -109561,6 +111808,80 @@
|
|
|
109561
111808
|
}
|
|
109562
111809
|
},
|
|
109563
111810
|
"additionalProperties": false
|
|
111811
|
+
},
|
|
111812
|
+
"inputReceipts": {
|
|
111813
|
+
"type": "array",
|
|
111814
|
+
"items": {
|
|
111815
|
+
"anyOf": [
|
|
111816
|
+
{
|
|
111817
|
+
"type": "object",
|
|
111818
|
+
"required": [
|
|
111819
|
+
"runId",
|
|
111820
|
+
"state"
|
|
111821
|
+
],
|
|
111822
|
+
"properties": {
|
|
111823
|
+
"runId": {
|
|
111824
|
+
"type": "string",
|
|
111825
|
+
"minLength": 1,
|
|
111826
|
+
"maxLength": 256
|
|
111827
|
+
},
|
|
111828
|
+
"state": {
|
|
111829
|
+
"type": "string",
|
|
111830
|
+
"const": "pending"
|
|
111831
|
+
}
|
|
111832
|
+
},
|
|
111833
|
+
"additionalProperties": false
|
|
111834
|
+
},
|
|
111835
|
+
{
|
|
111836
|
+
"type": "object",
|
|
111837
|
+
"required": [
|
|
111838
|
+
"runId",
|
|
111839
|
+
"state",
|
|
111840
|
+
"consumedByEventId"
|
|
111841
|
+
],
|
|
111842
|
+
"properties": {
|
|
111843
|
+
"runId": {
|
|
111844
|
+
"type": "string",
|
|
111845
|
+
"minLength": 1,
|
|
111846
|
+
"maxLength": 256
|
|
111847
|
+
},
|
|
111848
|
+
"state": {
|
|
111849
|
+
"type": "string",
|
|
111850
|
+
"const": "consumed"
|
|
111851
|
+
},
|
|
111852
|
+
"consumedByEventId": {
|
|
111853
|
+
"type": "string",
|
|
111854
|
+
"minLength": 1
|
|
111855
|
+
}
|
|
111856
|
+
},
|
|
111857
|
+
"additionalProperties": false
|
|
111858
|
+
}
|
|
111859
|
+
]
|
|
111860
|
+
},
|
|
111861
|
+
"maxItems": 50
|
|
111862
|
+
},
|
|
111863
|
+
"inputConsumptions": {
|
|
111864
|
+
"type": "array",
|
|
111865
|
+
"items": {
|
|
111866
|
+
"type": "object",
|
|
111867
|
+
"required": [
|
|
111868
|
+
"runId",
|
|
111869
|
+
"consumedByEventId"
|
|
111870
|
+
],
|
|
111871
|
+
"properties": {
|
|
111872
|
+
"runId": {
|
|
111873
|
+
"type": "string",
|
|
111874
|
+
"minLength": 1,
|
|
111875
|
+
"maxLength": 256
|
|
111876
|
+
},
|
|
111877
|
+
"consumedByEventId": {
|
|
111878
|
+
"type": "string",
|
|
111879
|
+
"minLength": 1
|
|
111880
|
+
}
|
|
111881
|
+
},
|
|
111882
|
+
"additionalProperties": false
|
|
111883
|
+
},
|
|
111884
|
+
"maxItems": 50
|
|
109564
111885
|
}
|
|
109565
111886
|
},
|
|
109566
111887
|
"additionalProperties": false
|
|
@@ -109905,6 +112226,77 @@
|
|
|
109905
112226
|
"type": "string",
|
|
109906
112227
|
"minLength": 1
|
|
109907
112228
|
},
|
|
112229
|
+
"expectedPermissionMode": {
|
|
112230
|
+
"anyOf": [
|
|
112231
|
+
{
|
|
112232
|
+
"anyOf": [
|
|
112233
|
+
{
|
|
112234
|
+
"type": "string",
|
|
112235
|
+
"const": "read-only"
|
|
112236
|
+
},
|
|
112237
|
+
{
|
|
112238
|
+
"type": "string",
|
|
112239
|
+
"const": "guarded"
|
|
112240
|
+
},
|
|
112241
|
+
{
|
|
112242
|
+
"type": "string",
|
|
112243
|
+
"const": "workspace"
|
|
112244
|
+
},
|
|
112245
|
+
{
|
|
112246
|
+
"type": "string",
|
|
112247
|
+
"const": "full"
|
|
112248
|
+
}
|
|
112249
|
+
]
|
|
112250
|
+
},
|
|
112251
|
+
{
|
|
112252
|
+
"type": "null"
|
|
112253
|
+
}
|
|
112254
|
+
]
|
|
112255
|
+
},
|
|
112256
|
+
"expectedToolOverrides": {
|
|
112257
|
+
"anyOf": [
|
|
112258
|
+
{
|
|
112259
|
+
"type": "object",
|
|
112260
|
+
"properties": {
|
|
112261
|
+
"mcpServers": {
|
|
112262
|
+
"type": "object",
|
|
112263
|
+
"patternProperties": {
|
|
112264
|
+
"^.*$": {
|
|
112265
|
+
"type": "boolean"
|
|
112266
|
+
}
|
|
112267
|
+
}
|
|
112268
|
+
},
|
|
112269
|
+
"mcpToolsDeny": {
|
|
112270
|
+
"type": "object",
|
|
112271
|
+
"patternProperties": {
|
|
112272
|
+
"^.*$": {
|
|
112273
|
+
"type": "array",
|
|
112274
|
+
"items": {
|
|
112275
|
+
"type": "string",
|
|
112276
|
+
"minLength": 1
|
|
112277
|
+
}
|
|
112278
|
+
}
|
|
112279
|
+
}
|
|
112280
|
+
},
|
|
112281
|
+
"skills": {
|
|
112282
|
+
"type": "object",
|
|
112283
|
+
"patternProperties": {
|
|
112284
|
+
"^.*$": {
|
|
112285
|
+
"type": "boolean"
|
|
112286
|
+
}
|
|
112287
|
+
}
|
|
112288
|
+
},
|
|
112289
|
+
"webSearch": {
|
|
112290
|
+
"type": "boolean"
|
|
112291
|
+
}
|
|
112292
|
+
},
|
|
112293
|
+
"additionalProperties": false
|
|
112294
|
+
},
|
|
112295
|
+
{
|
|
112296
|
+
"type": "null"
|
|
112297
|
+
}
|
|
112298
|
+
]
|
|
112299
|
+
},
|
|
109908
112300
|
"idempotencyKey": {
|
|
109909
112301
|
"type": "string",
|
|
109910
112302
|
"minLength": 1
|