You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codex-rs/core/config.schema.json
+71Lines changed: 71 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2708,6 +2708,68 @@
2708
2708
}
2709
2709
]
2710
2710
},
2711
+
"RequirementsExecPolicyDecisionToml": {
2712
+
"enum": [
2713
+
"allow",
2714
+
"prompt",
2715
+
"forbidden"
2716
+
],
2717
+
"type": "string"
2718
+
},
2719
+
"RequirementsExecPolicyPatternTokenToml": {
2720
+
"description": "TOML-friendly representation of a pattern token.\n\nStarlark supports either a string token or a list of alternative tokens at each position, but TOML arrays cannot mix strings and arrays. Using an array of tables sidesteps that restriction.",
2721
+
"properties": {
2722
+
"any_of": {
2723
+
"items": {
2724
+
"type": "string"
2725
+
},
2726
+
"type": "array"
2727
+
},
2728
+
"token": {
2729
+
"type": "string"
2730
+
}
2731
+
},
2732
+
"type": "object"
2733
+
},
2734
+
"RequirementsExecPolicyPrefixRuleToml": {
2735
+
"description": "A TOML representation of the `prefix_rule(...)` Starlark builtin.\n\nThis mirrors the builtin defined in `execpolicy/src/parser.rs`.",
0 commit comments