{ "$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" }