{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "plugins": { "description": "APISIX plugins to be enabled", "type": "array", "items": { "type": "string" }, "minItems": 0, "uniqueItems": true }, "stream_plugins": { "description": "APISIX stream_plugins to be enabled", "type": "array", "items": { "type": "string" }, "minItems": 0, "uniqueItems": true }, "customPlugins": { "description": "customPlugins allows you to mount your own HTTP plugins", "type": "object", "properties": { "enabled": { "type": "boolean" }, "luaPath": { "type": "string" }, "plugins": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "minLength": 1 }, "attrs": { "type": "object" }, "configMap": { "type": "object", "properties": { "name": { "type": "string", "minLength": 1 }, "mounts": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "minLength": 1 }, "path": { "type": "string", "minLength": 1 } }, "required": [ "key", "path" ] } } }, "required": [ "name", "mounts" ] } }, "required": [ "name", "configMap" ] } } }, "required": [ "enabled", "luaPath", "plugins" ] } } }