Files
codex/codex-rs/app-server-protocol/schema/json/v2/HooksConfigWriteParams.json
2026-04-26 14:48:00 -07:00

35 lines
561 B
JSON
Generated

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"HookConfigSource": {
"enum": [
"plugin"
],
"type": "string"
}
},
"properties": {
"enabled": {
"type": "boolean"
},
"key": {
"type": "string"
},
"pluginId": {
"type": [
"string",
"null"
]
},
"source": {
"$ref": "#/definitions/HookConfigSource"
}
},
"required": [
"enabled",
"key",
"source"
],
"title": "HooksConfigWriteParams",
"type": "object"
}