fix(falco): allow plugin init_config map in json schema

Signed-off-by: Luca Guerra <luca@guerra.sh>
This commit is contained in:
Luca Guerra 2024-09-19 14:40:20 +00:00 committed by poiana
parent 78f56190b4
commit 1a4a29348f

View File

@ -587,7 +587,14 @@ const char config_schema_string[] = LONG_STRING_CONST(
"type": "string"
},
"init_config": {
"type": "string"
"anyOf": [
{
"type": "object"
},
{
"type": "string"
}
]
},
"open_params": {
"type": "string"