{ "$schema": "http://json-schema.org/draft-07/schema#", "oneOf": [ { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "key": { "type": "string" }, "pluginId": { "type": "string" }, "source": { "enum": [ "plugin" ], "type": "string" } }, "required": [ "enabled", "key", "pluginId", "source" ], "type": "object" }, { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "key": { "type": "string" }, "source": { "enum": [ "user" ], "type": "string" }, "sourcePath": { "type": "string" } }, "required": [ "enabled", "key", "source", "sourcePath" ], "type": "object" }, { "additionalProperties": false, "properties": { "enabled": { "type": "boolean" }, "key": { "type": "string" }, "source": { "enum": [ "project" ], "type": "string" }, "sourcePath": { "type": "string" } }, "required": [ "enabled", "key", "source", "sourcePath" ], "type": "object" } ], "title": "HooksConfigWriteParams" }