mirror of
https://github.com/openai/codex.git
synced 2026-05-03 02:46:39 +00:00
35 lines
561 B
JSON
Generated
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"
|
|
} |